diff --git a/Content.Client/Administration/Managers/ClientAdminManager.cs b/Content.Client/Administration/Managers/ClientAdminManager.cs index 0f740c8104..3f072691de 100644 --- a/Content.Client/Administration/Managers/ClientAdminManager.cs +++ b/Content.Client/Administration/Managers/ClientAdminManager.cs @@ -15,6 +15,7 @@ namespace Content.Client.Administration.Managers [Dependency] private readonly IPlayerManager _player = default!; [Dependency] private readonly IClientNetManager _netMgr = default!; [Dependency] private readonly IClientConGroupController _conGroup = default!; + [Dependency] private readonly IClientConsoleHost _host = default!; [Dependency] private readonly IResourceManager _res = default!; [Dependency] private readonly ILogManager _logManager = default!; [Dependency] private readonly IUserInterfaceManager _userInterface = default!; @@ -86,12 +87,12 @@ namespace Content.Client.Administration.Managers private void UpdateMessageRx(MsgUpdateAdminStatus message) { _availableCommands.Clear(); - var host = IoCManager.Resolve(); // Anything marked as Any we'll just add even if the server doesn't know about it. - foreach (var (command, instance) in host.AvailableCommands) + foreach (var (command, instance) in _host.AvailableCommands) { - if (Attribute.GetCustomAttribute(instance.GetType(), typeof(AnyCommandAttribute)) == null) continue; + if (Attribute.GetCustomAttribute(instance.GetType(), typeof(AnyCommandAttribute)) == null) + continue; _availableCommands.Add(command); } diff --git a/Content.Client/Administration/Systems/AdminFrozenSystem.cs b/Content.Client/Administration/Systems/AdminFrozenSystem.cs deleted file mode 100644 index 885585f985..0000000000 --- a/Content.Client/Administration/Systems/AdminFrozenSystem.cs +++ /dev/null @@ -1,7 +0,0 @@ -using Content.Shared.Administration; - -namespace Content.Client.Administration.Systems; - -public sealed class AdminFrozenSystem : SharedAdminFrozenSystem -{ -} diff --git a/Content.Client/Administration/UI/Tabs/ObjectsTab/ObjectsTab.xaml.cs b/Content.Client/Administration/UI/Tabs/ObjectsTab/ObjectsTab.xaml.cs index de9ccbbf50..fa92a3e18f 100644 --- a/Content.Client/Administration/UI/Tabs/ObjectsTab/ObjectsTab.xaml.cs +++ b/Content.Client/Administration/UI/Tabs/ObjectsTab/ObjectsTab.xaml.cs @@ -57,12 +57,43 @@ public sealed partial class ObjectsTab : Control private void TeleportTo(NetEntity nent) { - _console.ExecuteCommand($"tpto {nent}"); + var selection = _selections[ObjectTypeOptions.SelectedId]; + switch (selection) + { + case ObjectsTabSelection.Grids: + { + // directly teleport to the entity + _console.ExecuteCommand($"tpto {nent}"); + } + break; + case ObjectsTabSelection.Maps: + { + // teleport to the map, not to the map entity (which is in nullspace) + if (!_entityManager.TryGetEntity(nent, out var map) || !_entityManager.TryGetComponent(map, out var mapComp)) + break; + _console.ExecuteCommand($"tp 0 0 {mapComp.MapId}"); + break; + } + case ObjectsTabSelection.Stations: + { + // teleport to the station's largest grid, not to the station entity (which is in nullspace) + if (!_entityManager.TryGetEntity(nent, out var station)) + break; + var largestGrid = _entityManager.EntitySysManager.GetEntitySystem().GetLargestGrid(station.Value); + if (largestGrid == null) + break; + _console.ExecuteCommand($"tpto {largestGrid.Value}"); + break; + } + default: + throw new NotImplementedException(); + } } private void Delete(NetEntity nent) { _console.ExecuteCommand($"delete {nent}"); + RefreshObjectList(); } public void RefreshObjectList() @@ -79,25 +110,21 @@ public sealed partial class ObjectsTab : Control entities.AddRange(_entityManager.EntitySysManager.GetEntitySystem().GetStationNames()); break; case ObjectsTabSelection.Grids: - { - var query = _entityManager.AllEntityQueryEnumerator(); - while (query.MoveNext(out var uid, out _, out var metadata)) { - entities.Add((metadata.EntityName, _entityManager.GetNetEntity(uid))); - } + var query = _entityManager.AllEntityQueryEnumerator(); + while (query.MoveNext(out var uid, out _, out var metadata)) + entities.Add((metadata.EntityName, _entityManager.GetNetEntity(uid))); - break; - } + break; + } case ObjectsTabSelection.Maps: - { - var query = _entityManager.AllEntityQueryEnumerator(); - while (query.MoveNext(out var uid, out _, out var metadata)) { - entities.Add((metadata.EntityName, _entityManager.GetNetEntity(uid))); - } + var query = _entityManager.AllEntityQueryEnumerator(); + while (query.MoveNext(out var uid, out _, out var metadata)) + entities.Add((metadata.EntityName, _entityManager.GetNetEntity(uid))); - break; - } + break; + } default: throw new ArgumentOutOfRangeException(nameof(selection), selection, null); } diff --git a/Content.Client/Administration/UI/Tabs/ObjectsTab/ObjectsTabEntry.xaml b/Content.Client/Administration/UI/Tabs/ObjectsTab/ObjectsTabEntry.xaml index c561125a30..7c9dde79b5 100644 --- a/Content.Client/Administration/UI/Tabs/ObjectsTab/ObjectsTabEntry.xaml +++ b/Content.Client/Administration/UI/Tabs/ObjectsTab/ObjectsTabEntry.xaml @@ -1,5 +1,6 @@  - diff --git a/Content.Client/Lathe/UI/LatheMenu.xaml.cs b/Content.Client/Lathe/UI/LatheMenu.xaml.cs index 66d875b0f2..ce190464d2 100644 --- a/Content.Client/Lathe/UI/LatheMenu.xaml.cs +++ b/Content.Client/Lathe/UI/LatheMenu.xaml.cs @@ -26,6 +26,10 @@ public sealed partial class LatheMenu : DefaultWindow public event Action? OnServerListButtonPressed; public event Action? RecipeQueueAction; + public event Action? QueueDeleteAction; + public event Action? QueueMoveUpAction; + public event Action? QueueMoveDownAction; + public event Action? DeleteFabricatingAction; public List> Recipes = new(); @@ -50,12 +54,21 @@ public sealed partial class LatheMenu : DefaultWindow }; AmountLineEdit.OnTextChanged += _ => { + if (int.TryParse(AmountLineEdit.Text, out var amount)) + { + if (amount > LatheSystem.MaxItemsPerRequest) + AmountLineEdit.Text = LatheSystem.MaxItemsPerRequest.ToString(); + else if (amount < 0) + AmountLineEdit.Text = "0"; + } + PopulateRecipes(); }; FilterOption.OnItemSelected += OnItemSelected; ServerListButton.OnPressed += a => OnServerListButtonPressed?.Invoke(a); + DeleteFabricating.OnPressed += _ => DeleteFabricatingAction?.Invoke(); } public void SetEntity(EntityUid uid) @@ -223,22 +236,27 @@ public sealed partial class LatheMenu : DefaultWindow /// Populates the build queue list with all queued items /// /// - public void PopulateQueueList(IReadOnlyCollection> queue) + public void PopulateQueueList(IReadOnlyCollection queue) { QueueList.DisposeAllChildren(); var idx = 1; - foreach (var recipeProto in queue) + foreach (var batch in queue) { - var recipe = _prototypeManager.Index(recipeProto); - var queuedRecipeBox = new BoxContainer(); - queuedRecipeBox.Orientation = BoxContainer.LayoutOrientation.Horizontal; + var recipe = _prototypeManager.Index(batch.Recipe); - queuedRecipeBox.AddChild(GetRecipeDisplayControl(recipe)); + var itemName = _lathe.GetRecipeName(batch.Recipe); + string displayText; + if (batch.ItemsRequested > 1) + displayText = Loc.GetString("lathe-menu-item-batch", ("index", idx), ("name", itemName), ("printed", batch.ItemsPrinted), ("total", batch.ItemsRequested)); + else + displayText = Loc.GetString("lathe-menu-item-single", ("index", idx), ("name", itemName)); + + var queuedRecipeBox = new QueuedRecipeControl(displayText, idx - 1, GetRecipeDisplayControl(recipe)); + queuedRecipeBox.OnDeletePressed += s => QueueDeleteAction?.Invoke(s); + queuedRecipeBox.OnMoveUpPressed += s => QueueMoveUpAction?.Invoke(s); + queuedRecipeBox.OnMoveDownPressed += s => QueueMoveDownAction?.Invoke(s); - var queuedRecipeLabel = new Label(); - queuedRecipeLabel.Text = $"{idx}. {_lathe.GetRecipeName(recipe)}"; - queuedRecipeBox.AddChild(queuedRecipeLabel); QueueList.AddChild(queuedRecipeBox); idx++; } diff --git a/Content.Client/Lathe/UI/QueuedRecipeControl.xaml b/Content.Client/Lathe/UI/QueuedRecipeControl.xaml new file mode 100644 index 0000000000..b1d4b496a1 --- /dev/null +++ b/Content.Client/Lathe/UI/QueuedRecipeControl.xaml @@ -0,0 +1,35 @@ + + + + + diff --git a/Content.Client/Lathe/UI/QueuedRecipeControl.xaml.cs b/Content.Client/Lathe/UI/QueuedRecipeControl.xaml.cs new file mode 100644 index 0000000000..c4ba9803b0 --- /dev/null +++ b/Content.Client/Lathe/UI/QueuedRecipeControl.xaml.cs @@ -0,0 +1,36 @@ +using Robust.Client.AutoGenerated; +using Robust.Client.UserInterface; +using Robust.Client.UserInterface.XAML; + +namespace Content.Client.Lathe.UI; + +[GenerateTypedNameReferences] +public sealed partial class QueuedRecipeControl : Control +{ + public Action? OnDeletePressed; + public Action? OnMoveUpPressed; + public Action? OnMoveDownPressed; + + public QueuedRecipeControl(string displayText, int index, Control displayControl) + { + RobustXamlLoader.Load(this); + + RecipeName.Text = displayText; + RecipeDisplayContainer.AddChild(displayControl); + + MoveUp.OnPressed += (_) => + { + OnMoveUpPressed?.Invoke(index); + }; + + MoveDown.OnPressed += (_) => + { + OnMoveDownPressed?.Invoke(index); + }; + + Delete.OnPressed += (_) => + { + OnDeletePressed?.Invoke(index); + }; + } +} diff --git a/Content.Client/Morgue/CrematoriumSystem.cs b/Content.Client/Morgue/CrematoriumSystem.cs new file mode 100644 index 0000000000..66eac263c2 --- /dev/null +++ b/Content.Client/Morgue/CrematoriumSystem.cs @@ -0,0 +1,5 @@ +using Content.Shared.Morgue; + +namespace Content.Client.Morgue; + +public sealed class CrematoriumSystem : SharedCrematoriumSystem; diff --git a/Content.Client/Morgue/MorgueSystem.cs b/Content.Client/Morgue/MorgueSystem.cs new file mode 100644 index 0000000000..b8d2f109fb --- /dev/null +++ b/Content.Client/Morgue/MorgueSystem.cs @@ -0,0 +1,5 @@ +using Content.Shared.Morgue; + +namespace Content.Client.Morgue; + +public sealed class MorgueSystem : SharedMorgueSystem; diff --git a/Content.Client/Movement/Systems/ContentEyeSystem.cs b/Content.Client/Movement/Systems/ContentEyeSystem.cs index 518a4a1bd4..a332d25f9a 100644 --- a/Content.Client/Movement/Systems/ContentEyeSystem.cs +++ b/Content.Client/Movement/Systems/ContentEyeSystem.cs @@ -1,7 +1,6 @@ using System.Numerics; using Content.Shared.Movement.Components; using Content.Shared.Movement.Systems; -using Robust.Client.GameObjects; using Robust.Client.Player; namespace Content.Client.Movement.Systems; @@ -63,4 +62,15 @@ public sealed class ContentEyeSystem : SharedContentEyeSystem UpdateEyeOffset((entity, eyeComponent)); } } + + public override void Update(float frameTime) + { + base.Update(frameTime); + // TODO: Ideally we wouldn't want this to run in both FrameUpdate and Update, but we kind of have to since the visual update happens in FrameUpdate, but interaction update happens in Update. It's a workaround and a better solution should be found. + var eyeEntities = AllEntityQuery(); + while (eyeEntities.MoveNext(out var entity, out ContentEyeComponent? contentComponent, out EyeComponent? eyeComponent)) + { + UpdateEyeOffset((entity, eyeComponent)); + } + } } diff --git a/Content.Client/Movement/Systems/EyeCursorOffsetSystem.cs b/Content.Client/Movement/Systems/EyeCursorOffsetSystem.cs index eb524cf4ee..174ae2dd97 100644 --- a/Content.Client/Movement/Systems/EyeCursorOffsetSystem.cs +++ b/Content.Client/Movement/Systems/EyeCursorOffsetSystem.cs @@ -1,10 +1,10 @@ using System.Numerics; using Content.Client.Movement.Components; +using Content.Client.Viewport; using Content.Shared.Camera; using Robust.Client.Graphics; using Robust.Client.Input; using Robust.Shared.Map; -using Robust.Client.Player; namespace Content.Client.Movement.Systems; @@ -12,13 +12,10 @@ public sealed partial class EyeCursorOffsetSystem : EntitySystem { [Dependency] private readonly IEyeManager _eyeManager = default!; [Dependency] private readonly IInputManager _inputManager = default!; - [Dependency] private readonly IPlayerManager _player = default!; - [Dependency] private readonly SharedTransformSystem _transform = default!; - [Dependency] private readonly IClyde _clyde = default!; // This value is here to make sure the user doesn't have to move their mouse // all the way out to the edge of the screen to get the full offset. - static private float _edgeOffset = 0.9f; + private static float _edgeOffset = 0.8f; public override void Initialize() { @@ -38,25 +35,29 @@ public sealed partial class EyeCursorOffsetSystem : EntitySystem public Vector2? OffsetAfterMouse(EntityUid uid, EyeCursorOffsetComponent? component) { - var localPlayer = _player.LocalEntity; - var mousePos = _inputManager.MouseScreenPosition; - var screenSize = _clyde.MainWindow.Size; - var minValue = MathF.Min(screenSize.X / 2, screenSize.Y / 2) * _edgeOffset; - - var mouseNormalizedPos = new Vector2(-(mousePos.X - screenSize.X / 2) / minValue, (mousePos.Y - screenSize.Y / 2) / minValue); // X needs to be inverted here for some reason, otherwise it ends up flipped. - - if (localPlayer == null) + // We need the main viewport where the game content is displayed, as certain UI layouts (e.g. Separated HUD) can make it a different size to the game window. + if (_eyeManager.MainViewport is not ScalingViewport vp) return null; - var playerPos = _transform.GetWorldPosition(localPlayer.Value); + var mousePos = _inputManager.MouseScreenPosition.Position; // TODO: If we ever get a right-aligned Separated HUD setting, this might need to be adjusted for that. + + var viewportSize = vp.PixelSize; // The size of the game viewport, including black bars - does not include the chatbox in Separated HUD view. + var scalingViewportSize = vp.ViewportSize * vp.CurrentRenderScale; // The size of the viewport in which the game is rendered (i.e. not including black bars). Note! Can extend outside the game window with certain zoom settings! + var visibleViewportSize = Vector2.Min(viewportSize, scalingViewportSize); // The size of the game viewport that is "actually visible" to the player, cutting off over-extensions and not counting black bar padding. + + Matrix3x2.Invert(_eyeManager.MainViewport.GetLocalToScreenMatrix(), out var matrix); + var mouseCoords = Vector2.Transform(mousePos, matrix); // Gives the mouse position inside of the *scaling viewport*, i.e. 0,0 is inside the black bars. Note! 0,0 can be outside the game window with certain zoom settings! + + var boundedMousePos = Vector2.Clamp(Vector2.Min(mouseCoords, mousePos), Vector2.Zero, visibleViewportSize); // Mouse position inside the visible game viewport's bounds. + + var offsetRadius = MathF.Min(visibleViewportSize.X / 2f, visibleViewportSize.Y / 2f) * _edgeOffset; + var mouseNormalizedPos = new Vector2(-(boundedMousePos.X - visibleViewportSize.X / 2f) / offsetRadius, (boundedMousePos.Y - visibleViewportSize.Y / 2f) / offsetRadius); if (component == null) - { component = EnsureComp(uid); - } // Doesn't move the offset if the mouse has left the game window! - if (mousePos.Window != WindowId.Invalid) + if (_inputManager.MouseScreenPosition.Window != WindowId.Invalid) { // The offset must account for the in-world rotation. var eyeRotation = _eyeManager.CurrentEye.Rotation; @@ -77,7 +78,7 @@ public sealed partial class EyeCursorOffsetSystem : EntitySystem Vector2 vectorOffset = component.TargetPosition - component.CurrentPosition; if (vectorOffset.Length() > component.OffsetSpeed) { - vectorOffset = vectorOffset.Normalized() * component.OffsetSpeed; + vectorOffset = vectorOffset.Normalized() * component.OffsetSpeed; // TODO: Probably needs to properly account for time delta or something. } component.CurrentPosition += vectorOffset; } diff --git a/Content.Client/NPC/PathfindingSystem.cs b/Content.Client/NPC/PathfindingSystem.cs index 0c72a8f99f..dc8fd98433 100644 --- a/Content.Client/NPC/PathfindingSystem.cs +++ b/Content.Client/NPC/PathfindingSystem.cs @@ -20,6 +20,7 @@ namespace Content.Client.NPC [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly IInputManager _inputManager = default!; [Dependency] private readonly IMapManager _mapManager = default!; + [Dependency] private readonly IOverlayManager _overlayManager = default!; [Dependency] private readonly IResourceCache _cache = default!; [Dependency] private readonly NPCSteeringSystem _steering = default!; [Dependency] private readonly MapSystem _mapSystem = default!; @@ -30,17 +31,15 @@ namespace Content.Client.NPC get => _modes; set { - var overlayManager = IoCManager.Resolve(); - if (value == PathfindingDebugMode.None) { Breadcrumbs.Clear(); Polys.Clear(); - overlayManager.RemoveOverlay(); + _overlayManager.RemoveOverlay(); } - else if (!overlayManager.HasOverlay()) + else if (!_overlayManager.HasOverlay()) { - overlayManager.AddOverlay(new PathfindingOverlay(EntityManager, _eyeManager, _inputManager, _mapManager, _cache, this, _mapSystem, _transformSystem)); + _overlayManager.AddOverlay(new PathfindingOverlay(EntityManager, _eyeManager, _inputManager, _mapManager, _cache, this, _mapSystem, _transformSystem)); } if ((value & PathfindingDebugMode.Steering) != 0x0) diff --git a/Content.Client/Radiation/Overlays/RadiationDebugOverlay.cs b/Content.Client/Radiation/Overlays/RadiationDebugOverlay.cs index 784c39a6ce..1f060e532d 100644 --- a/Content.Client/Radiation/Overlays/RadiationDebugOverlay.cs +++ b/Content.Client/Radiation/Overlays/RadiationDebugOverlay.cs @@ -11,6 +11,8 @@ namespace Content.Client.Radiation.Overlays; public sealed class RadiationDebugOverlay : Overlay { [Dependency] private readonly IEntityManager _entityManager = default!; + [Dependency] private readonly IResourceCache _cache = default!; + private readonly SharedMapSystem _mapSystem; private readonly RadiationSystem _radiation; @@ -24,8 +26,7 @@ public sealed class RadiationDebugOverlay : Overlay _radiation = _entityManager.System(); _mapSystem = _entityManager.System(); - var cache = IoCManager.Resolve(); - _font = new VectorFont(cache.GetResource("/Fonts/NotoSans/NotoSans-Regular.ttf"), 8); + _font = new VectorFont(_cache.GetResource("/Fonts/NotoSans/NotoSans-Regular.ttf"), 8); } protected override void Draw(in OverlayDrawArgs args) diff --git a/Content.Client/Shuttles/Systems/ShuttleSystem.EmergencyConsole.cs b/Content.Client/Shuttles/Systems/ShuttleSystem.EmergencyConsole.cs index 56b54c176a..f6e6594af5 100644 --- a/Content.Client/Shuttles/Systems/ShuttleSystem.EmergencyConsole.cs +++ b/Content.Client/Shuttles/Systems/ShuttleSystem.EmergencyConsole.cs @@ -16,20 +16,20 @@ public sealed partial class ShuttleSystem : SharedShuttleSystem get => _enableShuttlePosition; set { - if (_enableShuttlePosition == value) return; + if (_enableShuttlePosition == value) + return; _enableShuttlePosition = value; - var overlayManager = IoCManager.Resolve(); if (_enableShuttlePosition) { _overlay = new EmergencyShuttleOverlay(EntityManager.TransformQuery, XformSystem); - overlayManager.AddOverlay(_overlay); + _overlays.AddOverlay(_overlay); RaiseNetworkEvent(new EmergencyShuttleRequestPositionMessage()); } else { - overlayManager.RemoveOverlay(_overlay!); + _overlays.RemoveOverlay(_overlay!); _overlay = null; } } diff --git a/Content.Client/Stack/StackSystem.cs b/Content.Client/Stack/StackSystem.cs index d7d1c34ae2..182daa73a5 100644 --- a/Content.Client/Stack/StackSystem.cs +++ b/Content.Client/Stack/StackSystem.cs @@ -12,7 +12,6 @@ namespace Content.Client.Stack { [Dependency] private readonly AppearanceSystem _appearanceSystem = default!; [Dependency] private readonly ItemCounterSystem _counterSystem = default!; - [Dependency] private readonly SpriteSystem _sprite = default!; public override void Initialize() { diff --git a/Content.Client/Storage/Components/EntityStorageComponent.cs b/Content.Client/Storage/Components/EntityStorageComponent.cs deleted file mode 100644 index 514d5d6595..0000000000 --- a/Content.Client/Storage/Components/EntityStorageComponent.cs +++ /dev/null @@ -1,10 +0,0 @@ -using Content.Shared.Storage.Components; -using Robust.Shared.GameStates; - -namespace Content.Client.Storage.Components; - -[RegisterComponent] -public sealed partial class EntityStorageComponent : SharedEntityStorageComponent -{ - -} diff --git a/Content.Client/Storage/Systems/EntityStorageSystem.cs b/Content.Client/Storage/Systems/EntityStorageSystem.cs index dd3f8d3860..ca2b986667 100644 --- a/Content.Client/Storage/Systems/EntityStorageSystem.cs +++ b/Content.Client/Storage/Systems/EntityStorageSystem.cs @@ -31,7 +31,7 @@ public sealed class EntityStorageSystem : SharedEntityStorageSystem SubscribeLocalEvent(OnHandleState); } - public override bool ResolveStorage(EntityUid uid, [NotNullWhen(true)] ref SharedEntityStorageComponent? component) + public override bool ResolveStorage(EntityUid uid, [NotNullWhen(true)] ref EntityStorageComponent? component) { if (component != null) return true; diff --git a/Content.Client/UserInterface/Controls/MenuButton.cs b/Content.Client/UserInterface/Controls/MenuButton.cs index 540a8ecb57..a0ba21da74 100644 --- a/Content.Client/UserInterface/Controls/MenuButton.cs +++ b/Content.Client/UserInterface/Controls/MenuButton.cs @@ -25,7 +25,7 @@ public sealed class MenuButton : ContainerButton private Color NormalColor => HasStyleClass(StyleClassRedTopButton) ? ColorRedNormal : ColorNormal; private Color HoveredColor => HasStyleClass(StyleClassRedTopButton) ? ColorRedHovered : ColorHovered; - private BoundKeyFunction _function; + private BoundKeyFunction? _function; private readonly BoxContainer _root; private readonly TextureRect? _buttonIcon; private readonly Label? _buttonLabel; @@ -33,13 +33,13 @@ public sealed class MenuButton : ContainerButton public string AppendStyleClass { set => AddStyleClass(value); } public Texture? Icon { get => _buttonIcon!.Texture; set => _buttonIcon!.Texture = value; } - public BoundKeyFunction BoundKey + public BoundKeyFunction? BoundKey { get => _function; set { _function = value; - _buttonLabel!.Text = BoundKeyHelper.ShortKeyName(value); + _buttonLabel!.Text = _function == null ? "" : BoundKeyHelper.ShortKeyName(_function.Value); } } @@ -95,12 +95,12 @@ public sealed class MenuButton : ContainerButton private void OnKeyBindingChanged(IKeyBinding obj) { - _buttonLabel!.Text = BoundKeyHelper.ShortKeyName(_function); + _buttonLabel!.Text = _function == null ? "" : BoundKeyHelper.ShortKeyName(_function.Value); } private void OnKeyBindingChanged() { - _buttonLabel!.Text = BoundKeyHelper.ShortKeyName(_function); + _buttonLabel!.Text = _function == null ? "" : BoundKeyHelper.ShortKeyName(_function.Value); } protected override void StylePropertiesChanged() diff --git a/Content.Client/Weapons/Ranged/Systems/GunSystem.cs b/Content.Client/Weapons/Ranged/Systems/GunSystem.cs index 6abebda6ee..c27e81b5c7 100644 --- a/Content.Client/Weapons/Ranged/Systems/GunSystem.cs +++ b/Content.Client/Weapons/Ranged/Systems/GunSystem.cs @@ -30,6 +30,7 @@ public sealed partial class GunSystem : SharedGunSystem { [Dependency] private readonly IEyeManager _eyeManager = default!; [Dependency] private readonly IInputManager _inputManager = default!; + [Dependency] private readonly IOverlayManager _overlayManager = default!; [Dependency] private readonly IPlayerManager _player = default!; [Dependency] private readonly IStateManager _state = default!; [Dependency] private readonly AnimationPlayerSystem _animPlayer = default!; @@ -50,11 +51,10 @@ public sealed partial class GunSystem : SharedGunSystem return; _spreadOverlay = value; - var overlayManager = IoCManager.Resolve(); if (_spreadOverlay) { - overlayManager.AddOverlay(new GunSpreadOverlay( + _overlayManager.AddOverlay(new GunSpreadOverlay( EntityManager, _eyeManager, Timing, @@ -65,7 +65,7 @@ public sealed partial class GunSystem : SharedGunSystem } else { - overlayManager.RemoveOverlay(); + _overlayManager.RemoveOverlay(); } } } diff --git a/Content.Client/Wieldable/WieldableSystem.cs b/Content.Client/Wieldable/WieldableSystem.cs index 2de837923c..e40544e39d 100644 --- a/Content.Client/Wieldable/WieldableSystem.cs +++ b/Content.Client/Wieldable/WieldableSystem.cs @@ -29,7 +29,10 @@ public sealed class WieldableSystem : SharedWieldableSystem return; if (_gameTiming.IsFirstTimePredicted) + { cursorOffsetComp.CurrentPosition = Vector2.Zero; + cursorOffsetComp.TargetPosition = Vector2.Zero; + } } public void OnGetEyeOffset(Entity entity, ref HeldRelayedEvent args) diff --git a/Content.IntegrationTests/Tests/CargoTest.cs b/Content.IntegrationTests/Tests/CargoTest.cs index a2e7644c54..ea4db8a0d3 100644 --- a/Content.IntegrationTests/Tests/CargoTest.cs +++ b/Content.IntegrationTests/Tests/CargoTest.cs @@ -6,6 +6,7 @@ using Content.Server.Cargo.Systems; using Content.Server.Nutrition.Components; using Content.Server.Nutrition.EntitySystems; using Content.Shared.Cargo.Prototypes; +using Content.Shared.Mobs.Components; using Content.Shared.Prototypes; using Content.Shared.Stacks; using Content.Shared.Whitelist; @@ -248,6 +249,27 @@ public sealed class CargoTest Assert.That(price, Is.EqualTo(100.0)); }); + await pair.CleanReturnAsync(); + } + + [Test] + public async Task MobPrice() + { + await using var pair = await PoolManager.GetServerClient(); + + var componentFactory = pair.Server.ResolveDependency(); + + await pair.Server.WaitAssertion(() => + { + Assert.Multiple(() => + { + foreach (var (proto, comp) in pair.GetPrototypesWithComponent()) + { + Assert.That(proto.TryGetComponent(out _, componentFactory), $"Found MobPriceComponent on {proto.ID}, but no MobStateComponent!"); + } + }); + }); + await pair.CleanReturnAsync(); }*/ } diff --git a/Content.IntegrationTests/Tests/Disposal/DisposalUnitInteractionTest.cs b/Content.IntegrationTests/Tests/Disposal/DisposalUnitInteractionTest.cs new file mode 100644 index 0000000000..d4b20a55a8 --- /dev/null +++ b/Content.IntegrationTests/Tests/Disposal/DisposalUnitInteractionTest.cs @@ -0,0 +1,54 @@ +using Content.IntegrationTests.Tests.Interaction; +using Content.Server.Containers; +using Robust.Shared.Containers; +using Robust.Shared.Prototypes; + +namespace Content.IntegrationTests.Tests.Disposal; + +public sealed class DisposalUnitInteractionTest : InteractionTest +{ + private static readonly EntProtoId DisposalUnit = "DisposalUnit"; + private static readonly EntProtoId TrashItem = "BrokenBottle"; + + private const string TestDisposalUnitId = "TestDisposalUnit"; + + [TestPrototypes] + private static readonly string TestPrototypes = $@" +# A modified disposal unit with a 100% chance of a thrown item being inserted +- type: entity + parent: {DisposalUnit.Id} + id: {TestDisposalUnitId} + components: + - type: ThrowInsertContainer + probability: 1 +"; + + /// + /// Spawns a disposal unit, gives the player a trash item, and makes the + /// player throw the item at the disposal unit. + /// After a short delay, verifies that the thrown item is contained inside + /// the disposal unit. + /// + [Test] + public async Task ThrowItemIntoDisposalUnitTest() + { + var containerSys = Server.System(); + + // Spawn the target disposal unit + var disposalUnit = await SpawnTarget(TestDisposalUnitId); + + // Give the player some trash to throw + var trash = await PlaceInHands(TrashItem); + + // Throw the item at the disposal unit + await ThrowItem(); + + // Wait a moment + await RunTicks(10); + + // Make sure the trash is in the disposal unit + var throwInsertComp = Comp(); + var container = containerSys.GetContainer(ToServer(disposalUnit), throwInsertComp.ContainerId); + Assert.That(container.ContainedEntities, Contains.Item(ToServer(trash))); + } +} diff --git a/Content.IntegrationTests/Tests/Doors/AirlockTest.cs b/Content.IntegrationTests/Tests/Doors/AirlockTest.cs index e47c73611a..69fe66039b 100644 --- a/Content.IntegrationTests/Tests/Doors/AirlockTest.cs +++ b/Content.IntegrationTests/Tests/Doors/AirlockTest.cs @@ -21,6 +21,7 @@ namespace Content.IntegrationTests.Tests.Doors components: - type: Physics bodyType: Dynamic + - type: GravityAffected - type: Fixtures fixtures: fix1: diff --git a/Content.IntegrationTests/Tests/Engineering/InflatablesDeflateTest.cs b/Content.IntegrationTests/Tests/Engineering/InflatablesDeflateTest.cs new file mode 100644 index 0000000000..a7203d9259 --- /dev/null +++ b/Content.IntegrationTests/Tests/Engineering/InflatablesDeflateTest.cs @@ -0,0 +1,20 @@ +using Content.IntegrationTests.Tests.Interaction; +using Content.Shared.Engineering.Systems; + +namespace Content.IntegrationTests.Tests.Engineering; + +[TestFixture] +[TestOf(typeof(InflatableSafeDisassemblySystem))] +public sealed class InflatablesDeflateTest : InteractionTest +{ + [Test] + public async Task Test() + { + await SpawnTarget(InflatableWall); + + await InteractUsing(Needle); + + AssertDeleted(); + await AssertEntityLookup(new EntitySpecifier(InflatableWallStack.Id, 1)); + } +} diff --git a/Content.IntegrationTests/Tests/Gravity/WeightlessStatusTests.cs b/Content.IntegrationTests/Tests/Gravity/WeightlessStatusTests.cs index 6aa2763888..0951e7e260 100644 --- a/Content.IntegrationTests/Tests/Gravity/WeightlessStatusTests.cs +++ b/Content.IntegrationTests/Tests/Gravity/WeightlessStatusTests.cs @@ -19,6 +19,7 @@ namespace Content.IntegrationTests.Tests.Gravity - type: Alerts - type: Physics bodyType: Dynamic + - type: GravityAffected - type: entity name: WeightlessGravityGeneratorDummy diff --git a/Content.IntegrationTests/Tests/GravityGridTest.cs b/Content.IntegrationTests/Tests/GravityGridTest.cs index 8def7b122b..6f3534523b 100644 --- a/Content.IntegrationTests/Tests/GravityGridTest.cs +++ b/Content.IntegrationTests/Tests/GravityGridTest.cs @@ -76,8 +76,8 @@ namespace Content.IntegrationTests.Tests Assert.Multiple(() => { Assert.That(generatorComponent.GravityActive, Is.True); - Assert.That(!entityMan.GetComponent(grid1).EnabledVV); - Assert.That(entityMan.GetComponent(grid2).EnabledVV); + Assert.That(!entityMan.GetComponent(grid1).Enabled); + Assert.That(entityMan.GetComponent(grid2).Enabled); }); // Re-enable needs power so it turns off again. @@ -94,7 +94,7 @@ namespace Content.IntegrationTests.Tests Assert.Multiple(() => { Assert.That(generatorComponent.GravityActive, Is.False); - Assert.That(entityMan.GetComponent(grid2).EnabledVV, Is.False); + Assert.That(entityMan.GetComponent(grid2).Enabled, Is.False); }); }); diff --git a/Content.IntegrationTests/Tests/Interaction/InteractionTest.Constants.cs b/Content.IntegrationTests/Tests/Interaction/InteractionTest.Constants.cs index 5db5d91d0d..8917ba7ead 100644 --- a/Content.IntegrationTests/Tests/Interaction/InteractionTest.Constants.cs +++ b/Content.IntegrationTests/Tests/Interaction/InteractionTest.Constants.cs @@ -1,3 +1,6 @@ +using Content.Shared.Stacks; +using Robust.Shared.Prototypes; + namespace Content.IntegrationTests.Tests.Interaction; // This partial class contains various constant prototype IDs common to interaction tests. @@ -32,4 +35,9 @@ public abstract partial class InteractionTest protected const string Manipulator1 = "MicroManipulatorStockPart"; protected const string Battery1 = "PowerCellSmall"; protected const string Battery4 = "PowerCellHyper"; + + // Inflatables & Needle used to pop them + protected static readonly EntProtoId InflatableWall = "InflatableWall"; + protected static readonly EntProtoId Needle = "WeaponMeleeNeedle"; + protected static readonly ProtoId InflatableWallStack = "InflatableWall"; } diff --git a/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs b/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs index 79756ea5b4..0ed42d3476 100644 --- a/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs +++ b/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs @@ -144,6 +144,7 @@ public abstract partial class InteractionTest - type: Stripping - type: Puller - type: Physics + - type: GravityAffected - type: Tag tags: - CanPilot diff --git a/Content.Server/Administration/Commands/AddEntityStorageCommand.cs b/Content.Server/Administration/Commands/AddEntityStorageCommand.cs index 4c562d606d..b7b6ad89e9 100644 --- a/Content.Server/Administration/Commands/AddEntityStorageCommand.cs +++ b/Content.Server/Administration/Commands/AddEntityStorageCommand.cs @@ -1,4 +1,4 @@ -using Content.Server.Storage.Components; +using Content.Shared.Storage.Components; using Content.Server.Storage.EntitySystems; using Content.Shared.Administration; using Robust.Shared.Console; diff --git a/Content.Server/Administration/Commands/LinkBluespaceLocker.cs b/Content.Server/Administration/Commands/LinkBluespaceLocker.cs index 9fac72664b..47d87565d2 100644 --- a/Content.Server/Administration/Commands/LinkBluespaceLocker.cs +++ b/Content.Server/Administration/Commands/LinkBluespaceLocker.cs @@ -1,5 +1,6 @@ using Content.Server.Storage.Components; using Content.Shared.Administration; +using Content.Shared.Storage.Components; using Robust.Shared.Console; namespace Content.Server.Administration.Commands; diff --git a/Content.Server/Administration/Commands/RemoveEntityStorageCommand.cs b/Content.Server/Administration/Commands/RemoveEntityStorageCommand.cs index 858e48a71e..f267cd28cb 100644 --- a/Content.Server/Administration/Commands/RemoveEntityStorageCommand.cs +++ b/Content.Server/Administration/Commands/RemoveEntityStorageCommand.cs @@ -1,4 +1,4 @@ -using Content.Server.Storage.Components; +using Content.Shared.Storage.Components; using Content.Server.Storage.EntitySystems; using Content.Shared.Administration; using Robust.Shared.Console; diff --git a/Content.Server/Administration/Systems/AdminFrozenSystem.cs b/Content.Server/Administration/Systems/AdminFrozenSystem.cs deleted file mode 100644 index baf7b682b8..0000000000 --- a/Content.Server/Administration/Systems/AdminFrozenSystem.cs +++ /dev/null @@ -1,16 +0,0 @@ -using Content.Shared.Administration; - -namespace Content.Server.Administration.Systems; - -public sealed class AdminFrozenSystem : SharedAdminFrozenSystem -{ - /// - /// Freezes and mutes the given entity. - /// - public void FreezeAndMute(EntityUid uid) - { - var comp = EnsureComp(uid); - comp.Muted = true; - Dirty(uid, comp); - } -} diff --git a/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs b/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs index 44b09414ed..41dbe85a9a 100644 --- a/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs +++ b/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs @@ -1,10 +1,8 @@ using System.Threading; using Content.Server.Administration.Components; -using Content.Server.Atmos.Components; using Content.Server.Atmos.EntitySystems; using Content.Server.Body.Components; using Content.Server.Body.Systems; -using Content.Server.Clothing.Systems; using Content.Server.Electrocution; using Content.Server.Explosion.EntitySystems; using Content.Server.GhostKick; @@ -14,12 +12,12 @@ using Content.Server.Pointing.Components; using Content.Server.Polymorph.Systems; using Content.Server.Popups; using Content.Server.Speech.Components; -using Content.Server.Storage.Components; using Content.Server.Storage.EntitySystems; using Content.Server.Tabletop; using Content.Server.Tabletop.Components; using Content.Shared.Administration; using Content.Shared.Administration.Components; +using Content.Shared.Atmos.Components; using Content.Shared.Body.Components; using Content.Shared.Body.Part; using Content.Shared.Clumsy; @@ -29,6 +27,7 @@ using Content.Shared.Damage; using Content.Shared.Damage.Systems; using Content.Shared.Database; using Content.Shared.Electrocution; +using Content.Shared.Gravity; using Content.Shared.Interaction.Components; using Content.Shared.Inventory; using Content.Shared.Mobs; @@ -39,7 +38,7 @@ using Content.Shared.Movement.Systems; using Content.Shared.Nutrition.Components; using Content.Shared.Popups; using Content.Shared.Slippery; -using Content.Shared.Stunnable; +using Content.Shared.Storage.Components; using Content.Shared.Tabletop.Components; using Content.Shared.Tools.Systems; using Content.Shared.Verbs; @@ -49,7 +48,6 @@ using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Systems; using Robust.Shared.Player; using Robust.Shared.Random; -using Robust.Shared.Timing; using Robust.Shared.Utility; using Timer = Robust.Shared.Timing.Timer; @@ -675,6 +673,11 @@ public sealed partial class AdminVerbSystem grav.Weightless = true; Dirty(args.Target, grav); + + EnsureComp(args.Target, out var weightless); + weightless.Weightless = true; + + Dirty(args.Target, weightless); }, Impact = LogImpact.Extreme, Message = string.Join(": ", noGravityName, Loc.GetString("admin-smite-remove-gravity-description")) diff --git a/Content.Server/Animals/Systems/ParrotMemorySystem.cs b/Content.Server/Animals/Systems/ParrotMemorySystem.cs index a88957913f..6d8192f5d5 100644 --- a/Content.Server/Animals/Systems/ParrotMemorySystem.cs +++ b/Content.Server/Animals/Systems/ParrotMemorySystem.cs @@ -29,12 +29,10 @@ public sealed partial class ParrotMemorySystem : SharedParrotMemorySystem { [Dependency] private readonly EntityWhitelistSystem _whitelist = default!; [Dependency] private readonly IAdminLogManager _adminLogger = default!; - [Dependency] private readonly IAdminManager _admin = default!; [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly MindSystem _mind = default!; [Dependency] private readonly MobStateSystem _mobState = default!; - [Dependency] private readonly PopupSystem _popup = default!; public override void Initialize() { diff --git a/Content.Server/Anomaly/Effects/PyroclasticAnomalySystem.cs b/Content.Server/Anomaly/Effects/PyroclasticAnomalySystem.cs index d38bda562b..5ceb9888f4 100644 --- a/Content.Server/Anomaly/Effects/PyroclasticAnomalySystem.cs +++ b/Content.Server/Anomaly/Effects/PyroclasticAnomalySystem.cs @@ -1,7 +1,7 @@ -using Content.Server.Atmos.Components; using Content.Server.Atmos.EntitySystems; using Content.Shared.Anomaly.Components; using Content.Shared.Anomaly.Effects.Components; +using Content.Shared.Atmos.Components; using Robust.Shared.Map; namespace Content.Server.Anomaly.Effects; diff --git a/Content.Server/Botany/Systems/BotanySystem.Seed.cs b/Content.Server/Botany/Systems/BotanySystem.Seed.cs index fd65c141aa..6b26ce7119 100644 --- a/Content.Server/Botany/Systems/BotanySystem.Seed.cs +++ b/Content.Server/Botany/Systems/BotanySystem.Seed.cs @@ -1,5 +1,4 @@ using Content.Server.Botany.Components; -using Content.Server.Kitchen.Components; using Content.Server.Popups; using Content.Shared.Chemistry.EntitySystems; using Content.Shared.Botany; @@ -16,6 +15,7 @@ using System.Diagnostics.CodeAnalysis; using System.Linq; using Content.Shared.Administration.Logs; using Content.Shared.Database; +using Content.Shared.Kitchen.Components; namespace Content.Server.Botany.Systems; diff --git a/Content.Server/Botany/Systems/LogSystem.cs b/Content.Server/Botany/Systems/LogSystem.cs index 3d415635be..08190af708 100644 --- a/Content.Server/Botany/Systems/LogSystem.cs +++ b/Content.Server/Botany/Systems/LogSystem.cs @@ -1,7 +1,7 @@ using Content.Server.Botany.Components; -using Content.Server.Kitchen.Components; using Content.Shared.Hands.EntitySystems; using Content.Shared.Interaction; +using Content.Shared.Kitchen.Components; using Content.Shared.Random; using Robust.Shared.Containers; diff --git a/Content.Server/Botany/Systems/PlantHolderSystem.cs b/Content.Server/Botany/Systems/PlantHolderSystem.cs index d8381b2a79..e38c742fa2 100644 --- a/Content.Server/Botany/Systems/PlantHolderSystem.cs +++ b/Content.Server/Botany/Systems/PlantHolderSystem.cs @@ -1,7 +1,6 @@ using Content.Server.Atmos.EntitySystems; using Content.Server.Botany.Components; using Content.Server.Hands.Systems; -using Content.Server.Kitchen.Components; using Content.Server.Popups; using Content.Shared.Chemistry.EntitySystems; using Content.Shared.Atmos; @@ -26,6 +25,7 @@ using Robust.Shared.Timing; using Content.Shared.Administration.Logs; using Content.Shared.Containers.ItemSlots; using Content.Shared.Database; +using Content.Shared.Kitchen.Components; using Content.Shared.Labels.Components; namespace Content.Server.Botany.Systems; diff --git a/Content.Server/Changeling/Systems/ChangelingIdentitySystem.cs b/Content.Server/Changeling/Systems/ChangelingIdentitySystem.cs new file mode 100644 index 0000000000..8cb3dec3d6 --- /dev/null +++ b/Content.Server/Changeling/Systems/ChangelingIdentitySystem.cs @@ -0,0 +1,5 @@ +using Content.Shared.Changeling.Systems; + +namespace Content.Server.Changeling.Systems; + +public sealed class ChangelingIdentitySystem : SharedChangelingIdentitySystem; diff --git a/Content.Server/Chat/Systems/ChatSystem.cs b/Content.Server/Chat/Systems/ChatSystem.cs index db3b76356f..4f17170a11 100644 --- a/Content.Server/Chat/Systems/ChatSystem.cs +++ b/Content.Server/Chat/Systems/ChatSystem.cs @@ -324,7 +324,7 @@ public sealed partial class ChatSystem : SharedChatSystem _chatManager.ChatMessageToAll(ChatChannel.Radio, message, wrappedMessage, default, false, true, colorOverride); if (playSound) { - _audio.PlayGlobal(announcementSound == null ? DefaultAnnouncementSound : _audio.ResolveSound(announcementSound), Filter.Broadcast(), true, AudioParams.Default.WithVolume(-2f)); + _audio.PlayGlobal(announcementSound ?? DefaultAnnouncementSound, Filter.Broadcast(), true, AudioParams.Default.WithVolume(-2f)); } _adminLogger.Add(LogType.Chat, LogImpact.Low, $"Global station announcement from {sender}: {message}"); } @@ -354,7 +354,7 @@ public sealed partial class ChatSystem : SharedChatSystem _chatManager.ChatMessageToManyFiltered(filter, ChatChannel.Radio, message, wrappedMessage, source ?? default, false, true, colorOverride); if (playSound) { - _audio.PlayGlobal(announcementSound == null ? DefaultAnnouncementSound : _audio.ResolveSound(announcementSound), filter, true, AudioParams.Default.WithVolume(-2f)); //CP14 bugfix with sound resolving + _audio.PlayGlobal(announcementSound ?? DefaultAnnouncementSound, filter, true, AudioParams.Default.WithVolume(-2f)); } _adminLogger.Add(LogType.Chat, LogImpact.Low, $"Station Announcement from {sender}: {message}"); } @@ -394,7 +394,7 @@ public sealed partial class ChatSystem : SharedChatSystem if (playDefaultSound) { - _audio.PlayGlobal(announcementSound?.ToString() ?? DefaultAnnouncementSound, filter, true, AudioParams.Default.WithVolume(-2f)); + _audio.PlayGlobal(announcementSound ?? DefaultAnnouncementSound, filter, true, AudioParams.Default.WithVolume(-2f)); } _adminLogger.Add(LogType.Chat, LogImpact.Low, $"Station Announcement on {station} from {sender}: {message}"); diff --git a/Content.Server/Construction/Conditions/StorageWelded.cs b/Content.Server/Construction/Conditions/StorageWelded.cs index ba0927ffa3..fea18e4392 100644 --- a/Content.Server/Construction/Conditions/StorageWelded.cs +++ b/Content.Server/Construction/Conditions/StorageWelded.cs @@ -1,6 +1,6 @@ -using Content.Server.Storage.Components; using Content.Shared.Construction; using Content.Shared.Examine; +using Content.Shared.Storage.Components; using Content.Shared.Tools.Systems; using JetBrains.Annotations; diff --git a/Content.Server/Destructible/Thresholds/Behaviors/PopupBehavior.cs b/Content.Server/Destructible/Thresholds/Behaviors/PopupBehavior.cs index 1d7ce24f60..0bca5451c4 100644 --- a/Content.Server/Destructible/Thresholds/Behaviors/PopupBehavior.cs +++ b/Content.Server/Destructible/Thresholds/Behaviors/PopupBehavior.cs @@ -20,11 +20,21 @@ public sealed partial class PopupBehavior : IThresholdBehavior [DataField("popupType")] public PopupType PopupType; + /// + /// Only the affected entity will see the popup. + /// + [DataField] + public bool TargetOnly; + public void Execute(EntityUid uid, DestructibleSystem system, EntityUid? cause = null) { var popup = system.EntityManager.System(); // popup is placed at coords since the entity could be deleted after, no more popup then var coords = system.EntityManager.GetComponent(uid).Coordinates; - popup.PopupCoordinates(Loc.GetString(Popup), coords, PopupType); + + if (TargetOnly) + popup.PopupCoordinates(Loc.GetString(Popup), coords, uid, PopupType); + else + popup.PopupCoordinates(Loc.GetString(Popup), coords, PopupType); } } diff --git a/Content.Server/Destructible/Thresholds/Behaviors/VomitBehavior.cs b/Content.Server/Destructible/Thresholds/Behaviors/VomitBehavior.cs new file mode 100644 index 0000000000..067e7d4565 --- /dev/null +++ b/Content.Server/Destructible/Thresholds/Behaviors/VomitBehavior.cs @@ -0,0 +1,12 @@ +using Content.Server.Medical; + +namespace Content.Server.Destructible.Thresholds.Behaviors; + +[DataDefinition] +public sealed partial class VomitBehavior : IThresholdBehavior +{ + public void Execute(EntityUid uid, DestructibleSystem system, EntityUid? cause = null) + { + system.EntityManager.System().Vomit(uid); + } +} diff --git a/Content.Server/Electrocution/ElectrocutionSystem.cs b/Content.Server/Electrocution/ElectrocutionSystem.cs index 1f04421c0f..a162b29e19 100644 --- a/Content.Server/Electrocution/ElectrocutionSystem.cs +++ b/Content.Server/Electrocution/ElectrocutionSystem.cs @@ -418,7 +418,7 @@ public sealed class ElectrocutionSystem : SharedElectrocutionSystem } } - _stuttering.DoStutter(uid, time * StutteringTimeMultiplier, refresh, statusEffects); + _stuttering.DoStutter(uid, time * StutteringTimeMultiplier, refresh); _jittering.DoJitter(uid, time * JitterTimeMultiplier, refresh, JitterAmplitude, JitterFrequency, true, statusEffects); _popup.PopupEntity(Loc.GetString("electrocuted-component-mob-shocked-popup-player"), uid, uid); diff --git a/Content.Server/EntityEffects/EntityEffectSystem.cs b/Content.Server/EntityEffects/EntityEffectSystem.cs index 1277c8df59..f423a43261 100644 --- a/Content.Server/EntityEffects/EntityEffectSystem.cs +++ b/Content.Server/EntityEffects/EntityEffectSystem.cs @@ -1,6 +1,5 @@ using System.Diagnostics.CodeAnalysis; using System.Linq; -using Content.Server.Atmos.Components; using Content.Server.Atmos.EntitySystems; using Content.Server.Body.Components; using Content.Server.Body.Systems; @@ -22,6 +21,7 @@ using Content.Server.Temperature.Systems; using Content.Server.Traits.Assorted; using Content.Server.Zombies; using Content.Shared.Atmos; +using Content.Shared.Atmos.Components; using Content.Shared.Body.Components; using Content.Shared.Coordinates.Helpers; using Content.Shared.EntityEffects.EffectConditions; @@ -889,7 +889,7 @@ public sealed class EntityEffectSystem : EntitySystem if (plantholder.Seed == null) return; - var gasses = plantholder.Seed.ExudeGasses; + var gasses = plantholder.Seed.ConsumeGasses; // Add a random amount of a random gas to this gas dictionary float amount = _random.NextFloat(args.Effect.MinValue, args.Effect.MaxValue); @@ -911,7 +911,7 @@ public sealed class EntityEffectSystem : EntitySystem if (plantholder.Seed == null) return; - var gasses = plantholder.Seed.ConsumeGasses; + var gasses = plantholder.Seed.ExudeGasses; // Add a random amount of a random gas to this gas dictionary float amount = _random.NextFloat(args.Effect.MinValue, args.Effect.MaxValue); diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs index c50b1e53fa..fc31a77041 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs @@ -4,6 +4,7 @@ using Content.Server.Administration.Logs; using Content.Server.Atmos.Components; using Content.Server.NodeContainer.EntitySystems; using Content.Server.NPC.Pathfinding; +using Content.Shared.Atmos.Components; using Content.Shared.Camera; using Content.Shared.CCVar; using Content.Shared.Damage; diff --git a/Content.Server/Fluids/EntitySystems/SpraySystem.cs b/Content.Server/Fluids/EntitySystems/SpraySystem.cs index d8da0cde3d..2a6b0644be 100644 --- a/Content.Server/Fluids/EntitySystems/SpraySystem.cs +++ b/Content.Server/Fluids/EntitySystems/SpraySystem.cs @@ -166,7 +166,7 @@ public sealed class SpraySystem : EntitySystem if (TryComp(user, out var body)) { - if (_gravity.IsWeightless(user, body)) + if (_gravity.IsWeightless(user)) { // push back the player _physics.ApplyLinearImpulse(user, -impulseDirection * entity.Comp.PushbackAmount, body: body); diff --git a/Content.Server/GameTicking/Commands/DynamicRuleCommand.cs b/Content.Server/GameTicking/Commands/DynamicRuleCommand.cs new file mode 100644 index 0000000000..798e7d0d3a --- /dev/null +++ b/Content.Server/GameTicking/Commands/DynamicRuleCommand.cs @@ -0,0 +1,103 @@ +using System.Linq; +using Content.Server.Administration; +using Content.Server.GameTicking.Rules; +using Content.Shared.Administration; +using Robust.Shared.Prototypes; +using Robust.Shared.Toolshed; + +namespace Content.Server.GameTicking.Commands; + +[ToolshedCommand, AdminCommand(AdminFlags.Round)] +public sealed class DynamicRuleCommand : ToolshedCommand +{ + private DynamicRuleSystem? _dynamicRuleSystem; + + [CommandImplementation("list")] + public IEnumerable List() + { + _dynamicRuleSystem ??= GetSys(); + + return _dynamicRuleSystem.GetDynamicRules(); + } + + [CommandImplementation("get")] + public EntityUid Get() + { + _dynamicRuleSystem ??= GetSys(); + + return _dynamicRuleSystem.GetDynamicRules().FirstOrDefault(); + } + + [CommandImplementation("budget")] + public IEnumerable Budget([PipedArgument] IEnumerable input) + => input.Select(Budget); + + [CommandImplementation("budget")] + public float? Budget([PipedArgument] EntityUid input) + { + _dynamicRuleSystem ??= GetSys(); + + return _dynamicRuleSystem.GetRuleBudget(input); + } + + [CommandImplementation("adjust")] + public IEnumerable Adjust([PipedArgument] IEnumerable input, float value) + => input.Select(i => Adjust(i,value)); + + [CommandImplementation("adjust")] + public float? Adjust([PipedArgument] EntityUid input, float value) + { + _dynamicRuleSystem ??= GetSys(); + + return _dynamicRuleSystem.AdjustBudget(input, value); + } + + [CommandImplementation("set")] + public IEnumerable Set([PipedArgument] IEnumerable input, float value) + => input.Select(i => Set(i,value)); + + [CommandImplementation("set")] + public float? Set([PipedArgument] EntityUid input, float value) + { + _dynamicRuleSystem ??= GetSys(); + + return _dynamicRuleSystem.SetBudget(input, value); + } + + [CommandImplementation("dryrun")] + public IEnumerable> DryRun([PipedArgument] IEnumerable input) + => input.Select(DryRun); + + [CommandImplementation("dryrun")] + public IEnumerable DryRun([PipedArgument] EntityUid input) + { + _dynamicRuleSystem ??= GetSys(); + + return _dynamicRuleSystem.DryRun(input); + } + + [CommandImplementation("executenow")] + public IEnumerable> ExecuteNow([PipedArgument] IEnumerable input) + => input.Select(ExecuteNow); + + [CommandImplementation("executenow")] + public IEnumerable ExecuteNow([PipedArgument] EntityUid input) + { + _dynamicRuleSystem ??= GetSys(); + + return _dynamicRuleSystem.ExecuteNow(input); + } + + [CommandImplementation("rules")] + public IEnumerable> Rules([PipedArgument] IEnumerable input) + => input.Select(Rules); + + [CommandImplementation("rules")] + public IEnumerable Rules([PipedArgument] EntityUid input) + { + _dynamicRuleSystem ??= GetSys(); + + return _dynamicRuleSystem.Rules(input); + } +} + diff --git a/Content.Server/GameTicking/GameTicker.GameRule.cs b/Content.Server/GameTicking/GameTicker.GameRule.cs index b94c830fdf..1a3d77ea5c 100644 --- a/Content.Server/GameTicking/GameTicker.GameRule.cs +++ b/Content.Server/GameTicking/GameTicker.GameRule.cs @@ -21,7 +21,7 @@ public sealed partial class GameTicker /// A list storing the start times of all game rules that have been started this round. /// Game rules can be started and stopped at any time, including midround. /// - public IReadOnlyList<(TimeSpan, string)> AllPreviousGameRules => _allPreviousGameRules; + public override IReadOnlyList<(TimeSpan, string)> AllPreviousGameRules => _allPreviousGameRules; private void InitializeGameRules() { diff --git a/Content.Server/GameTicking/Rules/DynamicRuleSystem.cs b/Content.Server/GameTicking/Rules/DynamicRuleSystem.cs new file mode 100644 index 0000000000..b23e9d40f2 --- /dev/null +++ b/Content.Server/GameTicking/Rules/DynamicRuleSystem.cs @@ -0,0 +1,195 @@ +using System.Diagnostics; +using Content.Server.Administration.Logs; +using Content.Server.RoundEnd; +using Content.Shared.Database; +using Content.Shared.EntityTable; +using Content.Shared.EntityTable.Conditions; +using Content.Shared.GameTicking.Components; +using Content.Shared.GameTicking.Rules; +using Robust.Shared.Prototypes; +using Robust.Shared.Random; + +namespace Content.Server.GameTicking.Rules; + +public sealed class DynamicRuleSystem : GameRuleSystem +{ + [Dependency] private readonly IAdminLogManager _adminLog = default!; + [Dependency] private readonly EntityTableSystem _entityTable = default!; + [Dependency] private readonly RoundEndSystem _roundEnd = default!; + [Dependency] private readonly IRobustRandom _random = default!; + + protected override void Added(EntityUid uid, DynamicRuleComponent component, GameRuleComponent gameRule, GameRuleAddedEvent args) + { + base.Added(uid, component, gameRule, args); + + component.Budget = _random.Next(component.StartingBudgetMin, component.StartingBudgetMax);; + component.NextRuleTime = Timing.CurTime + _random.Next(component.MinRuleInterval, component.MaxRuleInterval); + } + + protected override void Started(EntityUid uid, DynamicRuleComponent component, GameRuleComponent gameRule, GameRuleStartedEvent args) + { + base.Started(uid, component, gameRule, args); + + // Since we don't know how long until this rule is activated, we need to + // set the last budget update to now so it doesn't immediately give the component a bunch of points. + component.LastBudgetUpdate = Timing.CurTime; + Execute((uid, component)); + } + + protected override void Ended(EntityUid uid, DynamicRuleComponent component, GameRuleComponent gameRule, GameRuleEndedEvent args) + { + base.Ended(uid, component, gameRule, args); + + foreach (var rule in component.Rules) + { + GameTicker.EndGameRule(rule); + } + } + + protected override void ActiveTick(EntityUid uid, DynamicRuleComponent component, GameRuleComponent gameRule, float frameTime) + { + base.ActiveTick(uid, component, gameRule, frameTime); + + if (Timing.CurTime < component.NextRuleTime) + return; + + // don't spawn antags during evac + if (_roundEnd.IsRoundEndRequested()) + return; + + Execute((uid, component)); + } + + /// + /// Generates and returns a list of randomly selected, + /// valid rules to spawn based on . + /// + private IEnumerable GetRuleSpawns(Entity entity) + { + UpdateBudget((entity.Owner, entity.Comp)); + var ctx = new EntityTableContext(new Dictionary + { + { HasBudgetCondition.BudgetContextKey, entity.Comp.Budget }, + }); + + return _entityTable.GetSpawns(entity.Comp.Table, ctx: ctx); + } + + /// + /// Updates the budget of the provided dynamic rule component based on the amount of time since the last update + /// multiplied by the value. + /// + private void UpdateBudget(Entity entity) + { + var duration = (float) (Timing.CurTime - entity.Comp.LastBudgetUpdate).TotalSeconds; + + entity.Comp.Budget += duration * entity.Comp.BudgetPerSecond; + entity.Comp.LastBudgetUpdate = Timing.CurTime; + } + + /// + /// Executes this rule, generating new dynamic rules and starting them. + /// + /// + /// Returns a list of the rules that were executed. + /// + private List Execute(Entity entity) + { + entity.Comp.NextRuleTime = + Timing.CurTime + _random.Next(entity.Comp.MinRuleInterval, entity.Comp.MaxRuleInterval); + + var executedRules = new List(); + + foreach (var rule in GetRuleSpawns(entity)) + { + var res = GameTicker.StartGameRule(rule, out var ruleUid); + Debug.Assert(res); + + executedRules.Add(ruleUid); + + if (TryComp(ruleUid, out var cost)) + { + entity.Comp.Budget -= cost.Cost; + _adminLog.Add(LogType.EventRan, LogImpact.High, $"{ToPrettyString(entity)} ran rule {ToPrettyString(ruleUid)} with cost {cost.Cost} on budget {entity.Comp.Budget}."); + } + else + { + _adminLog.Add(LogType.EventRan, LogImpact.High, $"{ToPrettyString(entity)} ran rule {ToPrettyString(ruleUid)} which had no cost."); + } + } + + entity.Comp.Rules.AddRange(executedRules); + return executedRules; + } + + #region Command Methods + + public List GetDynamicRules() + { + var rules = new List(); + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out _, out var comp)) + { + if (!GameTicker.IsGameRuleActive(uid, comp)) + continue; + rules.Add(uid); + } + + return rules; + } + + public float? GetRuleBudget(Entity entity) + { + if (!Resolve(entity, ref entity.Comp)) + return null; + + UpdateBudget((entity.Owner, entity.Comp)); + return entity.Comp.Budget; + } + + public float? AdjustBudget(Entity entity, float amount) + { + if (!Resolve(entity, ref entity.Comp)) + return null; + + UpdateBudget((entity.Owner, entity.Comp)); + entity.Comp.Budget += amount; + return entity.Comp.Budget; + } + + public float? SetBudget(Entity entity, float amount) + { + if (!Resolve(entity, ref entity.Comp)) + return null; + + entity.Comp.LastBudgetUpdate = Timing.CurTime; + entity.Comp.Budget = amount; + return entity.Comp.Budget; + } + + public IEnumerable DryRun(Entity entity) + { + if (!Resolve(entity, ref entity.Comp)) + return new List(); + + return GetRuleSpawns((entity.Owner, entity.Comp)); + } + + public IEnumerable ExecuteNow(Entity entity) + { + if (!Resolve(entity, ref entity.Comp)) + return new List(); + + return Execute((entity.Owner, entity.Comp)); + } + + public IEnumerable Rules(Entity entity) + { + if (!Resolve(entity, ref entity.Comp)) + return new List(); + + return entity.Comp.Rules; + } + + #endregion +} diff --git a/Content.Server/Gravity/GravitySystem.cs b/Content.Server/Gravity/GravitySystem.cs index 6807b9df4a..7958071a31 100644 --- a/Content.Server/Gravity/GravitySystem.cs +++ b/Content.Server/Gravity/GravitySystem.cs @@ -18,7 +18,7 @@ namespace Content.Server.Gravity /// public void RefreshGravity(EntityUid uid, GravityComponent? gravity = null) { - if (!Resolve(uid, ref gravity)) + if (!GravityQuery.Resolve(uid, ref gravity)) return; if (gravity.Inherent) @@ -61,7 +61,7 @@ namespace Content.Server.Gravity /// public void EnableGravity(EntityUid uid, GravityComponent? gravity = null) { - if (!Resolve(uid, ref gravity)) + if (!GravityQuery.Resolve(uid, ref gravity)) return; if (gravity.Enabled || gravity.Inherent) diff --git a/Content.Server/Hands/Systems/HandsSystem.cs b/Content.Server/Hands/Systems/HandsSystem.cs index 0f7b6ce3f9..4d47ea4a78 100644 --- a/Content.Server/Hands/Systems/HandsSystem.cs +++ b/Content.Server/Hands/Systems/HandsSystem.cs @@ -201,9 +201,6 @@ namespace Content.Server.Hands.Systems var holderVelocity = _physicsQuery.TryComp(entity, out var physics) ? physics.LinearVelocity : Vector2.Zero; var spreadMaxAngle = Angle.FromDegrees(DropHeldItemsSpread); - var fellEvent = new FellDownEvent(entity); - RaiseLocalEvent(entity, fellEvent); - foreach (var hand in entity.Comp.Hands.Keys) { if (!TryGetHeldItem(entity.AsNullable(), hand, out var heldEntity)) diff --git a/Content.Server/Implants/ChameleonControllerSystem.cs b/Content.Server/Implants/ChameleonControllerSystem.cs index 9e876f9399..930f2e3156 100644 --- a/Content.Server/Implants/ChameleonControllerSystem.cs +++ b/Content.Server/Implants/ChameleonControllerSystem.cs @@ -29,17 +29,17 @@ public sealed class ChameleonControllerSystem : SharedChameleonControllerSystem { base.Initialize(); - SubscribeLocalEvent(OnSelected); + SubscribeLocalEvent(OnSelected); SubscribeLocalEvent>(ChameleonControllerOutfitItemSelected); } - private void OnSelected(Entity ent, ref ChameleonControllerSelectedOutfitMessage args) + private void OnSelected(Entity ent, ref ChameleonControllerSelectedOutfitMessage args) { - if (!_delay.TryResetDelay(ent.Owner, true) || ent.Comp.ImplantedEntity == null || !HasComp(ent)) + if (!TryComp(ent, out var implantComp) || implantComp.ImplantedEntity == null || !_delay.TryResetDelay(ent.Owner, true)) return; - ChangeChameleonClothingToOutfit(ent.Comp.ImplantedEntity.Value, args.SelectedChameleonOutfit); + ChangeChameleonClothingToOutfit(implantComp.ImplantedEntity.Value, args.SelectedChameleonOutfit); } /// diff --git a/Content.Server/Implants/ImplanterSystem.cs b/Content.Server/Implants/ImplanterSystem.cs index 5023b1b3e4..48e83e4878 100644 --- a/Content.Server/Implants/ImplanterSystem.cs +++ b/Content.Server/Implants/ImplanterSystem.cs @@ -27,6 +27,7 @@ public sealed partial class ImplanterSystem : SharedImplanterSystem SubscribeLocalEvent(OnDraw); } + // TODO: This all needs to be moved to shared and predicted. private void OnImplanterAfterInteract(EntityUid uid, ImplanterComponent component, AfterInteractEvent args) { if (args.Target == null || !args.CanReach || args.Handled) diff --git a/Content.Server/Implants/RadioImplantSystem.cs b/Content.Server/Implants/RadioImplantSystem.cs index d9ba229057..c5ae1ce494 100644 --- a/Content.Server/Implants/RadioImplantSystem.cs +++ b/Content.Server/Implants/RadioImplantSystem.cs @@ -1,7 +1,6 @@ using Content.Server.Radio.Components; using Content.Shared.Implants; using Content.Shared.Implants.Components; -using Robust.Shared.Containers; namespace Content.Server.Implants; @@ -12,7 +11,7 @@ public sealed class RadioImplantSystem : EntitySystem base.Initialize(); SubscribeLocalEvent(OnImplantImplanted); - SubscribeLocalEvent(OnRemove); + SubscribeLocalEvent(OnImplantRemoved); } /// @@ -20,19 +19,16 @@ public sealed class RadioImplantSystem : EntitySystem /// private void OnImplantImplanted(Entity ent, ref ImplantImplantedEvent args) { - if (args.Implanted == null) - return; - - var activeRadio = EnsureComp(args.Implanted.Value); + var activeRadio = EnsureComp(args.Implanted); foreach (var channel in ent.Comp.RadioChannels) { if (activeRadio.Channels.Add(channel)) ent.Comp.ActiveAddedChannels.Add(channel); } - EnsureComp(args.Implanted.Value); + EnsureComp(args.Implanted); - var intrinsicRadioTransmitter = EnsureComp(args.Implanted.Value); + var intrinsicRadioTransmitter = EnsureComp(args.Implanted); foreach (var channel in ent.Comp.RadioChannels) { if (intrinsicRadioTransmitter.Channels.Add(channel)) @@ -43,9 +39,9 @@ public sealed class RadioImplantSystem : EntitySystem /// /// Removes intrinsic radio components once the Radio Implant is removed /// - private void OnRemove(Entity ent, ref EntGotRemovedFromContainerMessage args) + private void OnImplantRemoved(Entity ent, ref ImplantRemovedEvent args) { - if (TryComp(args.Container.Owner, out var activeRadioComponent)) + if (TryComp(args.Implanted, out var activeRadioComponent)) { foreach (var channel in ent.Comp.ActiveAddedChannels) { @@ -55,11 +51,11 @@ public sealed class RadioImplantSystem : EntitySystem if (activeRadioComponent.Channels.Count == 0) { - RemCompDeferred(args.Container.Owner); + RemCompDeferred(args.Implanted); } } - if (!TryComp(args.Container.Owner, out var radioTransmitterComponent)) + if (!TryComp(args.Implanted, out var radioTransmitterComponent)) return; foreach (var channel in ent.Comp.TransmitterAddedChannels) @@ -70,7 +66,7 @@ public sealed class RadioImplantSystem : EntitySystem if (radioTransmitterComponent.Channels.Count == 0 || activeRadioComponent?.Channels.Count == 0) { - RemCompDeferred(args.Container.Owner); + RemCompDeferred(args.Implanted); } } } diff --git a/Content.Server/Implants/SubdermalImplantSystem.cs b/Content.Server/Implants/SubdermalImplantSystem.cs index f0530358a6..582b9cb2ac 100644 --- a/Content.Server/Implants/SubdermalImplantSystem.cs +++ b/Content.Server/Implants/SubdermalImplantSystem.cs @@ -18,6 +18,7 @@ public sealed class SubdermalImplantSystem : SharedSubdermalImplantSystem SubscribeLocalEvent>(OnStoreRelay); } + // TODO: This shouldn't be in the SubdermalImplantSystem private void OnStoreRelay(EntityUid uid, StoreComponent store, ImplantRelayEvent implantRelay) { var args = implantRelay.Event; diff --git a/Content.Server/Kitchen/Components/SharpComponent.cs b/Content.Server/Kitchen/Components/SharpComponent.cs deleted file mode 100644 index c67c3b8a4d..0000000000 --- a/Content.Server/Kitchen/Components/SharpComponent.cs +++ /dev/null @@ -1,15 +0,0 @@ -namespace Content.Server.Kitchen.Components; - -/// -/// Applies to items that are capable of butchering entities, or -/// are otherwise sharp for some purpose. -/// -[RegisterComponent] -public sealed partial class SharpComponent : Component -{ - // TODO just make this a tool type. - public HashSet Butchering = new(); - - [DataField("butcherDelayModifier")] - public float ButcherDelayModifier = 1.0f; -} diff --git a/Content.Server/Kitchen/EntitySystems/KitchenSpikeSystem.cs b/Content.Server/Kitchen/EntitySystems/KitchenSpikeSystem.cs deleted file mode 100644 index 4ed05a3f16..0000000000 --- a/Content.Server/Kitchen/EntitySystems/KitchenSpikeSystem.cs +++ /dev/null @@ -1,292 +0,0 @@ -using Content.Server.Administration.Logs; -using Content.Server.Body.Systems; -using Content.Server.Kitchen.Components; -using Content.Server.Popups; -using Content.Shared.Chat; -using Content.Shared.Damage; -using Content.Shared.Database; -using Content.Shared.DoAfter; -using Content.Shared.DragDrop; -using Content.Shared.Humanoid; -using Content.Shared.IdentityManagement; -using Content.Shared.Interaction; -using Content.Shared.Interaction.Events; -using Content.Shared.Kitchen; -using Content.Shared.Kitchen.Components; -using Content.Shared.Mobs.Components; -using Content.Shared.Mobs.Systems; -using Content.Shared.Nutrition.Components; -using Content.Shared.Popups; -using Content.Shared.Storage; -using Robust.Server.GameObjects; -using Robust.Shared.Audio.Systems; -using Robust.Shared.Player; -using Robust.Shared.Random; -using static Content.Shared.Kitchen.Components.KitchenSpikeComponent; - -namespace Content.Server.Kitchen.EntitySystems -{ - public sealed class KitchenSpikeSystem : SharedKitchenSpikeSystem - { - [Dependency] private readonly PopupSystem _popupSystem = default!; - [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; - [Dependency] private readonly IAdminLogManager _logger = default!; - [Dependency] private readonly MobStateSystem _mobStateSystem = default!; - [Dependency] private readonly IRobustRandom _random = default!; - [Dependency] private readonly TransformSystem _transform = default!; - [Dependency] private readonly BodySystem _bodySystem = default!; - [Dependency] private readonly SharedAppearanceSystem _appearance = default!; - [Dependency] private readonly SharedAudioSystem _audio = default!; - [Dependency] private readonly MetaDataSystem _metaData = default!; - [Dependency] private readonly SharedSuicideSystem _suicide = default!; - - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnInteractUsing); - SubscribeLocalEvent(OnInteractHand); - SubscribeLocalEvent(OnDragDrop); - - //DoAfter - SubscribeLocalEvent(OnDoAfter); - - SubscribeLocalEvent(OnSuicideByEnvironment); - - SubscribeLocalEvent(OnButcherableCanDrop); - } - - private void OnButcherableCanDrop(Entity entity, ref CanDropDraggedEvent args) - { - args.Handled = true; - args.CanDrop |= entity.Comp.Type != ButcheringType.Knife; - } - - /// - /// TODO: Update this so it actually meatspikes the user instead of applying lethal damage to them. - /// - private void OnSuicideByEnvironment(Entity entity, ref SuicideByEnvironmentEvent args) - { - if (args.Handled) - return; - - if (!TryComp(args.Victim, out var damageableComponent)) - return; - - _suicide.ApplyLethalDamage((args.Victim, damageableComponent), "Piercing"); - var othersMessage = Loc.GetString("comp-kitchen-spike-suicide-other", - ("victim", Identity.Entity(args.Victim, EntityManager)), - ("this", entity)); - _popupSystem.PopupEntity(othersMessage, args.Victim, Filter.PvsExcept(args.Victim), true); - - var selfMessage = Loc.GetString("comp-kitchen-spike-suicide-self", - ("this", entity)); - _popupSystem.PopupEntity(selfMessage, args.Victim, args.Victim); - args.Handled = true; - } - - private void OnDoAfter(Entity entity, ref SpikeDoAfterEvent args) - { - if (args.Args.Target == null) - return; - - if (TryComp(args.Args.Target.Value, out var butcherable)) - butcherable.BeingButchered = false; - - if (args.Cancelled) - { - entity.Comp.InUse = false; - return; - } - - if (args.Handled) - return; - - if (Spikeable(entity, args.Args.User, args.Args.Target.Value, entity.Comp, butcherable)) - Spike(entity, args.Args.User, args.Args.Target.Value, entity.Comp); - - entity.Comp.InUse = false; - args.Handled = true; - } - - private void OnDragDrop(Entity entity, ref DragDropTargetEvent args) - { - if (args.Handled) - return; - - args.Handled = true; - - if (Spikeable(entity, args.User, args.Dragged, entity.Comp)) - TrySpike(entity, args.User, args.Dragged, entity.Comp); - } - - private void OnInteractHand(Entity entity, ref InteractHandEvent args) - { - if (args.Handled) - return; - - if (entity.Comp.PrototypesToSpawn?.Count > 0) - { - _popupSystem.PopupEntity(Loc.GetString("comp-kitchen-spike-knife-needed"), entity, args.User); - args.Handled = true; - } - } - - private void OnInteractUsing(Entity entity, ref InteractUsingEvent args) - { - if (args.Handled) - return; - - if (TryGetPiece(entity, args.User, args.Used)) - args.Handled = true; - } - - private void Spike(EntityUid uid, EntityUid userUid, EntityUid victimUid, - KitchenSpikeComponent? component = null, ButcherableComponent? butcherable = null) - { - if (!Resolve(uid, ref component) || !Resolve(victimUid, ref butcherable)) - return; - - var logImpact = LogImpact.Medium; - if (HasComp(victimUid)) - logImpact = LogImpact.Extreme; - - _logger.Add(LogType.Gib, logImpact, $"{ToPrettyString(userUid):user} kitchen spiked {ToPrettyString(victimUid):target}"); - - // TODO VERY SUS - component.PrototypesToSpawn = EntitySpawnCollection.GetSpawns(butcherable.SpawnedEntities, _random); - - // This feels not okay, but entity is getting deleted on "Spike", for now... - component.MeatSource1p = Loc.GetString("comp-kitchen-spike-remove-meat", ("victim", victimUid)); - component.MeatSource0 = Loc.GetString("comp-kitchen-spike-remove-meat-last", ("victim", victimUid)); - component.Victim = Name(victimUid); - - UpdateAppearance(uid, null, component); - - _popupSystem.PopupEntity(Loc.GetString("comp-kitchen-spike-kill", - ("user", Identity.Entity(userUid, EntityManager)), - ("victim", Identity.Entity(victimUid, EntityManager)), - ("this", uid)), - uid, PopupType.LargeCaution); - - _transform.SetCoordinates(victimUid, Transform(uid).Coordinates); - // THE WHAT? - // TODO: Need to be able to leave them on the spike to do DoT, see ss13. - var gibs = _bodySystem.GibBody(victimUid); - foreach (var gib in gibs) { - QueueDel(gib); - } - - _audio.PlayPvs(component.SpikeSound, uid); - } - - private bool TryGetPiece(EntityUid uid, EntityUid user, EntityUid used, - KitchenSpikeComponent? component = null, SharpComponent? sharp = null) - { - if (!Resolve(uid, ref component) || component.PrototypesToSpawn == null || component.PrototypesToSpawn.Count == 0) - return false; - - // Is using knife - if (!Resolve(used, ref sharp, false) ) - { - return false; - } - - var item = _random.PickAndTake(component.PrototypesToSpawn); - - var ent = Spawn(item, Transform(uid).Coordinates); - _metaData.SetEntityName(ent, - Loc.GetString("comp-kitchen-spike-meat-name", ("name", Name(ent)), ("victim", component.Victim))); - - if (component.PrototypesToSpawn.Count != 0) - _popupSystem.PopupEntity(component.MeatSource1p, uid, user, PopupType.MediumCaution); - else - { - UpdateAppearance(uid, null, component); - _popupSystem.PopupEntity(component.MeatSource0, uid, user, PopupType.MediumCaution); - } - - return true; - } - - private void UpdateAppearance(EntityUid uid, AppearanceComponent? appearance = null, KitchenSpikeComponent? component = null) - { - if (!Resolve(uid, ref component, ref appearance, false)) - return; - - _appearance.SetData(uid, KitchenSpikeVisuals.Status, component.PrototypesToSpawn?.Count > 0 ? KitchenSpikeStatus.Bloody : KitchenSpikeStatus.Empty, appearance); - } - - private bool Spikeable(EntityUid uid, EntityUid userUid, EntityUid victimUid, - KitchenSpikeComponent? component = null, ButcherableComponent? butcherable = null) - { - if (!Resolve(uid, ref component)) - return false; - - if (component.PrototypesToSpawn?.Count > 0) - { - _popupSystem.PopupEntity(Loc.GetString("comp-kitchen-spike-deny-collect", ("this", uid)), uid, userUid); - return false; - } - - if (!Resolve(victimUid, ref butcherable, false)) - { - _popupSystem.PopupEntity(Loc.GetString("comp-kitchen-spike-deny-butcher", ("victim", Identity.Entity(victimUid, EntityManager)), ("this", uid)), victimUid, userUid); - return false; - } - - switch (butcherable.Type) - { - case ButcheringType.Spike: - return true; - case ButcheringType.Knife: - _popupSystem.PopupEntity(Loc.GetString("comp-kitchen-spike-deny-butcher-knife", ("victim", Identity.Entity(victimUid, EntityManager)), ("this", uid)), victimUid, userUid); - return false; - default: - _popupSystem.PopupEntity(Loc.GetString("comp-kitchen-spike-deny-butcher", ("victim", Identity.Entity(victimUid, EntityManager)), ("this", uid)), victimUid, userUid); - return false; - } - } - - public bool TrySpike(EntityUid uid, EntityUid userUid, EntityUid victimUid, KitchenSpikeComponent? component = null, - ButcherableComponent? butcherable = null, MobStateComponent? mobState = null) - { - if (!Resolve(uid, ref component) || component.InUse || - !Resolve(victimUid, ref butcherable) || butcherable.BeingButchered) - return false; - - // THE WHAT? (again) - // Prevent dead from being spiked TODO: Maybe remove when rounds can be played and DOT is implemented - if (Resolve(victimUid, ref mobState, false) && - _mobStateSystem.IsAlive(victimUid, mobState)) - { - _popupSystem.PopupEntity(Loc.GetString("comp-kitchen-spike-deny-not-dead", ("victim", Identity.Entity(victimUid, EntityManager))), - victimUid, userUid); - return true; - } - - if (userUid != victimUid) - { - _popupSystem.PopupEntity(Loc.GetString("comp-kitchen-spike-begin-hook-victim", ("user", Identity.Entity(userUid, EntityManager)), ("this", uid)), victimUid, victimUid, PopupType.LargeCaution); - } - // TODO: make it work when SuicideEvent is implemented - // else - // _popupSystem.PopupEntity(Loc.GetString("comp-kitchen-spike-begin-hook-self", ("this", uid)), victimUid, Filter.Pvs(uid)); // This is actually unreachable and should be in SuicideEvent - - butcherable.BeingButchered = true; - component.InUse = true; - - var doAfterArgs = new DoAfterArgs(EntityManager, userUid, component.SpikeDelay + butcherable.ButcherDelay, new SpikeDoAfterEvent(), uid, target: victimUid, used: uid) - { - BreakOnDamage = true, - BreakOnMove = true, - NeedHand = true, - BreakOnDropItem = false, - }; - - _doAfter.TryStartDoAfter(doAfterArgs); - - return true; - } - } -} diff --git a/Content.Server/Kitchen/EntitySystems/SharpSystem.cs b/Content.Server/Kitchen/EntitySystems/SharpSystem.cs index 0275e4d1a7..ab6e1db494 100644 --- a/Content.Server/Kitchen/EntitySystems/SharpSystem.cs +++ b/Content.Server/Kitchen/EntitySystems/SharpSystem.cs @@ -1,5 +1,4 @@ using Content.Server.Body.Systems; -using Content.Server.Kitchen.Components; using Content.Shared.Administration.Logs; using Content.Shared.Body.Components; using Content.Shared.Database; @@ -8,6 +7,7 @@ using Content.Shared.DoAfter; using Content.Shared.IdentityManagement; using Content.Shared.Interaction; using Content.Shared.Kitchen; +using Content.Shared.Kitchen.Components; using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; using Content.Shared.Nutrition.Components; diff --git a/Content.Server/Lathe/LatheSystem.cs b/Content.Server/Lathe/LatheSystem.cs index 6ecd5bdf62..02abb07791 100644 --- a/Content.Server/Lathe/LatheSystem.cs +++ b/Content.Server/Lathe/LatheSystem.cs @@ -74,6 +74,9 @@ namespace Content.Server.Lathe SubscribeLocalEvent(OnLatheQueueRecipeMessage); SubscribeLocalEvent(OnLatheSyncRequestMessage); + SubscribeLocalEvent(OnLatheDeleteRequestMessage); + SubscribeLocalEvent(OnLatheMoveRequestMessage); + SubscribeLocalEvent(OnLatheAbortFabricationMessage); SubscribeLocalEvent((u, c, _) => UpdateUserInterfaceState(u, c)); SubscribeLocalEvent(OnMaterialAmountChanged); @@ -167,23 +170,32 @@ namespace Content.Server.Lathe return ev.Recipes.ToList(); } - public bool TryAddToQueue(EntityUid uid, LatheRecipePrototype recipe, LatheComponent? component = null) + public bool TryAddToQueue(EntityUid uid, LatheRecipePrototype recipe, int quantity, LatheComponent? component = null) { if (!Resolve(uid, ref component)) return false; - if (!CanProduce(uid, recipe, 1, component)) + if (quantity <= 0) + return false; + quantity = int.Min(quantity, MaxItemsPerRequest); + + if (!CanProduce(uid, recipe, quantity, component)) return false; foreach (var (mat, amount) in recipe.Materials) { var adjustedAmount = recipe.ApplyMaterialDiscount - ? (int) (-amount * component.MaterialUseMultiplier) + ? (int)(-amount * component.MaterialUseMultiplier) : -amount; + adjustedAmount *= quantity; _materialStorage.TryChangeMaterialAmount(uid, mat, adjustedAmount); } - component.Queue.Enqueue(recipe); + + if (component.Queue.Last is { } node && node.ValueRef.Recipe == recipe.ID) + node.ValueRef.ItemsRequested += quantity; + else + component.Queue.AddLast(new LatheRecipeBatch(recipe.ID, 0, quantity)); return true; } @@ -195,8 +207,11 @@ namespace Content.Server.Lathe if (component.CurrentRecipe != null || component.Queue.Count <= 0 || !this.IsPowered(uid, EntityManager)) return false; - var recipeProto = component.Queue.Dequeue(); - var recipe = _proto.Index(recipeProto); + var batch = component.Queue.First(); + batch.ItemsPrinted++; + if (batch.ItemsPrinted >= batch.ItemsRequested || batch.ItemsPrinted < 0) // Rollover sanity check + component.Queue.RemoveFirst(); + var recipe = _proto.Index(batch.Recipe); var time = _reagentSpeed.ApplySpeed(uid, recipe.CompleteTime) * component.TimeMultiplier; @@ -271,8 +286,8 @@ namespace Content.Server.Lathe return; var producing = component.CurrentRecipe; - if (producing == null && component.Queue.TryPeek(out var next)) - producing = next; + if (producing == null && component.Queue.First is { } node) + producing = node.Value.Recipe; var state = new LatheUpdateState(GetAvailableRecipes(uid, component), component.Queue.ToArray(), producing); _uiSys.SetUiState(uid, LatheUiKey.Key, state); @@ -349,12 +364,10 @@ namespace Content.Server.Lathe { if (!args.Powered) { - RemComp(uid); - UpdateRunningAppearance(uid, false); + AbortProduction(uid); } - else if (component.CurrentRecipe != null) + else { - EnsureComp(uid); TryStartProducing(uid, component); } } @@ -416,25 +429,46 @@ namespace Content.Server.Lathe return GetAvailableRecipes(uid, component).Contains(recipe.ID); } + public void AbortProduction(EntityUid uid, LatheComponent? component = null) + { + if (!Resolve(uid, ref component)) + return; + + if (component.CurrentRecipe != null) + { + if (component.Queue.Count > 0) + { + // Batch abandoned while printing last item, need to create a one-item batch + var batch = component.Queue.First(); + if (batch.Recipe != component.CurrentRecipe) + { + var newBatch = new LatheRecipeBatch(component.CurrentRecipe.Value, 0, 1); + component.Queue.AddFirst(newBatch); + } + else if (batch.ItemsPrinted > 0) + { + batch.ItemsPrinted--; + } + } + + component.CurrentRecipe = null; + } + RemCompDeferred(uid); + UpdateUserInterfaceState(uid, component); + UpdateRunningAppearance(uid, false); + } + #region UI Messages private void OnLatheQueueRecipeMessage(EntityUid uid, LatheComponent component, LatheQueueRecipeMessage args) { if (_proto.TryIndex(args.ID, out LatheRecipePrototype? recipe)) { - var count = 0; - for (var i = 0; i < args.Quantity; i++) - { - if (TryAddToQueue(uid, recipe, component)) - count++; - else - break; - } - if (count > 0) + if (TryAddToQueue(uid, recipe, args.Quantity, component)) { _adminLogger.Add(LogType.Action, LogImpact.Low, - $"{ToPrettyString(args.Actor):player} queued {count} {GetRecipeName(recipe)} at {ToPrettyString(uid):lathe}"); + $"{ToPrettyString(args.Actor):player} queued {args.Quantity} {GetRecipeName(recipe)} at {ToPrettyString(uid):lathe}"); } } TryStartProducing(uid, component); @@ -445,6 +479,92 @@ namespace Content.Server.Lathe { UpdateUserInterfaceState(uid, component); } + + /// + /// Removes a batch from the batch queue by index. + /// If the index given does not exist or is outside of the bounds of the lathe's batch queue, nothing happens. + /// + /// The lathe whose queue is being altered. + /// + /// + public void OnLatheDeleteRequestMessage(EntityUid uid, LatheComponent component, ref LatheDeleteRequestMessage args) + { + if (args.Index < 0 || args.Index >= component.Queue.Count) + return; + + var node = component.Queue.First; + for (int i = 0; i < args.Index; i++) + node = node?.Next; + + if (node == null) // Shouldn't happen with checks above. + return; + + var batch = node.Value; + _adminLogger.Add(LogType.Action, + LogImpact.Low, + $"{ToPrettyString(args.Actor):player} deleted a lathe job for ({batch.ItemsPrinted}/{batch.ItemsRequested}) {GetRecipeName(batch.Recipe)} at {ToPrettyString(uid):lathe}"); + + component.Queue.Remove(node); + UpdateUserInterfaceState(uid, component); + } + + public void OnLatheMoveRequestMessage(EntityUid uid, LatheComponent component, ref LatheMoveRequestMessage args) + { + if (args.Change == 0 || args.Index < 0 || args.Index >= component.Queue.Count) + return; + + // New index must be within the bounds of the batch. + var newIndex = args.Index + args.Change; + if (newIndex < 0 || newIndex >= component.Queue.Count) + return; + + var node = component.Queue.First; + for (int i = 0; i < args.Index; i++) + node = node?.Next; + + if (node == null) // Something went wrong. + return; + + if (args.Change > 0) + { + var newRelativeNode = node.Next; + for (int i = 1; i < args.Change; i++) // 1-indexed: starting from Next + newRelativeNode = newRelativeNode?.Next; + + if (newRelativeNode == null) // Something went wrong. + return; + + component.Queue.Remove(node); + component.Queue.AddAfter(newRelativeNode, node); + } + else + { + var newRelativeNode = node.Previous; + for (int i = 1; i < -args.Change; i++) // 1-indexed: starting from Previous + newRelativeNode = newRelativeNode?.Previous; + + if (newRelativeNode == null) // Something went wrong. + return; + + component.Queue.Remove(node); + component.Queue.AddBefore(newRelativeNode, node); + } + + UpdateUserInterfaceState(uid, component); + } + + public void OnLatheAbortFabricationMessage(EntityUid uid, LatheComponent component, ref LatheAbortFabricationMessage args) + { + if (component.CurrentRecipe == null) + return; + + _adminLogger.Add(LogType.Action, + LogImpact.Low, + $"{ToPrettyString(args.Actor):player} aborted printing {GetRecipeName(component.CurrentRecipe.Value)} at {ToPrettyString(uid):lathe}"); + + component.CurrentRecipe = null; + FinishProducing(uid, component); + } #endregion } } diff --git a/Content.Server/Mindshield/MindShieldSystem.cs b/Content.Server/Mindshield/MindShieldSystem.cs index c04fb12027..bc5b65159b 100644 --- a/Content.Server/Mindshield/MindShieldSystem.cs +++ b/Content.Server/Mindshield/MindShieldSystem.cs @@ -27,7 +27,7 @@ public sealed class MindShieldSystem : EntitySystem base.Initialize(); SubscribeLocalEvent(OnImplantImplanted); - SubscribeLocalEvent(OnImplantDraw); + SubscribeLocalEvent(OnImplantRemoved); } private void OnImplantImplanted(Entity ent, ref ImplantImplantedEvent ev) @@ -35,8 +35,8 @@ public sealed class MindShieldSystem : EntitySystem if (ev.Implanted == null) return; - EnsureComp(ev.Implanted.Value); - MindShieldRemovalCheck(ev.Implanted.Value, ev.Implant); + EnsureComp(ev.Implanted); + MindShieldRemovalCheck(ev.Implanted, ev.Implant); } /// @@ -58,9 +58,9 @@ public sealed class MindShieldSystem : EntitySystem } } - private void OnImplantDraw(Entity ent, ref EntGotRemovedFromContainerMessage args) + private void OnImplantRemoved(Entity ent, ref ImplantRemovedEvent args) { - RemComp(args.Container.Owner); + RemComp(args.Implanted); } } diff --git a/Content.Server/Morgue/Components/ActiveCrematoriumComponent.cs b/Content.Server/Morgue/Components/ActiveCrematoriumComponent.cs deleted file mode 100644 index e5180cd892..0000000000 --- a/Content.Server/Morgue/Components/ActiveCrematoriumComponent.cs +++ /dev/null @@ -1,11 +0,0 @@ -namespace Content.Server.Morgue.Components; - -/// -/// used to track actively cooking crematoriums -/// -[RegisterComponent] -public sealed partial class ActiveCrematoriumComponent : Component -{ - [ViewVariables(VVAccess.ReadWrite)] - public float Accumulator = 0; -} diff --git a/Content.Server/Morgue/Components/CrematoriumComponent.cs b/Content.Server/Morgue/Components/CrematoriumComponent.cs deleted file mode 100644 index 7e660479bf..0000000000 --- a/Content.Server/Morgue/Components/CrematoriumComponent.cs +++ /dev/null @@ -1,22 +0,0 @@ -using Robust.Shared.Audio; - -namespace Content.Server.Morgue.Components; - -[RegisterComponent] -public sealed partial class CrematoriumComponent : Component -{ - /// - /// The time it takes to cook in second - /// - [ViewVariables(VVAccess.ReadWrite)] - public int CookTime = 5; - - [DataField("cremateStartSound")] - public SoundSpecifier CremateStartSound = new SoundPathSpecifier("/Audio/Items/Lighters/lighter1.ogg"); - - [DataField("crematingSound")] - public SoundSpecifier CrematingSound = new SoundPathSpecifier("/Audio/Effects/burning.ogg"); - - [DataField("cremateFinishSound")] - public SoundSpecifier CremateFinishSound = new SoundPathSpecifier("/Audio/Machines/ding.ogg"); -} diff --git a/Content.Server/Morgue/CrematoriumSystem.cs b/Content.Server/Morgue/CrematoriumSystem.cs index 387be509e9..803b392fc7 100644 --- a/Content.Server/Morgue/CrematoriumSystem.cs +++ b/Content.Server/Morgue/CrematoriumSystem.cs @@ -1,195 +1,58 @@ using Content.Server.Ghost; -using Content.Server.Morgue.Components; -using Content.Server.Storage.Components; -using Content.Server.Storage.EntitySystems; -using Content.Shared.Database; -using Content.Shared.Examine; using Content.Shared.IdentityManagement; using Content.Shared.Interaction.Events; -using Content.Shared.Mind; using Content.Shared.Morgue; +using Content.Shared.Morgue.Components; using Content.Shared.Popups; -using Content.Shared.Standing; -using Content.Shared.Storage; -using Content.Shared.Storage.Components; -using Content.Shared.Verbs; -using Robust.Shared.Audio.Systems; -using Robust.Shared.Containers; using Robust.Shared.Player; namespace Content.Server.Morgue; - -public sealed class CrematoriumSystem : EntitySystem +public sealed class CrematoriumSystem : SharedCrematoriumSystem { - [Dependency] private readonly SharedAudioSystem _audio = default!; - [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly GhostSystem _ghostSystem = default!; - [Dependency] private readonly EntityStorageSystem _entityStorage = default!; - [Dependency] private readonly SharedPopupSystem _popup = default!; - [Dependency] private readonly StandingStateSystem _standing = default!; - [Dependency] private readonly SharedMindSystem _minds = default!; - [Dependency] private readonly SharedContainerSystem _containers = default!; public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnExamine); - SubscribeLocalEvent>(AddCremateVerb); SubscribeLocalEvent(OnSuicideByEnvironment); - SubscribeLocalEvent(OnAttemptOpen); } - private void OnExamine(EntityUid uid, CrematoriumComponent component, ExaminedEvent args) - { - if (!TryComp(uid, out var appearance)) - return; - - using (args.PushGroup(nameof(CrematoriumComponent))) - { - if (_appearance.TryGetData(uid, CrematoriumVisuals.Burning, out var isBurning, appearance) && - isBurning) - { - args.PushMarkup(Loc.GetString("crematorium-entity-storage-component-on-examine-details-is-burning", - ("owner", uid))); - } - - if (_appearance.TryGetData(uid, StorageVisuals.HasContents, out var hasContents, appearance) && - hasContents) - { - args.PushMarkup(Loc.GetString("crematorium-entity-storage-component-on-examine-details-has-contents")); - } - else - { - args.PushMarkup(Loc.GetString("crematorium-entity-storage-component-on-examine-details-empty")); - } - } - } - - private void OnAttemptOpen(EntityUid uid, ActiveCrematoriumComponent component, ref StorageOpenAttemptEvent args) - { - args.Cancelled = true; - } - - private void AddCremateVerb(EntityUid uid, CrematoriumComponent component, GetVerbsEvent args) - { - if (!TryComp(uid, out var storage)) - return; - - if (!args.CanAccess || !args.CanInteract || args.Hands == null || storage.Open) - return; - - if (HasComp(uid)) - return; - - AlternativeVerb verb = new() - { - Text = Loc.GetString("cremate-verb-get-data-text"), - // TODO VERB ICON add flame/burn symbol? - Act = () => TryCremate(uid, component, storage), - Impact = LogImpact.High // could be a body? or evidence? I dunno. - }; - args.Verbs.Add(verb); - } - - public bool Cremate(EntityUid uid, CrematoriumComponent? component = null, EntityStorageComponent? storage = null) - { - if (!Resolve(uid, ref component, ref storage)) - return false; - - if (HasComp(uid)) - return false; - - _audio.PlayPvs(component.CremateStartSound, uid); - _appearance.SetData(uid, CrematoriumVisuals.Burning, true); - - _audio.PlayPvs(component.CrematingSound, uid); - - AddComp(uid); - return true; - } - - public bool TryCremate(EntityUid uid, CrematoriumComponent? component = null, EntityStorageComponent? storage = null) - { - if (!Resolve(uid, ref component, ref storage)) - return false; - - if (storage.Open || storage.Contents.ContainedEntities.Count < 1) - return false; - - return Cremate(uid, component, storage); - } - - private void FinishCooking(EntityUid uid, CrematoriumComponent component, EntityStorageComponent? storage = null) - { - if (!Resolve(uid, ref storage)) - return; - - _appearance.SetData(uid, CrematoriumVisuals.Burning, false); - RemComp(uid); - - if (storage.Contents.ContainedEntities.Count > 0) - { - for (var i = storage.Contents.ContainedEntities.Count - 1; i >= 0; i--) - { - var item = storage.Contents.ContainedEntities[i]; - _containers.Remove(item, storage.Contents); - Del(item); - } - var ash = Spawn("Ash", Transform(uid).Coordinates); - _containers.Insert(ash, storage.Contents); - } - - _entityStorage.OpenStorage(uid, storage); - _audio.PlayPvs(component.CremateFinishSound, uid); - } - - private void OnSuicideByEnvironment(EntityUid uid, CrematoriumComponent component, SuicideByEnvironmentEvent args) + private void OnSuicideByEnvironment(Entity ent, ref SuicideByEnvironmentEvent args) { if (args.Handled) return; var victim = args.Victim; - if (TryComp(victim, out ActorComponent? actor) && _minds.TryGetMind(victim, out var mindId, out var mind)) + if (HasComp(victim) && Mind.TryGetMind(victim, out var mindId, out var mind)) { _ghostSystem.OnGhostAttempt(mindId, false, mind: mind); if (mind.OwnedEntity is { Valid: true } entity) { - _popup.PopupEntity(Loc.GetString("crematorium-entity-storage-component-suicide-message"), entity); + Popup.PopupEntity(Loc.GetString("crematorium-entity-storage-component-suicide-message"), entity); } } - _popup.PopupEntity(Loc.GetString("crematorium-entity-storage-component-suicide-message-others", + Popup.PopupEntity(Loc.GetString("crematorium-entity-storage-component-suicide-message-others", ("victim", Identity.Entity(victim, EntityManager))), - victim, Filter.PvsExcept(victim), true, PopupType.LargeCaution); + victim, + Filter.PvsExcept(victim), + true, + PopupType.LargeCaution); - if (_entityStorage.CanInsert(victim, uid)) + if (EntityStorage.CanInsert(victim, ent.Owner)) { - _entityStorage.CloseStorage(uid); - _standing.Down(victim, false); - _entityStorage.Insert(victim, uid); + EntityStorage.CloseStorage(ent.Owner); + Standing.Down(victim, false); + EntityStorage.Insert(victim, ent.Owner); } else { + EntityStorage.CloseStorage(ent.Owner); Del(victim); } - _entityStorage.CloseStorage(uid); - Cremate(uid, component); + Cremate(ent.AsNullable()); args.Handled = true; } - - public override void Update(float frameTime) - { - base.Update(frameTime); - - var query = EntityQueryEnumerator(); - while (query.MoveNext(out var uid, out var act, out var crem)) - { - act.Accumulator += frameTime; - - if (act.Accumulator >= crem.CookTime) - FinishCooking(uid, crem); - } - } } diff --git a/Content.Server/Morgue/MorgueSystem.cs b/Content.Server/Morgue/MorgueSystem.cs index 92ed16a06b..a97ccd04cd 100644 --- a/Content.Server/Morgue/MorgueSystem.cs +++ b/Content.Server/Morgue/MorgueSystem.cs @@ -1,95 +1,46 @@ -using Content.Server.Storage.Components; -using Content.Shared.Examine; -using Content.Shared.Mobs.Components; using Content.Shared.Morgue; using Content.Shared.Morgue.Components; +using Content.Shared.Storage.Components; using Robust.Shared.Audio.Systems; -using Robust.Shared.Player; +using Robust.Shared.Timing; namespace Content.Server.Morgue; -public sealed class MorgueSystem : EntitySystem +public sealed class MorgueSystem : SharedMorgueSystem { - [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnExamine); + SubscribeLocalEvent(OnMapInit); } - /// - /// Handles the examination text for looking at a morgue. - /// - private void OnExamine(Entity ent, ref ExaminedEvent args) + private void OnMapInit(Entity ent, ref MapInitEvent args) { - if (!args.IsInDetailsRange) - return; - - _appearance.TryGetData(ent.Owner, MorgueVisuals.Contents, out var contents); - - var text = contents switch - { - MorgueContents.HasSoul => "morgue-entity-storage-component-on-examine-details-body-has-soul", - MorgueContents.HasContents => "morgue-entity-storage-component-on-examine-details-has-contents", - MorgueContents.HasMob => "morgue-entity-storage-component-on-examine-details-body-has-no-soul", - _ => "morgue-entity-storage-component-on-examine-details-empty" - }; - - args.PushMarkup(Loc.GetString(text)); + ent.Comp.NextBeep = _timing.CurTime + ent.Comp.NextBeep; } /// - /// Updates data periodically in case something died/got deleted in the morgue. - /// - private void CheckContents(EntityUid uid, MorgueComponent? morgue = null, EntityStorageComponent? storage = null, AppearanceComponent? app = null) - { - if (!Resolve(uid, ref morgue, ref storage, ref app)) - return; - - if (storage.Contents.ContainedEntities.Count == 0) - { - _appearance.SetData(uid, MorgueVisuals.Contents, MorgueContents.Empty); - return; - } - - var hasMob = false; - - foreach (var ent in storage.Contents.ContainedEntities) - { - if (!hasMob && HasComp(ent)) - hasMob = true; - - if (HasComp(ent)) - { - _appearance.SetData(uid, MorgueVisuals.Contents, MorgueContents.HasSoul, app); - return; - } - } - - _appearance.SetData(uid, MorgueVisuals.Contents, hasMob ? MorgueContents.HasMob : MorgueContents.HasContents, app); - } - - /// - /// Handles the periodic beeping that morgues do when a live body is inside. + /// Handles the periodic beeping that morgues do when a live body is inside. /// public override void Update(float frameTime) { base.Update(frameTime); + var curTime = _timing.CurTime; var query = EntityQueryEnumerator(); while (query.MoveNext(out var uid, out var comp, out var storage, out var appearance)) { - comp.AccumulatedFrameTime += frameTime; - - CheckContents(uid, comp, storage); - - if (comp.AccumulatedFrameTime < comp.BeepTime) + if (curTime < comp.NextBeep) continue; - comp.AccumulatedFrameTime -= comp.BeepTime; + comp.NextBeep += comp.BeepTime; + + CheckContents(uid, comp, storage); if (comp.DoSoulBeep && _appearance.TryGetData(uid, MorgueVisuals.Contents, out var contents, appearance) && contents == MorgueContents.HasSoul) { diff --git a/Content.Server/NPC/Systems/NPCUtilitySystem.cs b/Content.Server/NPC/Systems/NPCUtilitySystem.cs index 6de26cd056..813626a1c4 100644 --- a/Content.Server/NPC/Systems/NPCUtilitySystem.cs +++ b/Content.Server/NPC/Systems/NPCUtilitySystem.cs @@ -1,4 +1,3 @@ -using Content.Server.Atmos.Components; using Content.Server.Fluids.EntitySystems; using Content.Server.Hands.Systems; using Content.Server.NPC.Queries; @@ -6,20 +5,18 @@ using Content.Server.NPC.Queries.Considerations; using Content.Server.NPC.Queries.Curves; using Content.Server.NPC.Queries.Queries; using Content.Server.Nutrition.Components; -using Content.Server.Nutrition.EntitySystems; -using Content.Server.Storage.Components; using Content.Server.Temperature.Components; using Content.Shared.Chemistry.EntitySystems; using Content.Shared.Damage; using Content.Shared.Examine; using Content.Shared.Fluids.Components; -using Content.Shared.Hands.Components; using Content.Shared.Inventory; using Content.Shared.Mobs; using Content.Shared.Mobs.Systems; using Content.Shared.NPC.Systems; using Content.Shared.Nutrition.Components; using Content.Shared.Nutrition.EntitySystems; +using Content.Shared.Storage.Components; using Content.Shared.Stunnable; using Content.Shared.Tools.Systems; using Content.Shared.Turrets; @@ -31,6 +28,7 @@ using Microsoft.Extensions.ObjectPool; using Robust.Server.Containers; using Robust.Shared.Prototypes; using Robust.Shared.Utility; +using Content.Shared.Atmos.Components; using System.Linq; namespace Content.Server.NPC.Systems; @@ -42,14 +40,12 @@ public sealed class NPCUtilitySystem : EntitySystem { [Dependency] private readonly IPrototypeManager _proto = default!; [Dependency] private readonly ContainerSystem _container = default!; - [Dependency] private readonly DrinkSystem _drink = default!; [Dependency] private readonly EntityLookupSystem _lookup = default!; [Dependency] private readonly HandsSystem _hands = default!; [Dependency] private readonly InventorySystem _inventory = default!; [Dependency] private readonly IngestionSystem _ingestion = default!; [Dependency] private readonly MobStateSystem _mobState = default!; [Dependency] private readonly NpcFactionSystem _npcFaction = default!; - [Dependency] private readonly OpenableSystem _openable = default!; [Dependency] private readonly PuddleSystem _puddle = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] private readonly SharedSolutionContainerSystem _solutions = default!; diff --git a/Content.Server/Nutrition/EntitySystems/CreamPieSystem.cs b/Content.Server/Nutrition/EntitySystems/CreamPieSystem.cs index e85393e6f7..7164c701f5 100644 --- a/Content.Server/Nutrition/EntitySystems/CreamPieSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/CreamPieSystem.cs @@ -21,12 +21,13 @@ namespace Content.Server.Nutrition.EntitySystems [UsedImplicitly] public sealed class CreamPieSystem : SharedCreamPieSystem { - [Dependency] private readonly SharedSolutionContainerSystem _solutions = default!; - [Dependency] private readonly PuddleSystem _puddle = default!; + [Dependency] private readonly IngestionSystem _ingestion = default!; [Dependency] private readonly ItemSlotsSystem _itemSlots = default!; - [Dependency] private readonly TriggerSystem _trigger = default!; - [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly PopupSystem _popup = default!; + [Dependency] private readonly PuddleSystem _puddle = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedSolutionContainerSystem _solutions = default!; + [Dependency] private readonly TriggerSystem _trigger = default!; public override void Initialize() { @@ -39,26 +40,23 @@ namespace Content.Server.Nutrition.EntitySystems SubscribeLocalEvent(OnRejuvenate); } - protected override void SplattedCreamPie(EntityUid uid, CreamPieComponent creamPie) + protected override void SplattedCreamPie(Entity entity) { // The entity is deleted, so play the sound at its position rather than parenting - var coordinates = Transform(uid).Coordinates; - _audio.PlayPvs(_audio.ResolveSound(creamPie.Sound), coordinates, AudioParams.Default.WithVariation(0.125f)); + var coordinates = Transform(entity).Coordinates; + _audio.PlayPvs(_audio.ResolveSound(entity.Comp1.Sound), coordinates, AudioParams.Default.WithVariation(0.125f)); - if (TryComp(uid, out FoodComponent? foodComp)) + if (Resolve(entity, ref entity.Comp2, false)) { - if (_solutions.TryGetSolution(uid, foodComp.Solution, out _, out var solution)) - { - _puddle.TrySpillAt(uid, solution, out _, false); - } - foreach (var trash in foodComp.Trash) - { - Spawn(trash, Transform(uid).Coordinates); - } - } - ActivatePayload(uid); + if (_solutions.TryGetSolution(entity.Owner, entity.Comp2.Solution, out _, out var solution)) + _puddle.TrySpillAt(entity.Owner, solution, out _, false); - QueueDel(uid); + _ingestion.SpawnTrash((entity, entity.Comp2)); + } + + ActivatePayload(entity); + + QueueDel(entity); } private void OnConsume(Entity entity, ref ConsumeDoAfterEvent args) diff --git a/Content.Server/Nutrition/EntitySystems/SmokingSystem.Vape.cs b/Content.Server/Nutrition/EntitySystems/SmokingSystem.Vape.cs index 5de6a5a631..6905979a5f 100644 --- a/Content.Server/Nutrition/EntitySystems/SmokingSystem.Vape.cs +++ b/Content.Server/Nutrition/EntitySystems/SmokingSystem.Vape.cs @@ -42,7 +42,7 @@ namespace Content.Server.Nutrition.EntitySystems if (!args.CanReach || !_solutionContainerSystem.TryGetRefillableSolution(entity.Owner, out _, out var solution) || !HasComp(args.Target) - || _ingestion.HasMouthAvailable(args.Target.Value, args.User) + || !_ingestion.HasMouthAvailable(args.Target.Value, args.User) ) { return; diff --git a/Content.Server/Objectives/Systems/PickObjectiveTargetSystem.cs b/Content.Server/Objectives/Systems/PickObjectiveTargetSystem.cs index 0fa20c27e5..b3075b2274 100644 --- a/Content.Server/Objectives/Systems/PickObjectiveTargetSystem.cs +++ b/Content.Server/Objectives/Systems/PickObjectiveTargetSystem.cs @@ -16,8 +16,6 @@ public sealed class PickObjectiveTargetSystem : EntitySystem { [Dependency] private readonly TargetObjectiveSystem _target = default!; [Dependency] private readonly SharedMindSystem _mind = default!; - [Dependency] private readonly IRobustRandom _random = default!; - [Dependency] private readonly TraitorRuleSystem _traitorRule = default!; public override void Initialize() { diff --git a/Content.Server/Payload/EntitySystems/PayloadSystem.cs b/Content.Server/Payload/EntitySystems/PayloadSystem.cs index 11e97c5b93..542c3559d5 100644 --- a/Content.Server/Payload/EntitySystems/PayloadSystem.cs +++ b/Content.Server/Payload/EntitySystems/PayloadSystem.cs @@ -150,7 +150,9 @@ public sealed class PayloadSystem : EntitySystem private void HandleChemicalPayloadTrigger(Entity entity, ref TriggerEvent args) { - // TODO: Adjust to the new trigger system + if (args.Key != null && !entity.Comp.KeysIn.Contains(args.Key)) + return; + if (entity.Comp.BeakerSlotA.Item is not EntityUid beakerA || entity.Comp.BeakerSlotB.Item is not EntityUid beakerB || !TryComp(beakerA, out FitsInDispenserComponent? compA) diff --git a/Content.Server/Polymorph/Components/PolymorphedEntityComponent.cs b/Content.Server/Polymorph/Components/PolymorphedEntityComponent.cs index 7620203a86..03ab7b6c1f 100644 --- a/Content.Server/Polymorph/Components/PolymorphedEntityComponent.cs +++ b/Content.Server/Polymorph/Components/PolymorphedEntityComponent.cs @@ -18,7 +18,13 @@ public sealed partial class PolymorphedEntityComponent : Component /// The original entity that the player will revert back into /// [DataField(required: true)] - public EntityUid Parent; + public EntityUid? Parent; + + /// + /// Whether this polymorph has been reverted. + /// + [DataField] + public bool Reverted; /// /// The amount of time that has passed since the entity was created diff --git a/Content.Server/Polymorph/Systems/PolymorphSystem.cs b/Content.Server/Polymorph/Systems/PolymorphSystem.cs index d0f8b4e8fc..b9453d2924 100644 --- a/Content.Server/Polymorph/Systems/PolymorphSystem.cs +++ b/Content.Server/Polymorph/Systems/PolymorphSystem.cs @@ -55,6 +55,7 @@ public sealed partial class PolymorphSystem : EntitySystem SubscribeLocalEvent(OnBeforeFullySliced); SubscribeLocalEvent(OnDestruction); + SubscribeLocalEvent(OnPolymorphedTerminating); InitializeMap(); } @@ -127,12 +128,11 @@ public sealed partial class PolymorphSystem : EntitySystem private void OnBeforeFullySliced(Entity ent, ref BeforeFullySlicedEvent args) { - var (_, comp) = ent; - if (comp.Configuration.RevertOnEat) - { - args.Cancel(); - Revert((ent, ent)); - } + if (ent.Comp.Reverted || !ent.Comp.Configuration.RevertOnEat) + return; + + args.Cancel(); + Revert((ent, ent)); } /// @@ -141,10 +141,23 @@ public sealed partial class PolymorphSystem : EntitySystem /// private void OnDestruction(Entity ent, ref DestructionEventArgs args) { - if (ent.Comp.Configuration.RevertOnDeath) - { - Revert((ent, ent)); - } + if (ent.Comp.Reverted || !ent.Comp.Configuration.RevertOnDeath) + return; + + Revert((ent, ent)); + } + + private void OnPolymorphedTerminating(Entity ent, ref EntityTerminatingEvent args) + { + if (ent.Comp.Reverted) + return; + + if (ent.Comp.Configuration.RevertOnDelete) + Revert(ent.AsNullable()); + + // Remove our original entity too + // Note that Revert will set Parent to null, so reverted entities will not be deleted + QueueDel(ent.Comp.Parent); } /// @@ -248,7 +261,7 @@ public sealed partial class PolymorphSystem : EntitySystem if (configuration.TransferHumanoidAppearance) { - _humanoid.CloneAppearance(uid, child); + _humanoid.CloneAppearance(child, uid); } if (_mindSystem.TryGetMind(uid, out var mindId, out var mind)) @@ -284,19 +297,27 @@ public sealed partial class PolymorphSystem : EntitySystem if (Deleted(uid)) return null; - var parent = component.Parent; + if (component.Parent is not { } parent) + return null; + if (Deleted(parent)) return null; var uidXform = Transform(uid); var parentXform = Transform(parent); + // Don't swap back onto a terminating grid + if (TerminatingOrDeleted(uidXform.ParentUid)) + return null; + if (component.Configuration.ExitPolymorphSound != null) _audio.PlayPvs(component.Configuration.ExitPolymorphSound, uidXform.Coordinates); _transform.SetParent(parent, parentXform, uidXform.ParentUid); _transform.SetCoordinates(parent, parentXform, uidXform.Coordinates, uidXform.LocalRotation); + component.Reverted = true; + if (component.Configuration.TransferDamage && TryComp(parent, out var damageParent) && _mobThreshold.GetScaledDamage(uid, parent, out var damage) && diff --git a/Content.Server/Resist/ResistLockerSystem.cs b/Content.Server/Resist/ResistLockerSystem.cs index 597f3ee8d0..3698306b31 100644 --- a/Content.Server/Resist/ResistLockerSystem.cs +++ b/Content.Server/Resist/ResistLockerSystem.cs @@ -1,11 +1,11 @@ using Content.Server.Popups; -using Content.Server.Storage.Components; using Content.Server.Storage.EntitySystems; using Content.Shared.DoAfter; using Content.Shared.Lock; using Content.Shared.Movement.Events; using Content.Shared.Popups; using Content.Shared.Resist; +using Content.Shared.Storage.Components; using Content.Shared.Tools.Components; using Content.Shared.Tools.Systems; using Content.Shared.ActionBlocker; diff --git a/Content.Server/Revenant/EntitySystems/RevenantSystem.Abilities.cs b/Content.Server/Revenant/EntitySystems/RevenantSystem.Abilities.cs index 3f91b0fa71..38c3480078 100644 --- a/Content.Server/Revenant/EntitySystems/RevenantSystem.Abilities.cs +++ b/Content.Server/Revenant/EntitySystems/RevenantSystem.Abilities.cs @@ -3,7 +3,7 @@ using Content.Shared.Damage; using Content.Shared.Revenant; using Robust.Shared.Random; using Content.Shared.Tag; -using Content.Server.Storage.Components; +using Content.Shared.Storage.Components; using Content.Server.Light.Components; using Content.Server.Ghost; using Robust.Shared.Physics; diff --git a/Content.Server/Roles/ParadoxCloneRoleSystem.cs b/Content.Server/Roles/ParadoxCloneRoleSystem.cs index c957692b70..85332ef4a4 100644 --- a/Content.Server/Roles/ParadoxCloneRoleSystem.cs +++ b/Content.Server/Roles/ParadoxCloneRoleSystem.cs @@ -19,11 +19,13 @@ public sealed class ParadoxCloneRoleSystem : EntitySystem private void OnRefreshNameModifiers(Entity ent, ref MindRelayedEvent args) { - if (!TryComp(ent.Owner, out var roleComp)) + var mindId = Transform(ent).ParentUid; // the mind role entity is in a container in the mind entity + + if (!TryComp(mindId, out var mindComp)) return; // only show for ghosts - if (!HasComp(roleComp.Mind.Comp.OwnedEntity)) + if (!HasComp(mindComp.OwnedEntity)) return; if (ent.Comp.NameModifier != null) diff --git a/Content.Server/Roles/RoleSystem.cs b/Content.Server/Roles/RoleSystem.cs index 6cbd039c73..346e13bd07 100644 --- a/Content.Server/Roles/RoleSystem.cs +++ b/Content.Server/Roles/RoleSystem.cs @@ -36,7 +36,7 @@ public sealed class RoleSystem : SharedRoleSystem // Briefing is no longer raised on the mind entity itself // because all the components that briefings subscribe to should be on Mind Role Entities - foreach(var role in mindComp.MindRoles) + foreach (var role in mindComp.MindRoleContainer.ContainedEntities) { RaiseLocalEvent(role, ref ev); } diff --git a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs index 53714c846a..e0bbc9d090 100644 --- a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs +++ b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs @@ -7,6 +7,7 @@ using Content.Server.Administration.Managers; using Content.Server.Chat.Systems; using Content.Server.Communications; using Content.Server.DeviceNetwork.Systems; +using Content.Server.GameTicking; using Content.Server.GameTicking.Events; using Content.Server.Pinpointer; using Content.Server.Popups; @@ -57,6 +58,7 @@ public sealed partial class EmergencyShuttleSystem : EntitySystem [Dependency] private readonly CommunicationsConsoleSystem _commsConsole = default!; [Dependency] private readonly DeviceNetworkSystem _deviceNetworkSystem = default!; [Dependency] private readonly DockingSystem _dock = default!; + [Dependency] private readonly GameTicker _ticker = default!; [Dependency] private readonly IdCardSystem _idSystem = default!; [Dependency] private readonly NavMapSystem _navMap = default!; [Dependency] private readonly MapLoaderSystem _loader = default!; @@ -157,7 +159,9 @@ public sealed partial class EmergencyShuttleSystem : EntitySystem public override void Update(float frameTime) { base.Update(frameTime); - UpdateEmergencyConsole(frameTime); + // Don't handle any of this logic if in lobby + if (_ticker.RunLevel != GameRunLevel.PreRoundLobby) + UpdateEmergencyConsole(frameTime); } /// diff --git a/Content.Server/Silicons/Borgs/BorgSystem.Transponder.cs b/Content.Server/Silicons/Borgs/BorgSystem.Transponder.cs index c14e81ce8a..082e6776f0 100644 --- a/Content.Server/Silicons/Borgs/BorgSystem.Transponder.cs +++ b/Content.Server/Silicons/Borgs/BorgSystem.Transponder.cs @@ -19,7 +19,6 @@ namespace Content.Server.Silicons.Borgs; public sealed partial class BorgSystem { [Dependency] private readonly EmagSystem _emag = default!; - [Dependency] private readonly IEntityManager _entityManager = default!; [Dependency] private readonly MobThresholdSystem _mobThresholdSystem = default!; [Dependency] private readonly ItemSlotsSystem _itemSlotsSystem = default!; diff --git a/Content.Server/Silicons/Laws/SiliconLawSystem.cs b/Content.Server/Silicons/Laws/SiliconLawSystem.cs index e672cb5005..653ed6bac2 100644 --- a/Content.Server/Silicons/Laws/SiliconLawSystem.cs +++ b/Content.Server/Silicons/Laws/SiliconLawSystem.cs @@ -294,15 +294,16 @@ public sealed class SiliconLawSystem : SharedSiliconLawSystem protected override void OnUpdaterInsert(Entity ent, ref EntInsertedIntoContainerMessage args) { // TODO: Prediction dump this - if (!TryComp(args.Entity, out SiliconLawProviderComponent? provider)) + if (!TryComp(args.Entity, out var provider)) return; - var lawset = GetLawset(provider.Laws).Laws; + var lawset = provider.Lawset ?? GetLawset(provider.Laws); + var query = EntityManager.CompRegistryQueryEnumerator(ent.Comp.Components); while (query.MoveNext(out var update)) { - SetLaws(lawset, update, provider.LawUploadSound); + SetLaws(lawset.Laws, update, provider.LawUploadSound); } } } diff --git a/Content.Server/Singularity/EntitySystems/EmitterSystem.cs b/Content.Server/Singularity/EntitySystems/EmitterSystem.cs index 28d3eedd32..2ccdc10934 100644 --- a/Content.Server/Singularity/EntitySystems/EmitterSystem.cs +++ b/Content.Server/Singularity/EntitySystems/EmitterSystem.cs @@ -28,7 +28,6 @@ namespace Content.Server.Singularity.EntitySystems public sealed class EmitterSystem : SharedEmitterSystem { [Dependency] private readonly IRobustRandom _random = default!; - [Dependency] private readonly IPrototypeManager _prototype = default!; [Dependency] private readonly IAdminLogManager _adminLogger = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; diff --git a/Content.Server/Speech/Components/StutteringAccentComponent.cs b/Content.Server/Speech/Components/StutteringAccentComponent.cs index e82cd9b12b..dd65ef66e0 100644 --- a/Content.Server/Speech/Components/StutteringAccentComponent.cs +++ b/Content.Server/Speech/Components/StutteringAccentComponent.cs @@ -6,29 +6,25 @@ namespace Content.Server.Speech.Components /// /// Percentage chance that a stutter will occur if it matches. /// - [DataField("matchRandomProb")] - [ViewVariables(VVAccess.ReadWrite)] + [DataField] public float MatchRandomProb = 0.8f; /// /// Percentage chance that a stutter occurs f-f-f-f-four times. /// - [DataField("fourRandomProb")] - [ViewVariables(VVAccess.ReadWrite)] + [DataField] public float FourRandomProb = 0.1f; /// /// Percentage chance that a stutter occurs t-t-t-three times. /// - [DataField("threeRandomProb")] - [ViewVariables(VVAccess.ReadWrite)] + [DataField] public float ThreeRandomProb = 0.2f; /// /// Percentage chance that a stutter cut off. /// - [DataField("cutRandomProb")] - [ViewVariables(VVAccess.ReadWrite)] + [DataField] public float CutRandomProb = 0.05f; } } diff --git a/Content.Server/Speech/EntitySystems/SlurredSystem.cs b/Content.Server/Speech/EntitySystems/SlurredSystem.cs index 5ac1ba037f..8690079de1 100644 --- a/Content.Server/Speech/EntitySystems/SlurredSystem.cs +++ b/Content.Server/Speech/EntitySystems/SlurredSystem.cs @@ -3,8 +3,7 @@ using Content.Server.Speech.Components; using Content.Shared.Drunk; using Content.Shared.Speech; using Content.Shared.Speech.EntitySystems; -using Content.Shared.StatusEffect; -using Robust.Shared.Prototypes; +using Content.Shared.StatusEffectNew; using Robust.Shared.Random; using Robust.Shared.Timing; @@ -12,26 +11,15 @@ namespace Content.Server.Speech.EntitySystems; public sealed class SlurredSystem : SharedSlurredSystem { - [Dependency] private readonly StatusEffectsSystem _statusEffectsSystem = default!; + [Dependency] private readonly StatusEffectsSystem _status = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly IGameTiming _timing = default!; - private static readonly ProtoId SlurKey = "SlurredSpeech"; - public override void Initialize() { SubscribeLocalEvent(OnAccent); - } - public override void DoSlur(EntityUid uid, TimeSpan time, StatusEffectsComponent? status = null) - { - if (!Resolve(uid, ref status, false)) - return; - - if (!_statusEffectsSystem.HasStatusEffect(uid, SlurKey, status)) - _statusEffectsSystem.TryAddStatusEffect(uid, SlurKey, time, true, status); - else - _statusEffectsSystem.TryAddTime(uid, SlurKey, time, status); + SubscribeLocalEvent>(OnAccentRelayed); } /// @@ -39,15 +27,33 @@ public sealed class SlurredSystem : SharedSlurredSystem /// private float GetProbabilityScale(EntityUid uid) { - if (!_statusEffectsSystem.TryGetTime(uid, SharedDrunkSystem.DrunkKey, out var time)) + if (!_status.TryGetMaxTime(uid, out var time)) return 0; - var curTime = _timing.CurTime; - var timeLeft = (float) (time.Value.Item2 - curTime).TotalSeconds; - return Math.Clamp((timeLeft - 80) / 1100, 0f, 1f); + // This is a magic number. Why this value? No clue it was made 3 years before I refactored this. + var magic = SharedDrunkSystem.MagicNumber; + + if (time.Item2 != null) + { + var curTime = _timing.CurTime; + magic = (float) (time.Item2 - curTime).Value.TotalSeconds - 80f; + } + + return Math.Clamp(magic / SharedDrunkSystem.MagicNumber, 0f, 1f); } - private void OnAccent(EntityUid uid, SlurredAccentComponent component, AccentGetEvent args) + private void OnAccent(Entity entity, ref AccentGetEvent args) + { + GetAccent(entity, ref args); + } + + private void OnAccentRelayed(Entity entity, ref StatusEffectRelayedEvent args) + { + var ev = args.Args; + GetAccent(args.Args.Entity, ref ev); + } + + private void GetAccent(EntityUid uid, ref AccentGetEvent args) { var scale = GetProbabilityScale(uid); args.Message = Accentuate(args.Message, scale); diff --git a/Content.Server/Speech/EntitySystems/StutteringSystem.cs b/Content.Server/Speech/EntitySystems/StutteringSystem.cs index 5531ae4307..52b8fc6753 100644 --- a/Content.Server/Speech/EntitySystems/StutteringSystem.cs +++ b/Content.Server/Speech/EntitySystems/StutteringSystem.cs @@ -3,14 +3,13 @@ using System.Text.RegularExpressions; using Content.Server.Speech.Components; using Content.Shared.Speech; using Content.Shared.Speech.EntitySystems; -using Content.Shared.StatusEffect; +using Content.Shared.StatusEffectNew; using Robust.Shared.Random; namespace Content.Server.Speech.EntitySystems { public sealed class StutteringSystem : SharedStutteringSystem { - [Dependency] private readonly StatusEffectsSystem _statusEffectsSystem = default!; [Dependency] private readonly IRobustRandom _random = default!; // Regex of characters to stutter. @@ -20,19 +19,36 @@ namespace Content.Server.Speech.EntitySystems public override void Initialize() { SubscribeLocalEvent(OnAccent); + + SubscribeLocalEvent>(OnAccent); } - public override void DoStutter(EntityUid uid, TimeSpan time, bool refresh, StatusEffectsComponent? status = null) + public override void DoStutter(EntityUid uid, TimeSpan time, bool refresh) { - if (!Resolve(uid, ref status, false)) - return; - - _statusEffectsSystem.TryAddStatusEffect(uid, StutterKey, time, refresh, status); + if (refresh) + Status.TryUpdateStatusEffectDuration(uid, Stuttering, time); + else + Status.TryAddStatusEffectDuration(uid, Stuttering, time); } - private void OnAccent(EntityUid uid, StutteringAccentComponent component, AccentGetEvent args) + public override void DoRemoveStutterTime(EntityUid uid, TimeSpan timeRemoved) { - args.Message = Accentuate(args.Message, component); + Status.TryAddTime(uid, Stuttering, -timeRemoved); + } + + public override void DoRemoveStutter(EntityUid uid) + { + Status.TryRemoveStatusEffect(uid, Stuttering); + } + + private void OnAccent(Entity entity, ref AccentGetEvent args) + { + args.Message = Accentuate(args.Message, entity.Comp); + } + + private void OnAccent(Entity entity, ref StatusEffectRelayedEvent args) + { + args.Args.Message = Accentuate(args.Args.Message, entity.Comp); } public string Accentuate(string message, StutteringAccentComponent component) diff --git a/Content.Server/Stack/StackSystem.cs b/Content.Server/Stack/StackSystem.cs index a24cb2df42..aac5a23902 100644 --- a/Content.Server/Stack/StackSystem.cs +++ b/Content.Server/Stack/StackSystem.cs @@ -16,13 +16,9 @@ namespace Content.Server.Stack { [Dependency] private readonly IPrototypeManager _prototypeManager = default!; - public static readonly int[] DefaultSplitAmounts = { 1, 5, 10, 20, 30, 50 }; - public override void Initialize() { base.Initialize(); - - SubscribeLocalEvent>(OnStackAlternativeInteract); } public override void SetCount(EntityUid uid, int amount, StackComponent? component = null) @@ -165,42 +161,7 @@ namespace Content.Server.Stack return amounts; } - private void OnStackAlternativeInteract(EntityUid uid, StackComponent stack, GetVerbsEvent args) - { - if (!args.CanAccess || !args.CanInteract || args.Hands == null || stack.Count == 1) - return; - - AlternativeVerb halve = new() - { - Text = Loc.GetString("comp-stack-split-halve"), - Category = VerbCategory.Split, - Act = () => UserSplit(uid, args.User, stack.Count / 2, stack), - Priority = 1 - }; - args.Verbs.Add(halve); - - var priority = 0; - foreach (var amount in DefaultSplitAmounts) - { - if (amount >= stack.Count) - continue; - - AlternativeVerb verb = new() - { - Text = amount.ToString(), - Category = VerbCategory.Split, - Act = () => UserSplit(uid, args.User, amount, stack), - // we want to sort by size, not alphabetically by the verb text. - Priority = priority - }; - - priority--; - - args.Verbs.Add(verb); - } - } - - private void UserSplit(EntityUid uid, EntityUid userUid, int amount, + protected override void UserSplit(EntityUid uid, EntityUid userUid, int amount, StackComponent? stack = null, TransformComponent? userTransform = null) { diff --git a/Content.Server/StationEvents/Events/BluespaceLockerRule.cs b/Content.Server/StationEvents/Events/BluespaceLockerRule.cs index c07b178093..5e0ce6eb67 100644 --- a/Content.Server/StationEvents/Events/BluespaceLockerRule.cs +++ b/Content.Server/StationEvents/Events/BluespaceLockerRule.cs @@ -4,6 +4,7 @@ using Content.Server.Storage.Components; using Content.Server.Storage.EntitySystems; using Content.Shared.Access.Components; using Content.Shared.Station.Components; +using Content.Shared.Storage.Components; using Content.Shared.GameTicking.Components; namespace Content.Server.StationEvents.Events; diff --git a/Content.Server/StationEvents/Events/RandomEntityStorageSpawnRule.cs b/Content.Server/StationEvents/Events/RandomEntityStorageSpawnRule.cs index a9f2793818..2c2d2414b7 100644 --- a/Content.Server/StationEvents/Events/RandomEntityStorageSpawnRule.cs +++ b/Content.Server/StationEvents/Events/RandomEntityStorageSpawnRule.cs @@ -1,8 +1,7 @@ -using Content.Server.GameTicking.Rules.Components; using Content.Server.StationEvents.Components; -using Content.Server.Storage.Components; using Content.Server.Storage.EntitySystems; using Content.Shared.GameTicking.Components; +using Content.Shared.Storage.Components; using Robust.Shared.Map; using Robust.Shared.Random; diff --git a/Content.Server/Storage/Components/EntityStorageComponent.cs b/Content.Server/Storage/Components/EntityStorageComponent.cs deleted file mode 100644 index 3fba89b64a..0000000000 --- a/Content.Server/Storage/Components/EntityStorageComponent.cs +++ /dev/null @@ -1,18 +0,0 @@ -using Content.Server.Atmos; -using Content.Shared.Atmos; -using Content.Shared.Storage.Components; -using Robust.Shared.GameStates; - -namespace Content.Server.Storage.Components; - -[RegisterComponent] -public sealed partial class EntityStorageComponent : SharedEntityStorageComponent, IGasMixtureHolder -{ - /// - /// Gas currently contained in this entity storage. - /// None while open. Grabs gas from the atmosphere when closed, and exposes any entities inside to it. - /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("air")] - public GasMixture Air { get; set; } = new (200); -} diff --git a/Content.Server/Storage/EntitySystems/EntityStorageSystem.cs b/Content.Server/Storage/EntitySystems/EntityStorageSystem.cs index c2fcbf716e..615669b077 100644 --- a/Content.Server/Storage/EntitySystems/EntityStorageSystem.cs +++ b/Content.Server/Storage/EntitySystems/EntityStorageSystem.cs @@ -69,7 +69,7 @@ public sealed class EntityStorageSystem : SharedEntityStorageSystem } } - protected override void OnComponentInit(EntityUid uid, SharedEntityStorageComponent component, ComponentInit args) + protected override void OnComponentInit(EntityUid uid, EntityStorageComponent component, ComponentInit args) { base.OnComponentInit(uid, component, args); @@ -77,7 +77,7 @@ public sealed class EntityStorageSystem : SharedEntityStorageSystem _construction.AddContainer(uid, ContainerName, construction); } - public override bool ResolveStorage(EntityUid uid, [NotNullWhen(true)] ref SharedEntityStorageComponent? component) + public override bool ResolveStorage(EntityUid uid, [NotNullWhen(true)] ref EntityStorageComponent? component) { if (component != null) return true; @@ -108,7 +108,7 @@ public sealed class EntityStorageSystem : SharedEntityStorageSystem args.Contents.AddRange(ent.Comp.Contents.ContainedEntities); } - protected override void TakeGas(EntityUid uid, SharedEntityStorageComponent component) + protected override void TakeGas(EntityUid uid, EntityStorageComponent component) { if (!component.Airtight) return; @@ -122,7 +122,7 @@ public sealed class EntityStorageSystem : SharedEntityStorageSystem } } - public override void ReleaseGas(EntityUid uid, SharedEntityStorageComponent component) + public override void ReleaseGas(EntityUid uid, EntityStorageComponent component) { var serverComp = (EntityStorageComponent) component; diff --git a/Content.Server/Stunnable/Systems/StunOnCollideSystem.cs b/Content.Server/Stunnable/Systems/StunOnCollideSystem.cs index 2257812da1..c1757b1c2d 100644 --- a/Content.Server/Stunnable/Systems/StunOnCollideSystem.cs +++ b/Content.Server/Stunnable/Systems/StunOnCollideSystem.cs @@ -22,7 +22,7 @@ internal sealed class StunOnCollideSystem : EntitySystem private void TryDoCollideStun(Entity ent, EntityUid target) { - _stunSystem.TryKnockdown(target, ent.Comp.KnockdownAmount, ent.Comp.Refresh, ent.Comp.AutoStand, ent.Comp.Drop); + _stunSystem.TryKnockdown(target, ent.Comp.KnockdownAmount, ent.Comp.Refresh, ent.Comp.AutoStand, ent.Comp.Drop, true); if (ent.Comp.Refresh) { diff --git a/Content.Server/Trigger/Systems/GameRuleTriggerSystem.cs b/Content.Server/Trigger/Systems/GameRuleTriggerSystem.cs new file mode 100644 index 0000000000..245b9c8408 --- /dev/null +++ b/Content.Server/Trigger/Systems/GameRuleTriggerSystem.cs @@ -0,0 +1,44 @@ +using Content.Server.Administration.Logs; +using Content.Server.GameTicking; +using Content.Shared.Database; +using Content.Shared.Trigger; +using Content.Shared.Trigger.Components.Effects; + +namespace Content.Server.Trigger.Systems; + +/// +/// Trigger system for game rules. +/// +public sealed class GameRuleTriggerSystem : EntitySystem +{ + [Dependency] private readonly GameTicker _ticker = default!; + [Dependency] private readonly IAdminLogManager _adminLogger = default!; + + /// + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(AddRuleOnTrigger); + } + + private void AddRuleOnTrigger(Entity ent, ref TriggerEvent args) + { + if (args.Key != null && !ent.Comp.KeysIn.Contains(args.Key)) + return; + + var rule = _ticker.AddGameRule(ent.Comp.GameRule); + + _adminLogger.Add(LogType.EventStarted, + $"{ToPrettyString(args.User):entity} added a game rule [{ent.Comp.GameRule}]" + + $" via a trigger on {ToPrettyString(ent.Owner):entity}."); + + if (ent.Comp.StartRule && _ticker.RunLevel == GameRunLevel.InRound) + { + _ticker.StartGameRule(rule); + _adminLogger.Add(LogType.EventStarted, $"{ToPrettyString(args.User):entity} started game rule [{ent.Comp.GameRule}]."); + } + + args.Handled = true; + } +} diff --git a/Content.Server/Weapons/Melee/Balloon/BalloonPopperSystem.cs b/Content.Server/Weapons/Melee/Balloon/BalloonPopperSystem.cs index a8460a8c66..d4ab81ae10 100644 --- a/Content.Server/Weapons/Melee/Balloon/BalloonPopperSystem.cs +++ b/Content.Server/Weapons/Melee/Balloon/BalloonPopperSystem.cs @@ -5,6 +5,7 @@ using Content.Shared.Popups; using Content.Shared.Tag; using Content.Shared.Weapons.Melee.Events; using Content.Shared.Throwing; +using Content.Shared.Weapons.Melee.Balloon; using Robust.Shared.Audio.Systems; namespace Content.Server.Weapons.Melee.Balloon; diff --git a/Content.Server/Xenoarchaeology/Artifact/XAE/XAEIgniteSystem.cs b/Content.Server/Xenoarchaeology/Artifact/XAE/XAEIgniteSystem.cs index 14270fb866..7e8fff73ad 100644 --- a/Content.Server/Xenoarchaeology/Artifact/XAE/XAEIgniteSystem.cs +++ b/Content.Server/Xenoarchaeology/Artifact/XAE/XAEIgniteSystem.cs @@ -1,6 +1,6 @@ -using Content.Server.Atmos.Components; using Content.Server.Atmos.EntitySystems; using Content.Server.Xenoarchaeology.Artifact.XAE.Components; +using Content.Shared.Atmos.Components; using Content.Shared.Xenoarchaeology.Artifact; using Content.Shared.Xenoarchaeology.Artifact.XAE; using Robust.Shared.Random; diff --git a/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactCrusherSystem.cs b/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactCrusherSystem.cs index 8bc87cb378..885186f79c 100644 --- a/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactCrusherSystem.cs +++ b/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactCrusherSystem.cs @@ -2,10 +2,10 @@ using Content.Server.Body.Systems; using Content.Server.Popups; using Content.Server.Power.EntitySystems; using Content.Server.Stack; -using Content.Server.Storage.Components; using Content.Shared.Body.Components; using Content.Shared.Damage; using Content.Shared.Power; +using Content.Shared.Storage.Components; using Content.Shared.Verbs; using Content.Shared.Whitelist; using Content.Shared.Xenoarchaeology.Equipment; diff --git a/Content.Server/Zombies/ZombifyOnDeathComponent.cs b/Content.Server/Zombies/ZombifyOnDeathComponent.cs deleted file mode 100644 index dff17c4613..0000000000 --- a/Content.Server/Zombies/ZombifyOnDeathComponent.cs +++ /dev/null @@ -1,8 +0,0 @@ -namespace Content.Server.Zombies -{ - [RegisterComponent] - public sealed partial class ZombifyOnDeathComponent : Component - { - //this is not the component you are looking for - } -} diff --git a/Content.Server/_CP14/DeviceLinking/CP14PressurePlateSystem.cs b/Content.Server/_CP14/DeviceLinking/CP14PressurePlateSystem.cs index b6d082f836..8a2b29454a 100644 --- a/Content.Server/_CP14/DeviceLinking/CP14PressurePlateSystem.cs +++ b/Content.Server/_CP14/DeviceLinking/CP14PressurePlateSystem.cs @@ -1,7 +1,8 @@ +using Content.Server._CP14.DeviceLinking.Components; using Content.Server.DeviceLinking.Systems; -using Content.Server.Storage.Components; using Content.Shared._CP14.DeviceLinking; using Content.Shared.Placeable; +using Content.Shared.Storage.Components; using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.Physics.Components; @@ -17,28 +18,28 @@ public sealed class CP14PressurePlateSystem : EntitySystem public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnInit); - SubscribeLocalEvent(OnItemPlaced); - SubscribeLocalEvent(OnItemRemoved); + SubscribeLocalEvent(OnInit); + SubscribeLocalEvent(OnItemPlaced); + SubscribeLocalEvent(OnItemRemoved); } - private void OnInit(Entity plate, ref ComponentInit args) + private void OnInit(Entity plate, ref ComponentInit args) { _signal.EnsureSourcePorts(plate, plate.Comp.PressedPort, plate.Comp.ReleasedPort); _appearance.SetData(plate, PressurePlateVisuals.Pressed, false); } - private void OnItemRemoved(Entity plate, ref ItemRemovedEvent args) + private void OnItemRemoved(Entity plate, ref ItemRemovedEvent args) { UpdateState(plate); } - private void OnItemPlaced(Entity plate, ref ItemPlacedEvent args) + private void OnItemPlaced(Entity plate, ref ItemPlacedEvent args) { UpdateState(plate); } - private void UpdateState(Entity plate) + private void UpdateState(Entity plate) { if (!TryComp(plate, out var itemPlacer)) return; diff --git a/Content.Server/_CP14/Temperature/CP14FireSpreadSystem.cs b/Content.Server/_CP14/Temperature/CP14FireSpreadSystem.cs index a0c86f0043..252d86ece6 100644 --- a/Content.Server/_CP14/Temperature/CP14FireSpreadSystem.cs +++ b/Content.Server/_CP14/Temperature/CP14FireSpreadSystem.cs @@ -1,10 +1,10 @@ using System.Linq; using System.Numerics; -using Content.Server.Atmos.Components; using Content.Server.Atmos.EntitySystems; using Content.Server.Nutrition.Components; using Content.Server.Nutrition.EntitySystems; using Content.Shared._CP14.Temperature; +using Content.Shared.Atmos.Components; using Content.Shared.Maps; using Content.Shared.Nutrition.Components; using Content.Shared.Smoking; diff --git a/Content.Server/_CP14/Temperature/CP14TemperatureSystem.cs b/Content.Server/_CP14/Temperature/CP14TemperatureSystem.cs index 6588eb5b38..9d5bb785da 100644 --- a/Content.Server/_CP14/Temperature/CP14TemperatureSystem.cs +++ b/Content.Server/_CP14/Temperature/CP14TemperatureSystem.cs @@ -1,6 +1,6 @@ -using Content.Server.Atmos.Components; using Content.Server.Temperature.Systems; using Content.Shared._CP14.Temperature; +using Content.Shared.Atmos.Components; using Content.Shared.Chemistry.Components.SolutionManager; using Content.Shared.Chemistry.EntitySystems; using Content.Shared.FixedPoint; diff --git a/Content.Server/_CP14/Temperature/Fireplace/CP14FireplaceSystem.cs b/Content.Server/_CP14/Temperature/Fireplace/CP14FireplaceSystem.cs index a1e3e04ad3..895932ebd8 100644 --- a/Content.Server/_CP14/Temperature/Fireplace/CP14FireplaceSystem.cs +++ b/Content.Server/_CP14/Temperature/Fireplace/CP14FireplaceSystem.cs @@ -1,6 +1,6 @@ -using Content.Server.Atmos.Components; using Content.Server.Stack; using Content.Shared._CP14.Temperature; +using Content.Shared.Atmos.Components; using Content.Shared.Stacks; using Robust.Server.Audio; using Robust.Server.Containers; diff --git a/Content.Server/_CP14/Trading/CP14TradingPlatformSystem.cs b/Content.Server/_CP14/Trading/CP14TradingPlatformSystem.cs index 9db5f9812f..7f1c7d459f 100644 --- a/Content.Server/_CP14/Trading/CP14TradingPlatformSystem.cs +++ b/Content.Server/_CP14/Trading/CP14TradingPlatformSystem.cs @@ -1,6 +1,5 @@ using Content.Server._CP14.Currency; using Content.Server.Cargo.Systems; -using Content.Server.Storage.Components; using Content.Shared._CP14.Trading; using Content.Shared._CP14.Trading.Components; using Content.Shared._CP14.Trading.Prototypes; @@ -9,6 +8,7 @@ using Content.Shared.Mobs.Components; using Content.Shared.Placeable; using Content.Shared.Popups; using Content.Shared.Storage; +using Content.Shared.Storage.Components; using Content.Shared.Tag; using Content.Shared.UserInterface; using Robust.Server.GameObjects; diff --git a/Content.Server/_CP14/Vampire/CP14VampireSystem.cs b/Content.Server/_CP14/Vampire/CP14VampireSystem.cs index 89536b4366..ba593a1ccf 100644 --- a/Content.Server/_CP14/Vampire/CP14VampireSystem.cs +++ b/Content.Server/_CP14/Vampire/CP14VampireSystem.cs @@ -1,5 +1,4 @@ using System.Text; -using Content.Server.Atmos.Components; using Content.Server.Atmos.EntitySystems; using Content.Server.Body.Components; using Content.Server.Body.Systems; @@ -8,6 +7,7 @@ using Content.Server.Temperature.Systems; using Content.Shared._CP14.DayCycle; using Content.Shared._CP14.Vampire; using Content.Shared._CP14.Vampire.Components; +using Content.Shared.Atmos.Components; using Content.Shared.Examine; using Content.Shared.FixedPoint; using Content.Shared.Ghost; diff --git a/Content.Shared/Administration/AdminFrozenComponent.cs b/Content.Shared/Administration/AdminFrozenComponent.cs index bfcf1db526..28df7c5fd0 100644 --- a/Content.Shared/Administration/AdminFrozenComponent.cs +++ b/Content.Shared/Administration/AdminFrozenComponent.cs @@ -2,7 +2,7 @@ namespace Content.Shared.Administration; -[RegisterComponent, Access(typeof(SharedAdminFrozenSystem))] +[RegisterComponent, Access(typeof(AdminFrozenSystem))] [NetworkedComponent, AutoGenerateComponentState] public sealed partial class AdminFrozenComponent : Component { diff --git a/Content.Shared/Administration/SharedAdminFrozenSystem.cs b/Content.Shared/Administration/AdminFrozenSystem.cs similarity index 91% rename from Content.Shared/Administration/SharedAdminFrozenSystem.cs rename to Content.Shared/Administration/AdminFrozenSystem.cs index 259df2bdf2..7419137da8 100644 --- a/Content.Shared/Administration/SharedAdminFrozenSystem.cs +++ b/Content.Shared/Administration/AdminFrozenSystem.cs @@ -12,15 +12,13 @@ using Content.Shared.Throwing; namespace Content.Shared.Administration; // TODO deduplicate with BlockMovementComponent -public abstract class SharedAdminFrozenSystem : EntitySystem +public sealed class AdminFrozenSystem : EntitySystem { [Dependency] private readonly ActionBlockerSystem _blocker = default!; [Dependency] private readonly PullingSystem _pulling = default!; public override void Initialize() { - base.Initialize(); - SubscribeLocalEvent(OnAttempt); SubscribeLocalEvent(OnAttempt); SubscribeLocalEvent(OnAttempt); @@ -35,6 +33,16 @@ public abstract class SharedAdminFrozenSystem : EntitySystem SubscribeLocalEvent(OnSpeakAttempt); } + /// + /// Freezes and mutes the given entity. + /// + public void FreezeAndMute(EntityUid uid) + { + var comp = EnsureComp(uid); + comp.Muted = true; + Dirty(uid, comp); + } + private void OnInteractAttempt(Entity ent, ref InteractionAttemptEvent args) { args.Cancelled = true; diff --git a/Content.Server/Atmos/Components/FlammableComponent.cs b/Content.Shared/Atmos/Components/FlammableComponent.cs similarity index 96% rename from Content.Server/Atmos/Components/FlammableComponent.cs rename to Content.Shared/Atmos/Components/FlammableComponent.cs index 6a0ed36eff..dac0bd40d6 100644 --- a/Content.Server/Atmos/Components/FlammableComponent.cs +++ b/Content.Shared/Atmos/Components/FlammableComponent.cs @@ -1,11 +1,12 @@ using Content.Shared.Alert; using Content.Shared.Damage; +using Robust.Shared.GameStates; using Robust.Shared.Physics.Collision.Shapes; using Robust.Shared.Prototypes; -namespace Content.Server.Atmos.Components +namespace Content.Shared.Atmos.Components { - [RegisterComponent] + [RegisterComponent, NetworkedComponent] public sealed partial class FlammableComponent : Component { [DataField] diff --git a/Content.Shared/Body/Components/BloodstreamComponent.cs b/Content.Shared/Body/Components/BloodstreamComponent.cs index 0139932262..51814eaba9 100644 --- a/Content.Shared/Body/Components/BloodstreamComponent.cs +++ b/Content.Shared/Body/Components/BloodstreamComponent.cs @@ -198,12 +198,6 @@ public sealed partial class BloodstreamComponent : Component [ViewVariables] public Entity? TemporarySolution; - /// - /// Variable that stores the amount of status time added by having a low blood level. - /// - [DataField, AutoNetworkedField] - public TimeSpan StatusTime; - /// /// Alert to show when bleeding. /// diff --git a/Content.Shared/Body/Events/BleedModifierEvent.cs b/Content.Shared/Body/Events/BleedModifierEvent.cs new file mode 100644 index 0000000000..c836738d63 --- /dev/null +++ b/Content.Shared/Body/Events/BleedModifierEvent.cs @@ -0,0 +1,9 @@ +namespace Content.Shared.Body.Events; + +/// +/// Raised on an entity before they bleed to modify the amount. +/// +/// The amount of blood the entity will lose. +/// The amount of bleed reduction that will happen. +[ByRefEvent] +public record struct BleedModifierEvent(float BleedAmount, float BleedReductionAmount); diff --git a/Content.Shared/Body/Systems/SharedBloodstreamSystem.cs b/Content.Shared/Body/Systems/SharedBloodstreamSystem.cs index ac385040a9..7db9f42280 100644 --- a/Content.Shared/Body/Systems/SharedBloodstreamSystem.cs +++ b/Content.Shared/Body/Systems/SharedBloodstreamSystem.cs @@ -6,7 +6,6 @@ using Content.Shared.Chemistry.EntitySystems; using Content.Shared.Chemistry.Reaction; using Content.Shared.Chemistry.Reagent; using Content.Shared.Damage; -using Content.Shared.Drunk; using Content.Shared.EntityEffects.Effects; using Content.Shared.FixedPoint; using Content.Shared.Fluids; @@ -16,7 +15,7 @@ using Content.Shared.Mobs.Systems; using Content.Shared.Popups; using Content.Shared.Random.Helpers; using Content.Shared.Rejuvenate; -using Content.Shared.Speech.EntitySystems; +using Content.Shared.StatusEffectNew; using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.Prototypes; @@ -27,17 +26,18 @@ namespace Content.Shared.Body.Systems; public abstract class SharedBloodstreamSystem : EntitySystem { + public static readonly EntProtoId Bloodloss = "StatusEffectBloodloss"; + [Dependency] protected readonly SharedSolutionContainerSystem SolutionContainer = default!; [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly SharedPuddleSystem _puddle = default!; + [Dependency] private readonly StatusEffectsSystem _status = default!; [Dependency] private readonly AlertsSystem _alertsSystem = default!; [Dependency] private readonly MobStateSystem _mobStateSystem = default!; [Dependency] private readonly DamageableSystem _damageableSystem = default!; - [Dependency] private readonly SharedDrunkSystem _drunkSystem = default!; - [Dependency] private readonly SharedStutteringSystem _stutteringSystem = default!; public override void Initialize() { @@ -81,10 +81,14 @@ public abstract class SharedBloodstreamSystem : EntitySystem // as well as stop their bleeding to a certain extent. if (bloodstream.BleedAmount > 0) { + var ev = new BleedModifierEvent(bloodstream.BleedAmount, bloodstream.BleedReductionAmount); + RaiseLocalEvent(uid, ref ev); + // Blood is removed from the bloodstream at a 1-1 rate with the bleed amount - TryModifyBloodLevel((uid, bloodstream), -bloodstream.BleedAmount); + TryModifyBloodLevel((uid, bloodstream), -ev.BleedAmount); + // Bleed rate is reduced by the bleed reduction amount in the bloodstream component. - TryModifyBleedAmount((uid, bloodstream), -bloodstream.BleedReductionAmount); + TryModifyBleedAmount((uid, bloodstream), -ev.BleedReductionAmount); } // deal bloodloss damage if their blood level is below a threshold. @@ -100,15 +104,7 @@ public abstract class SharedBloodstreamSystem : EntitySystem // Apply dizziness as a symptom of bloodloss. // The effect is applied in a way that it will never be cleared without being healthy. // Multiplying by 2 is arbitrary but works for this case, it just prevents the time from running out - _drunkSystem.TryApplyDrunkenness( - uid, - (float)bloodstream.AdjustedUpdateInterval.TotalSeconds * 2, - applySlur: false); - _stutteringSystem.DoStutter(uid, bloodstream.AdjustedUpdateInterval * 2, refresh: false); - - // storing the drunk and stutter time so we can remove it independently from other effects additions - bloodstream.StatusTime += bloodstream.AdjustedUpdateInterval * 2; - DirtyField(uid, bloodstream, nameof(BloodstreamComponent.StatusTime)); + _status.TrySetStatusEffectDuration(uid, Bloodloss); } else if (!_mobStateSystem.IsDead(uid)) { @@ -118,12 +114,7 @@ public abstract class SharedBloodstreamSystem : EntitySystem bloodstream.BloodlossHealDamage * bloodPercentage, ignoreResistances: true, interruptsDoAfters: false); - // Remove the drunk effect when healthy. Should only remove the amount of drunk and stutter added by low blood level - _drunkSystem.TryRemoveDrunkenessTime(uid, bloodstream.StatusTime.TotalSeconds); - _stutteringSystem.DoRemoveStutterTime(uid, bloodstream.StatusTime.TotalSeconds); - // Reset the drunk and stutter time to zero - bloodstream.StatusTime = TimeSpan.Zero; - DirtyField(uid, bloodstream, nameof(BloodstreamComponent.StatusTime)); + _status.TryRemoveStatusEffect(uid, Bloodloss); } } } diff --git a/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs b/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs index 8b8536d5ef..818bf50556 100644 --- a/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs +++ b/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs @@ -1,7 +1,6 @@ using System.Diagnostics.CodeAnalysis; using System.Numerics; using Content.Shared.Alert; -using Content.Shared.ActionBlocker; using Content.Shared.Buckle.Components; using Content.Shared.Cuffs.Components; using Content.Shared.Database; @@ -13,7 +12,6 @@ using Content.Shared.Movement.Pulling.Events; using Content.Shared.Physics; using Content.Shared.Popups; using Content.Shared.Pulling.Events; -using Content.Shared.Rotation; using Content.Shared.Standing; using Content.Shared.Storage.Components; using Content.Shared.Stunnable; @@ -453,9 +451,9 @@ public abstract partial class SharedBuckleSystem private void Unbuckle(Entity buckle, Entity strap, EntityUid? user) { if (user == buckle.Owner) - _adminLogger.Add(LogType.Action, LogImpact.Low, $"{user} unbuckled themselves from {strap}"); + _adminLogger.Add(LogType.Action, LogImpact.Low, $"{ToPrettyString(user):user} unbuckled themselves from {ToPrettyString(strap):strap}"); else if (user != null) - _adminLogger.Add(LogType.Action, LogImpact.Low, $"{user} unbuckled {buckle} from {strap}"); + _adminLogger.Add(LogType.Action, LogImpact.Low, $"{ToPrettyString(user):user} unbuckled {ToPrettyString(buckle):target} from {ToPrettyString(strap):strap}"); _audio.PlayPredicted(strap.Comp.UnbuckleSound, strap, user); diff --git a/Content.Shared/CCVar/CCVars.Movement.cs b/Content.Shared/CCVar/CCVars.Movement.cs index 37e355b032..96ceada099 100644 --- a/Content.Shared/CCVar/CCVars.Movement.cs +++ b/Content.Shared/CCVar/CCVars.Movement.cs @@ -56,4 +56,12 @@ public sealed partial class CCVars [CVarControl(AdminFlags.VarEdit)] public static readonly CVarDef MovementPushMassCap = CVarDef.Create("movement.push_mass_cap", 1.75f, CVar.SERVER | CVar.REPLICATED); + + /// + /// Is crawling enabled + /// + [CVarControl(AdminFlags.VarEdit)] + public static readonly CVarDef MovementCrawling = + CVarDef.Create("movement.crawling", true, CVar.SERVER | CVar.REPLICATED); + } diff --git a/Content.Shared/Changeling/Devour/ChangelingDevourSystem.Events.cs b/Content.Shared/Changeling/ChangelingDevourEvents.cs similarity index 94% rename from Content.Shared/Changeling/Devour/ChangelingDevourSystem.Events.cs rename to Content.Shared/Changeling/ChangelingDevourEvents.cs index d063737e5c..ba8d25f30c 100644 --- a/Content.Shared/Changeling/Devour/ChangelingDevourSystem.Events.cs +++ b/Content.Shared/Changeling/ChangelingDevourEvents.cs @@ -2,7 +2,7 @@ using Content.Shared.DoAfter; using Robust.Shared.Serialization; -namespace Content.Shared.Changeling.Devour; +namespace Content.Shared.Changeling; /// /// Action event for Devour, someone has initiated a devour on someone, begin to windup. diff --git a/Content.Shared/Changeling/Transform/ChangelingTransformSystem.Events.cs b/Content.Shared/Changeling/ChangelingTransformEvents.cs similarity index 91% rename from Content.Shared/Changeling/Transform/ChangelingTransformSystem.Events.cs rename to Content.Shared/Changeling/ChangelingTransformEvents.cs index cfe2a56933..9940a60705 100644 --- a/Content.Shared/Changeling/Transform/ChangelingTransformSystem.Events.cs +++ b/Content.Shared/Changeling/ChangelingTransformEvents.cs @@ -2,7 +2,7 @@ using Content.Shared.DoAfter; using Robust.Shared.Serialization; -namespace Content.Shared.Changeling.Transform; +namespace Content.Shared.Changeling; /// /// Action event for opening the changeling transformation radial menu. diff --git a/Content.Shared/Changeling/Devour/ChangelingDevourComponent.cs b/Content.Shared/Changeling/Components/ChangelingDevourComponent.cs similarity index 98% rename from Content.Shared/Changeling/Devour/ChangelingDevourComponent.cs rename to Content.Shared/Changeling/Components/ChangelingDevourComponent.cs index 7798c6fec9..a874afe9ce 100644 --- a/Content.Shared/Changeling/Devour/ChangelingDevourComponent.cs +++ b/Content.Shared/Changeling/Components/ChangelingDevourComponent.cs @@ -1,3 +1,4 @@ +using Content.Shared.Changeling.Systems; using Content.Shared.Damage; using Content.Shared.Damage.Prototypes; using Content.Shared.FixedPoint; @@ -7,7 +8,7 @@ using Robust.Shared.GameStates; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; -namespace Content.Shared.Changeling.Devour; +namespace Content.Shared.Changeling.Components; /// /// Component responsible for Changelings Devour attack. Including the amount of damage diff --git a/Content.Shared/Changeling/ChangelingIdentityComponent.cs b/Content.Shared/Changeling/Components/ChangelingIdentityComponent.cs similarity index 93% rename from Content.Shared/Changeling/ChangelingIdentityComponent.cs rename to Content.Shared/Changeling/Components/ChangelingIdentityComponent.cs index 461315f4ce..8e74f83537 100644 --- a/Content.Shared/Changeling/ChangelingIdentityComponent.cs +++ b/Content.Shared/Changeling/Components/ChangelingIdentityComponent.cs @@ -2,13 +2,13 @@ using Content.Shared.Cloning; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; -namespace Content.Shared.Changeling; +namespace Content.Shared.Changeling.Components; /// /// The storage component for Changelings, it handles the link between a changeling and its consumed identities /// that exist on a paused map. /// -[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState(raiseAfterAutoHandleState: true)] public sealed partial class ChangelingIdentityComponent : Component { /// @@ -29,6 +29,7 @@ public sealed partial class ChangelingIdentityComponent : Component /// The cloning settings passed to the CloningSystem, contains a list of all components to copy or have handled by their /// respective systems. /// + [DataField] public ProtoId IdentityCloningSettings = "ChangelingCloningSettings"; public override bool SendOnlyToOwner => true; diff --git a/Content.Shared/Changeling/ChangelingStoredIdentityComponent.cs b/Content.Shared/Changeling/Components/ChangelingStoredIdentityComponent.cs similarity index 95% rename from Content.Shared/Changeling/ChangelingStoredIdentityComponent.cs rename to Content.Shared/Changeling/Components/ChangelingStoredIdentityComponent.cs index 44583190e6..010196bfd0 100644 --- a/Content.Shared/Changeling/ChangelingStoredIdentityComponent.cs +++ b/Content.Shared/Changeling/Components/ChangelingStoredIdentityComponent.cs @@ -1,7 +1,7 @@ using Robust.Shared.GameStates; using Robust.Shared.Player; -namespace Content.Shared.Changeling; +namespace Content.Shared.Changeling.Components; /// /// Marker component for cloned identities devoured by a changeling. diff --git a/Content.Shared/Changeling/Transform/ChangelingTransformComponent.cs b/Content.Shared/Changeling/Components/ChangelingTransformComponent.cs similarity index 95% rename from Content.Shared/Changeling/Transform/ChangelingTransformComponent.cs rename to Content.Shared/Changeling/Components/ChangelingTransformComponent.cs index 0a3b3f1985..7b465ea3b2 100644 --- a/Content.Shared/Changeling/Transform/ChangelingTransformComponent.cs +++ b/Content.Shared/Changeling/Components/ChangelingTransformComponent.cs @@ -1,9 +1,10 @@ +using Content.Shared.Changeling.Systems; using Content.Shared.Cloning; using Robust.Shared.Audio; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; -namespace Content.Shared.Changeling.Transform; +namespace Content.Shared.Changeling.Components; /// /// The component containing information about Changelings Transformation action diff --git a/Content.Shared/Changeling/Devour/ChangelingDevourSystem.cs b/Content.Shared/Changeling/Systems/ChangelingDevourSystem.cs similarity index 98% rename from Content.Shared/Changeling/Devour/ChangelingDevourSystem.cs rename to Content.Shared/Changeling/Systems/ChangelingDevourSystem.cs index 83a589a8e3..500ee06b22 100644 --- a/Content.Shared/Changeling/Devour/ChangelingDevourSystem.cs +++ b/Content.Shared/Changeling/Systems/ChangelingDevourSystem.cs @@ -3,6 +3,7 @@ using Content.Shared.Administration.Logs; using Content.Shared.Armor; using Content.Shared.Atmos.Rotting; using Content.Shared.Body.Components; +using Content.Shared.Changeling.Components; using Content.Shared.Damage; using Content.Shared.Database; using Content.Shared.DoAfter; @@ -19,7 +20,7 @@ using Robust.Shared.Network; using Robust.Shared.Random; using Robust.Shared.Timing; -namespace Content.Shared.Changeling.Devour; +namespace Content.Shared.Changeling.Systems; public sealed class ChangelingDevourSystem : EntitySystem { @@ -31,7 +32,7 @@ public sealed class ChangelingDevourSystem : EntitySystem [Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!; [Dependency] private readonly DamageableSystem _damageable = default!; [Dependency] private readonly MobStateSystem _mobState = default!; - [Dependency] private readonly ChangelingIdentitySystem _changelingIdentitySystem = default!; + [Dependency] private readonly SharedChangelingIdentitySystem _changelingIdentitySystem = default!; [Dependency] private readonly InventorySystem _inventorySystem = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; diff --git a/Content.Shared/Changeling/Systems/ChangelingTransformSystem.UI.cs b/Content.Shared/Changeling/Systems/ChangelingTransformSystem.UI.cs new file mode 100644 index 0000000000..e555147352 --- /dev/null +++ b/Content.Shared/Changeling/Systems/ChangelingTransformSystem.UI.cs @@ -0,0 +1,21 @@ +using Robust.Shared.Serialization; + +namespace Content.Shared.Changeling.Systems; + +/// +/// Send when a player selects an intentity to transform into in the radial menu. +/// +[Serializable, NetSerializable] +public sealed class ChangelingTransformIdentitySelectMessage(NetEntity targetIdentity) : BoundUserInterfaceMessage +{ + /// + /// The uid of the cloned identity. + /// + public readonly NetEntity TargetIdentity = targetIdentity; +} + +[Serializable, NetSerializable] +public enum ChangelingTransformUiKey : byte +{ + Key, +} diff --git a/Content.Shared/Changeling/Transform/ChangelingTransformSystem.cs b/Content.Shared/Changeling/Systems/ChangelingTransformSystem.cs similarity index 86% rename from Content.Shared/Changeling/Transform/ChangelingTransformSystem.cs rename to Content.Shared/Changeling/Systems/ChangelingTransformSystem.cs index dbc5356448..cf8d9d7cb6 100644 --- a/Content.Shared/Changeling/Transform/ChangelingTransformSystem.cs +++ b/Content.Shared/Changeling/Systems/ChangelingTransformSystem.cs @@ -1,5 +1,6 @@ using Content.Shared.Actions; using Content.Shared.Administration.Logs; +using Content.Shared.Changeling.Components; using Content.Shared.Cloning; using Content.Shared.Database; using Content.Shared.DoAfter; @@ -10,7 +11,7 @@ using Robust.Shared.Audio.Systems; using Robust.Shared.Network; using Robust.Shared.Prototypes; -namespace Content.Shared.Changeling.Transform; +namespace Content.Shared.Changeling.Systems; public sealed partial class ChangelingTransformSystem : EntitySystem { @@ -43,7 +44,7 @@ public sealed partial class ChangelingTransformSystem : EntitySystem _actionsSystem.AddAction(ent, ref ent.Comp.ChangelingTransformActionEntity, ent.Comp.ChangelingTransformAction); var userInterfaceComp = EnsureComp(ent); - _uiSystem.SetUi((ent, userInterfaceComp), TransformUI.Key, new InterfaceData(ChangelingBuiXmlGeneratedName)); + _uiSystem.SetUi((ent, userInterfaceComp), ChangelingTransformUiKey.Key, new InterfaceData(ChangelingBuiXmlGeneratedName)); } private void OnShutdown(Entity ent, ref ComponentShutdown args) @@ -63,18 +64,9 @@ public sealed partial class ChangelingTransformSystem : EntitySystem if (!TryComp(ent, out var userIdentity)) return; - if (!_uiSystem.IsUiOpen((ent, userInterfaceComp), TransformUI.Key, args.Performer)) + if (!_uiSystem.IsUiOpen((ent, userInterfaceComp), ChangelingTransformUiKey.Key, args.Performer)) { - _uiSystem.OpenUi((ent, userInterfaceComp), TransformUI.Key, args.Performer); - - var identityData = new List(); - - foreach (var consumedIdentity in userIdentity.ConsumedIdentities) - { - identityData.Add(GetNetEntity(consumedIdentity)); - } - - _uiSystem.SetUiState((ent, userInterfaceComp), TransformUI.Key, new ChangelingTransformBoundUserInterfaceState(identityData)); + _uiSystem.OpenUi((ent, userInterfaceComp), ChangelingTransformUiKey.Key, args.Performer); } //TODO: Can add a Else here with TransformInto and CloseUI to make a quick switch, // issue right now is that Radials cover the Action buttons so clicking the action closes the UI (due to clicking off a radial causing it to close, even with UI) // but pressing the number does. @@ -102,12 +94,12 @@ public sealed partial class ChangelingTransformSystem : EntitySystem if (_net.IsServer) ent.Comp.CurrentTransformSound = _audio.PlayPvs(ent.Comp.TransformAttemptNoise, ent)?.Entity; - if(TryComp(targetIdentity, out var storedIdentity) && storedIdentity.OriginalSession != null) + if (TryComp(targetIdentity, out var storedIdentity) && storedIdentity.OriginalSession != null) _adminLogger.Add(LogType.Action, LogImpact.Medium, $"{ToPrettyString(ent.Owner):player} begun an attempt to transform into \"{Name(targetIdentity)}\" ({storedIdentity.OriginalSession:player}) "); else _adminLogger.Add(LogType.Action, LogImpact.Medium, $"{ToPrettyString(ent.Owner):player} begun an attempt to transform into \"{Name(targetIdentity)}\""); - var result = _doAfterSystem.TryStartDoAfter(new DoAfterArgs( + _doAfterSystem.TryStartDoAfter(new DoAfterArgs( EntityManager, ent, ent.Comp.TransformWindup, @@ -126,7 +118,7 @@ public sealed partial class ChangelingTransformSystem : EntitySystem private void OnTransformSelected(Entity ent, ref ChangelingTransformIdentitySelectMessage args) { - _uiSystem.CloseUi(ent.Owner, TransformUI.Key, ent); + _uiSystem.CloseUi(ent.Owner, ChangelingTransformUiKey.Key, ent); if (!TryGetEntity(args.TargetIdentity, out var targetIdentity)) return; @@ -162,8 +154,8 @@ public sealed partial class ChangelingTransformSystem : EntitySystem _humanoidAppearanceSystem.CloneAppearance(targetIdentity, args.User); _cloningSystem.CloneComponents(targetIdentity, args.User, settings); - - if(TryComp(targetIdentity, out var storedIdentity) && storedIdentity.OriginalSession != null) + + if (TryComp(targetIdentity, out var storedIdentity) && storedIdentity.OriginalSession != null) _adminLogger.Add(LogType.Action, LogImpact.High, $"{ToPrettyString(ent.Owner):player} successfully transformed into \"{Name(targetIdentity)}\" ({storedIdentity.OriginalSession:player})"); else _adminLogger.Add(LogType.Action, LogImpact.High, $"{ToPrettyString(ent.Owner):player} successfully transformed into \"{Name(targetIdentity)}\""); diff --git a/Content.Shared/Changeling/ChangelingIdentitySystem.cs b/Content.Shared/Changeling/Systems/SharedChangelingIdentitySystem.cs similarity index 68% rename from Content.Shared/Changeling/ChangelingIdentitySystem.cs rename to Content.Shared/Changeling/Systems/SharedChangelingIdentitySystem.cs index f68f72f853..e7e46d79a1 100644 --- a/Content.Shared/Changeling/ChangelingIdentitySystem.cs +++ b/Content.Shared/Changeling/Systems/SharedChangelingIdentitySystem.cs @@ -1,7 +1,7 @@ using System.Numerics; +using Content.Shared.Changeling.Components; using Content.Shared.Cloning; using Content.Shared.Humanoid; -using Content.Shared.Mind.Components; using Content.Shared.NameModifier.EntitySystems; using Robust.Shared.GameStates; using Robust.Shared.Map; @@ -9,9 +9,9 @@ using Robust.Shared.Network; using Robust.Shared.Player; using Robust.Shared.Prototypes; -namespace Content.Shared.Changeling; +namespace Content.Shared.Changeling.Systems; -public sealed class ChangelingIdentitySystem : EntitySystem +public abstract class SharedChangelingIdentitySystem : EntitySystem { [Dependency] private readonly INetManager _net = default!; [Dependency] private readonly IPrototypeManager _prototype = default!; @@ -31,22 +31,19 @@ public sealed class ChangelingIdentitySystem : EntitySystem SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent(OnShutdown); - SubscribeLocalEvent(OnMindAdded); - SubscribeLocalEvent(OnMindRemoved); + SubscribeLocalEvent(OnPlayerAttached); + SubscribeLocalEvent(OnPlayerDetached); SubscribeLocalEvent(OnStoredRemove); } - private void OnMindAdded(Entity ent, ref MindAddedMessage args) + private void OnPlayerAttached(Entity ent, ref PlayerAttachedEvent args) { - if (!TryComp(args.Container.Owner, out var actor)) - return; - - HandOverPvsOverride(actor.PlayerSession, ent.Comp); + HandOverPvsOverride(ent, args.Player); } - private void OnMindRemoved(Entity ent, ref MindRemovedMessage args) + private void OnPlayerDetached(Entity ent, ref PlayerDetachedEvent args) { - CleanupPvsOverride(ent, args.Container.Owner); + CleanupPvsOverride(ent, args.Player); } private void OnMapInit(Entity ent, ref MapInitEvent args) @@ -58,7 +55,8 @@ public sealed class ChangelingIdentitySystem : EntitySystem private void OnShutdown(Entity ent, ref ComponentShutdown args) { - CleanupPvsOverride(ent, ent.Owner); + if (TryComp(ent, out var actor)) + CleanupPvsOverride(ent, actor.PlayerSession); CleanupChangelingNullspaceIdentities(ent); } @@ -106,66 +104,63 @@ public sealed class ChangelingIdentitySystem : EntitySystem // Movercontrollers and mob collisions are currently being calculated even for paused entities. // Spawning all of them in the same spot causes severe performance problems. // Cryopods and Polymorph have the same problem. - var mob = Spawn(speciesPrototype.Prototype, new MapCoordinates(new Vector2(2 * _numberOfStoredIdentities++, 0), PausedMapId!.Value)); + var clone = Spawn(speciesPrototype.Prototype, new MapCoordinates(new Vector2(2 * _numberOfStoredIdentities++, 0), PausedMapId!.Value)); - var storedIdentity = EnsureComp(mob); + var storedIdentity = EnsureComp(clone); storedIdentity.OriginalEntity = target; // TODO: network this once we have WeakEntityReference or the autonetworking source gen is fixed if (TryComp(target, out var actor)) storedIdentity.OriginalSession = actor.PlayerSession; - _humanoidSystem.CloneAppearance(target, mob); - _cloningSystem.CloneComponents(target, mob, settings); + _humanoidSystem.CloneAppearance(target, clone); + _cloningSystem.CloneComponents(target, clone, settings); var targetName = _nameMod.GetBaseName(target); - _metaSystem.SetEntityName(mob, targetName); - ent.Comp.ConsumedIdentities.Add(mob); + _metaSystem.SetEntityName(clone, targetName); + ent.Comp.ConsumedIdentities.Add(clone); Dirty(ent); - HandlePvsOverride(ent, mob); + HandlePvsOverride(ent, clone); - return mob; + return clone; } /// - /// Simple helper to add a PVS override to a Nullspace Identity + /// Simple helper to add a PVS override to a nullspace identity. /// - /// - /// - private void HandlePvsOverride(EntityUid uid, EntityUid target) + /// The actor that should get the override. + /// The identity stored in nullspace. + private void HandlePvsOverride(EntityUid uid, EntityUid identity) { if (!TryComp(uid, out var actor)) return; - _pvsOverrideSystem.AddSessionOverride(target, actor.PlayerSession); + _pvsOverrideSystem.AddSessionOverride(identity, actor.PlayerSession); } /// - /// Cleanup all Pvs Overrides for the owner of the ChangelingIdentity + /// Cleanup all PVS overrides for the owner of the ChangelingIdentity /// - /// the Changeling itself - /// Who specifically to cleanup from, usually just the same owner, but in the case of a mindswap we want to clean up the victim - private void CleanupPvsOverride(Entity ent, EntityUid entityUid) + /// The changeling storing the identities. + /// + private void CleanupPvsOverride(Entity ent, ICommonSession session) { - if (!TryComp(entityUid, out var actor)) - return; - foreach (var identity in ent.Comp.ConsumedIdentities) { - _pvsOverrideSystem.RemoveSessionOverride(identity, actor.PlayerSession); + _pvsOverrideSystem.RemoveSessionOverride(identity, session); } } /// - /// Inform another Session of the entities stored for Transformation + /// Inform another session of the entities stored for transformation. /// - /// The Session you wish to inform - /// The Target storage of identities - public void HandOverPvsOverride(ICommonSession session, ChangelingIdentityComponent comp) + /// The changeling storing the identities. + /// The session you wish to inform. + public void HandOverPvsOverride(Entity ent, ICommonSession session) { - foreach (var entity in comp.ConsumedIdentities) + foreach (var identity in ent.Comp.ConsumedIdentities) { - _pvsOverrideSystem.AddSessionOverride(entity, session); + _pvsOverrideSystem.AddSessionOverride(identity, session); } } diff --git a/Content.Shared/Changeling/Transform/ChangelingTransformSystem.UI.cs b/Content.Shared/Changeling/Transform/ChangelingTransformSystem.UI.cs deleted file mode 100644 index 0383867698..0000000000 --- a/Content.Shared/Changeling/Transform/ChangelingTransformSystem.UI.cs +++ /dev/null @@ -1,33 +0,0 @@ -using Robust.Shared.Serialization; - -namespace Content.Shared.Changeling.Transform; - -/// -/// Send when a player selects an intentity to transform into in the radial menu. -/// -[Serializable, NetSerializable] -public sealed class ChangelingTransformIdentitySelectMessage(NetEntity targetIdentity) : BoundUserInterfaceMessage -{ - /// - /// The uid of the cloned identity. - /// - public readonly NetEntity TargetIdentity = targetIdentity; -} - -// TODO: Replace with component states. -// We are already networking the ChangelingIdentityComponent, which contains all this information, -// so we can just read it from them from the component and update the UI in an AfterAuotHandleState subscription. -[Serializable, NetSerializable] -public sealed class ChangelingTransformBoundUserInterfaceState(List identities) : BoundUserInterfaceState -{ - /// - /// The uids of the cloned identities. - /// - public readonly List Identites = identities; -} - -[Serializable, NetSerializable] -public enum TransformUI : byte -{ - Key, -} diff --git a/Content.Shared/Charges/Components/LimitedChargesComponent.cs b/Content.Shared/Charges/Components/LimitedChargesComponent.cs index e879e0f1df..7891857187 100644 --- a/Content.Shared/Charges/Components/LimitedChargesComponent.cs +++ b/Content.Shared/Charges/Components/LimitedChargesComponent.cs @@ -16,7 +16,7 @@ public sealed partial class LimitedChargesComponent : Component /// /// The max charges this action has. /// - [DataField, AutoNetworkedField, Access(Other = AccessPermissions.Read)] + [DataField, AutoNetworkedField] public int MaxCharges = 3; /// diff --git a/Content.Shared/Charges/Systems/SharedChargesSystem.cs b/Content.Shared/Charges/Systems/SharedChargesSystem.cs index e915580bae..504648c41d 100644 --- a/Content.Shared/Charges/Systems/SharedChargesSystem.cs +++ b/Content.Shared/Charges/Systems/SharedChargesSystem.cs @@ -94,6 +94,12 @@ public abstract class SharedChargesSystem : EntitySystem /// /// Adds the specified charges. Does not reset the accumulator. /// + /// + /// The action to add charges to. If it doesn't have , it will be added. + /// + /// + /// The number of charges to add. Can be negative. Resulting charge count is clamped to [0, MaxCharges]. + /// public void AddCharges(Entity action, int addCharges) { if (addCharges == 0) @@ -170,9 +176,21 @@ public abstract class SharedChargesSystem : EntitySystem Dirty(action); } + /// + /// Set the number of charges an action has. + /// + /// The action in question + /// + /// The number of charges. Clamped to [0, MaxCharges]. + /// + /// + /// This method doesn't implicitly add + /// unlike some other methods in this system. + /// public void SetCharges(Entity action, int value) { - action.Comp ??= EnsureComp(action.Owner); + if (!Resolve(action, ref action.Comp)) + return; var adjusted = Math.Clamp(value, 0, action.Comp.MaxCharges); @@ -186,6 +204,31 @@ public abstract class SharedChargesSystem : EntitySystem Dirty(action); } + /// + /// Sets the maximum charges of a given action. + /// + /// The action being modified. + /// The new maximum charges of the action. Clamped to zero. + /// + /// Does not change the current charge count, or adjust the + /// accumulator for auto-recharge. It also doesn't implicitly add + /// unlike some other methods + /// in this system. + /// + public void SetMaxCharges(Entity action, int value) + { + if (!Resolve(action, ref action.Comp)) + return; + + // You can't have negative max charges (even zero is a bit goofy but eh) + var adjusted = Math.Max(0, value); + if (action.Comp.MaxCharges == adjusted) + return; + + action.Comp.MaxCharges = adjusted; + Dirty(action); + } + /// /// The next time a charge will be considered to be filled. /// diff --git a/Content.Shared/Chat/SharedChatSystem.cs b/Content.Shared/Chat/SharedChatSystem.cs index bb25a8749a..8da62efc3a 100644 --- a/Content.Shared/Chat/SharedChatSystem.cs +++ b/Content.Shared/Chat/SharedChatSystem.cs @@ -3,6 +3,7 @@ using System.Text.RegularExpressions; using Content.Shared.Popups; using Content.Shared.Radio; using Content.Shared.Speech; +using Robust.Shared.Audio; using Robust.Shared.Prototypes; using Robust.Shared.Utility; @@ -27,7 +28,8 @@ public abstract class SharedChatSystem : EntitySystem public const int VoiceRange = 10; // how far voice goes in world units public const int WhisperClearRange = 2; // how far whisper goes while still being understandable, in world units public const int WhisperMuffledRange = 5; // how far whisper goes at all, in world units - public const string DefaultAnnouncementSound = "/Audio/_CP14/Announce/event_boom.ogg"; //CP14 replaced default announce sound + public static readonly SoundSpecifier DefaultAnnouncementSound + = new SoundPathSpecifier("/Audio/_CP14/Announce/event_boom.ogg"); //CP14 replaced default announce sound public static readonly ProtoId CommonChannel = "Common"; diff --git a/Content.Shared/Chemistry/EntitySystems/HypospraySystem.cs b/Content.Shared/Chemistry/EntitySystems/HypospraySystem.cs index 34bc44f1cb..324858afd7 100644 --- a/Content.Shared/Chemistry/EntitySystems/HypospraySystem.cs +++ b/Content.Shared/Chemistry/EntitySystems/HypospraySystem.cs @@ -144,7 +144,7 @@ public sealed class HypospraySystem : EntitySystem return false; } - _popup.PopupClient(Loc.GetString(msgFormat ?? "hypospray-component-inject-other-message", ("other", target)), target, user); + _popup.PopupClient(Loc.GetString(msgFormat ?? "hypospray-component-inject-other-message", ("other", Identity.Entity(target, EntityManager))), target, user); if (target != user) { diff --git a/Content.Shared/Chemistry/Reagent/ReagentPrototype.cs b/Content.Shared/Chemistry/Reagent/ReagentPrototype.cs index 1a3d17c340..7689a27cd0 100644 --- a/Content.Shared/Chemistry/Reagent/ReagentPrototype.cs +++ b/Content.Shared/Chemistry/Reagent/ReagentPrototype.cs @@ -63,6 +63,12 @@ namespace Content.Shared.Chemistry.Reagent [DataField] public bool Recognizable; + /// + /// Whether this reagent stands out (blood, slime). + /// + [DataField] + public bool Standsout; + [DataField] public ProtoId? Flavor; diff --git a/Content.Shared/Clothing/ClothingSpeedModifierComponent.cs b/Content.Shared/Clothing/ClothingSpeedModifierComponent.cs index 866ce38a57..8dc496ec25 100644 --- a/Content.Shared/Clothing/ClothingSpeedModifierComponent.cs +++ b/Content.Shared/Clothing/ClothingSpeedModifierComponent.cs @@ -15,6 +15,13 @@ public sealed partial class ClothingSpeedModifierComponent : Component [DataField] public float SprintModifier = 1.0f; + + /// + /// An optional required standing state. + /// Set to true if you need to be standing, false if you need to not be standing, null if you don't care. + /// + [DataField] + public bool? Standing; } [Serializable, NetSerializable] diff --git a/Content.Shared/Clothing/ClothingSpeedModifierSystem.cs b/Content.Shared/Clothing/ClothingSpeedModifierSystem.cs index fc2099ba4e..b7f57c3f3e 100644 --- a/Content.Shared/Clothing/ClothingSpeedModifierSystem.cs +++ b/Content.Shared/Clothing/ClothingSpeedModifierSystem.cs @@ -3,6 +3,7 @@ using Content.Shared.Inventory; using Content.Shared.Item.ItemToggle; using Content.Shared.Item.ItemToggle.Components; using Content.Shared.Movement.Systems; +using Content.Shared.Standing; using Content.Shared.Verbs; using Robust.Shared.Containers; using Robust.Shared.GameStates; @@ -12,10 +13,11 @@ namespace Content.Shared.Clothing; public sealed class ClothingSpeedModifierSystem : EntitySystem { - [Dependency] private readonly SharedContainerSystem _container = default!; [Dependency] private readonly ExamineSystemShared _examine = default!; - [Dependency] private readonly MovementSpeedModifierSystem _movementSpeed = default!; [Dependency] private readonly ItemToggleSystem _toggle = default!; + [Dependency] private readonly MovementSpeedModifierSystem _movementSpeed = default!; + [Dependency] private readonly SharedContainerSystem _container = default!; + [Dependency] private readonly StandingStateSystem _standing = default!; public override void Initialize() { @@ -54,8 +56,13 @@ public sealed class ClothingSpeedModifierSystem : EntitySystem private void OnRefreshMoveSpeed(EntityUid uid, ClothingSpeedModifierComponent component, InventoryRelayedEvent args) { - if (_toggle.IsActivated(uid)) - args.Args.ModifySpeed(component.WalkModifier, component.SprintModifier); + if (!_toggle.IsActivated(uid)) + return; + + if (component.Standing != null && !_standing.IsMatchingState(args.Owner, component.Standing.Value)) + return; + + args.Args.ModifySpeed(component.WalkModifier, component.SprintModifier); } private void OnClothingVerbExamine(EntityUid uid, ClothingSpeedModifierComponent component, GetVerbsEvent args) diff --git a/Content.Shared/Clothing/EntitySystems/AntiGravityClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/AntiGravityClothingSystem.cs index c5b2ee3dfc..554db51a23 100644 --- a/Content.Shared/Clothing/EntitySystems/AntiGravityClothingSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/AntiGravityClothingSystem.cs @@ -1,23 +1,64 @@ using Content.Shared.Clothing.Components; using Content.Shared.Gravity; using Content.Shared.Inventory; +using Content.Shared.Standing; namespace Content.Shared.Clothing.EntitySystems; +/// +/// We check standing state on all clothing because we don't want you to have anti-gravity unless you're standing. +/// This is for balance reasons as it prevents you from wearing anti-grav clothing to cheese being stun cuffed, as +/// well as other worse things. +/// public sealed class AntiGravityClothingSystem : EntitySystem { + [Dependency] private readonly StandingStateSystem _standing = default!; + [Dependency] private readonly SharedGravitySystem _gravity = default!; + /// public override void Initialize() { SubscribeLocalEvent>(OnIsWeightless); + SubscribeLocalEvent(OnEquipped); + SubscribeLocalEvent(OnUnequipped); + SubscribeLocalEvent>(OnDowned); + SubscribeLocalEvent>(OnStood); } private void OnIsWeightless(Entity ent, ref InventoryRelayedEvent args) { - if (args.Args.Handled) + if (args.Args.Handled || _standing.IsDown(args.Owner)) return; args.Args.Handled = true; args.Args.IsWeightless = true; } + + private void OnEquipped(Entity entity, ref ClothingGotEquippedEvent args) + { + // This clothing item does nothing if we're not standing + if (_standing.IsDown(args.Wearer)) + return; + + _gravity.RefreshWeightless(args.Wearer, true); + } + + private void OnUnequipped(Entity entity, ref ClothingGotUnequippedEvent args) + { + // This clothing item does nothing if we're not standing + if (_standing.IsDown(args.Wearer)) + return; + + _gravity.RefreshWeightless(args.Wearer, false); + } + + private void OnDowned(Entity entity, ref InventoryRelayedEvent args) + { + _gravity.RefreshWeightless(args.Owner, false); + } + + private void OnStood(Entity entity, ref InventoryRelayedEvent args) + { + _gravity.RefreshWeightless(args.Owner, true); + } } diff --git a/Content.Shared/Clothing/EntitySystems/ToggleableClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/ToggleableClothingSystem.cs index 334f88af6d..a2b7d01641 100644 --- a/Content.Shared/Clothing/EntitySystems/ToggleableClothingSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/ToggleableClothingSystem.cs @@ -213,7 +213,7 @@ public sealed class ToggleableClothingSystem : EntitySystem if (!TryComp(component.AttachedUid, out ToggleableClothingComponent? toggleComp)) return; - if (toggleComp.LifeStage > ComponentLifeStage.Running) + if (LifeStage(component.AttachedUid) > EntityLifeStage.MapInitialized) return; // As unequipped gets called in the middle of container removal, we cannot call a container-insert without causing issues. diff --git a/Content.Shared/Clothing/LoadoutSystem.cs b/Content.Shared/Clothing/LoadoutSystem.cs index 93b0abfd82..08b4f5f763 100644 --- a/Content.Shared/Clothing/LoadoutSystem.cs +++ b/Content.Shared/Clothing/LoadoutSystem.cs @@ -150,7 +150,7 @@ public sealed class LoadoutSystem : EntitySystem { // First, randomly pick a startingGear profile from those specified, and equip it. if (startingGear != null && startingGear.Count > 0) - _station.EquipStartingGear(uid, _random.Pick(startingGear)); + _station.EquipStartingGear(uid, _random.Pick(startingGear), false); if (loadoutGroups == null) { diff --git a/Content.Shared/Clothing/MagbootsComponent.cs b/Content.Shared/Clothing/MagbootsComponent.cs index 4bef74fd33..c0a8b40866 100644 --- a/Content.Shared/Clothing/MagbootsComponent.cs +++ b/Content.Shared/Clothing/MagbootsComponent.cs @@ -1,4 +1,5 @@ using Content.Shared.Alert; +using Content.Shared.Inventory; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; @@ -16,10 +17,4 @@ public sealed partial class MagbootsComponent : Component /// [DataField] public bool RequiresGrid = true; - - /// - /// Slot the clothing has to be worn in to work. - /// - [DataField] - public string Slot = "shoes"; } diff --git a/Content.Shared/Clothing/MagbootsSystem.cs b/Content.Shared/Clothing/MagbootsSystem.cs index fd5a2cc336..d00211fa65 100644 --- a/Content.Shared/Clothing/MagbootsSystem.cs +++ b/Content.Shared/Clothing/MagbootsSystem.cs @@ -32,14 +32,8 @@ public sealed class SharedMagbootsSystem : EntitySystem private void OnToggled(Entity ent, ref ItemToggledEvent args) { - var (uid, comp) = ent; - // only stick to the floor if being worn in the correct slot - if (_container.TryGetContainingContainer((uid, null, null), out var container) && - _inventory.TryGetSlotEntity(container.Owner, comp.Slot, out var worn) - && uid == worn) - { + if (_container.TryGetContainingContainer((ent.Owner, null, null), out var container)) UpdateMagbootEffects(container.Owner, ent, args.Activated); - } } private void OnGotUnequipped(Entity ent, ref ClothingGotUnequippedEvent args) @@ -58,6 +52,8 @@ public sealed class SharedMagbootsSystem : EntitySystem if (TryComp(user, out var moved)) moved.Enabled = !state; + _gravity.RefreshWeightless(user); + if (state) _alerts.ShowAlert(user, ent.Comp.MagbootsAlert); else diff --git a/Content.Shared/Construction/Components/AnchorableComponent.cs b/Content.Shared/Construction/Components/AnchorableComponent.cs index 064f839efa..e17a49937a 100644 --- a/Content.Shared/Construction/Components/AnchorableComponent.cs +++ b/Content.Shared/Construction/Components/AnchorableComponent.cs @@ -2,7 +2,6 @@ using Content.Shared.Construction.EntitySystems; using Content.Shared.Tools; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Shared.Construction.Components { diff --git a/Content.Shared/Construction/EntitySystems/AnchorableSystem.cs b/Content.Shared/Construction/EntitySystems/AnchorableSystem.cs index e690b93826..d53a100acc 100644 --- a/Content.Shared/Construction/EntitySystems/AnchorableSystem.cs +++ b/Content.Shared/Construction/EntitySystems/AnchorableSystem.cs @@ -102,6 +102,13 @@ public sealed partial class AnchorableSystem : EntitySystem private void OnAnchoredExamine(EntityUid uid, AnchorableComponent component, ExaminedEvent args) { var isAnchored = Comp(uid).Anchored; + + if (isAnchored && (component.Flags & AnchorableFlags.Unanchorable) == 0x0) + return; + + if (!isAnchored && (component.Flags & AnchorableFlags.Anchorable) == 0x0) + return; + var messageId = isAnchored ? "examinable-anchored" : "examinable-unanchored"; args.PushMarkup(Loc.GetString(messageId, ("target", uid))); } diff --git a/Content.Shared/DoAfter/SharedDoAfterSystem.Update.cs b/Content.Shared/DoAfter/SharedDoAfterSystem.Update.cs index 31ff034809..c70c7ab61e 100644 --- a/Content.Shared/DoAfter/SharedDoAfterSystem.Update.cs +++ b/Content.Shared/DoAfter/SharedDoAfterSystem.Update.cs @@ -164,12 +164,11 @@ public abstract partial class SharedDoAfterSystem : EntitySystem if (args.Target is { } target && !xformQuery.TryGetComponent(target, out targetXform)) return true; - TransformComponent? usedXform = null; - if (args.Used is { } @using && !xformQuery.TryGetComponent(@using, out usedXform)) + if (args.Used is { } @using && !xformQuery.HasComp(@using)) return true; // TODO: Re-use existing xform query for these calculations. - if (args.BreakOnMove && !(!args.BreakOnWeightlessMove && _gravity.IsWeightless(args.User, xform: userXform))) + if (args.BreakOnMove && !(!args.BreakOnWeightlessMove && _gravity.IsWeightless(args.User))) { // Whether the user has moved too much from their original position. if (!_transform.InRange(userXform.Coordinates, doAfter.UserPosition, args.MovementThreshold)) diff --git a/Content.Shared/Drunk/DrunkComponent.cs b/Content.Shared/Drunk/DrunkComponent.cs deleted file mode 100644 index 61c195d27e..0000000000 --- a/Content.Shared/Drunk/DrunkComponent.cs +++ /dev/null @@ -1,6 +0,0 @@ -using Robust.Shared.GameStates; - -namespace Content.Shared.Drunk; - -[RegisterComponent, NetworkedComponent] -public sealed partial class DrunkComponent : Component { } diff --git a/Content.Shared/Drunk/DrunkStatusEffectComponent.cs b/Content.Shared/Drunk/DrunkStatusEffectComponent.cs new file mode 100644 index 0000000000..69ad7c3ad9 --- /dev/null +++ b/Content.Shared/Drunk/DrunkStatusEffectComponent.cs @@ -0,0 +1,11 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Drunk; + +/// +/// This is used by a status effect entity to apply the to an entity. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class DrunkStatusEffectComponent : Component +{ +} diff --git a/Content.Shared/Drunk/DrunkSystem.cs b/Content.Shared/Drunk/DrunkSystem.cs deleted file mode 100644 index 236ce2dcd3..0000000000 --- a/Content.Shared/Drunk/DrunkSystem.cs +++ /dev/null @@ -1,48 +0,0 @@ -using Content.Shared.Speech.EntitySystems; -using Content.Shared.StatusEffect; -using Content.Shared.Traits.Assorted; -using Robust.Shared.Prototypes; - -namespace Content.Shared.Drunk; - -public abstract class SharedDrunkSystem : EntitySystem -{ - public static readonly ProtoId DrunkKey = "Drunk"; - - [Dependency] private readonly StatusEffectsSystem _statusEffectsSystem = default!; - [Dependency] private readonly SharedSlurredSystem _slurredSystem = default!; - - public void TryApplyDrunkenness(EntityUid uid, float boozePower, bool applySlur = true, - StatusEffectsComponent? status = null) - { - if (!Resolve(uid, ref status, false)) - return; - - if (TryComp(uid, out var trait)) - boozePower *= trait.BoozeStrengthMultiplier; - - if (applySlur) - { - _slurredSystem.DoSlur(uid, TimeSpan.FromSeconds(boozePower), status); - } - - if (!_statusEffectsSystem.HasStatusEffect(uid, DrunkKey, status)) - { - _statusEffectsSystem.TryAddStatusEffect(uid, DrunkKey, TimeSpan.FromSeconds(boozePower), true, status); - } - else - { - _statusEffectsSystem.TryAddTime(uid, DrunkKey, TimeSpan.FromSeconds(boozePower), status); - } - } - - public void TryRemoveDrunkenness(EntityUid uid) - { - _statusEffectsSystem.TryRemoveStatusEffect(uid, DrunkKey); - } - public void TryRemoveDrunkenessTime(EntityUid uid, double timeRemoved) - { - _statusEffectsSystem.TryRemoveTime(uid, DrunkKey, TimeSpan.FromSeconds(timeRemoved)); - } - -} diff --git a/Content.Shared/Drunk/SharedDrunkSystem.cs b/Content.Shared/Drunk/SharedDrunkSystem.cs new file mode 100644 index 0000000000..96aff82fa0 --- /dev/null +++ b/Content.Shared/Drunk/SharedDrunkSystem.cs @@ -0,0 +1,50 @@ +using Content.Shared.Speech.EntitySystems; +using Content.Shared.StatusEffectNew; +using Content.Shared.Traits.Assorted; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Drunk; + +public abstract class SharedDrunkSystem : EntitySystem +{ + public static EntProtoId Drunk = "StatusEffectDrunk"; + public static EntProtoId Woozy = "StatusEffectWoozy"; + + /* I have no clue why this magic number was chosen, I copied it from slur system and needed it for the overlay + If you have a more intelligent magic number be my guest to completely explode this value. + There were no comments as to why this value was chosen three years ago. */ + public static float MagicNumber = 1100f; + + [Dependency] protected readonly StatusEffectsSystem Status = default!; + + public override void Initialize() + { + SubscribeLocalEvent(OnLightweightDrinking); + } + + public void TryApplyDrunkenness(EntityUid uid, TimeSpan boozePower) + { + var ev = new DrunkEvent(boozePower); + RaiseLocalEvent(uid, ref ev); + + Status.TryAddStatusEffectDuration(uid, Drunk, ev.Duration); + } + + public void TryRemoveDrunkenness(EntityUid uid) + { + Status.TryRemoveStatusEffect(uid, Drunk); + } + + public void TryRemoveDrunkennessTime(EntityUid uid, TimeSpan boozePower) + { + Status.TryAddTime(uid, Drunk, - boozePower); + } + + private void OnLightweightDrinking(Entity entity, ref DrunkEvent args) + { + args.Duration *= entity.Comp.BoozeStrengthMultiplier; + } + + [ByRefEvent] + public record struct DrunkEvent(TimeSpan Duration); +} diff --git a/Content.Shared/Engineering/Components/InflatableSafeDisassemblyComponent.cs b/Content.Shared/Engineering/Components/InflatableSafeDisassemblyComponent.cs new file mode 100644 index 0000000000..47591b6eb9 --- /dev/null +++ b/Content.Shared/Engineering/Components/InflatableSafeDisassemblyComponent.cs @@ -0,0 +1,14 @@ +using Content.Shared.Engineering.Systems; +using Content.Shared.Weapons.Melee.Balloon; + +namespace Content.Shared.Engineering.Components; + +/// +/// Implements logic to allow inflatable objects to be safely deflated by items. +/// +/// +/// The owning entity must have to implement the logic. +/// +/// +[RegisterComponent] +public sealed partial class InflatableSafeDisassemblyComponent : Component; diff --git a/Content.Shared/Engineering/Systems/DisassembleOnAltVerbSystem.cs b/Content.Shared/Engineering/Systems/DisassembleOnAltVerbSystem.cs index 150688d3d4..0c2e5398fc 100644 --- a/Content.Shared/Engineering/Systems/DisassembleOnAltVerbSystem.cs +++ b/Content.Shared/Engineering/Systems/DisassembleOnAltVerbSystem.cs @@ -19,14 +19,12 @@ public sealed partial class DisassembleOnAltVerbSystem : EntitySystem SubscribeLocalEvent>(AddDisassembleVerb); SubscribeLocalEvent(OnDisassembleDoAfter); } - private void AddDisassembleVerb(Entity entity, ref GetVerbsEvent args) - { - if (!args.CanInteract || !args.CanAccess || args.Hands == null) - return; + public void StartDisassembly(Entity entity, EntityUid user) + { // Doafter setup var doAfterArgs = new DoAfterArgs(EntityManager, - args.User, + user, entity.Comp.DisassembleTime, new DisassembleDoAfterEvent(), entity, @@ -35,12 +33,22 @@ public sealed partial class DisassembleOnAltVerbSystem : EntitySystem BreakOnMove = true, }; + _doAfter.TryStartDoAfter(doAfterArgs); + } + + private void AddDisassembleVerb(Entity entity, ref GetVerbsEvent args) + { + if (!args.CanInteract || !args.CanAccess || args.Hands == null) + return; + + var user = args.User; + // Actual verb stuff AlternativeVerb verb = new() { Act = () => { - _doAfter.TryStartDoAfter(doAfterArgs); + StartDisassembly(entity, user); }, Text = Loc.GetString("disassemble-system-verb-disassemble"), Priority = 2 diff --git a/Content.Shared/Engineering/Systems/InflatableSafeDisassemblySystem.cs b/Content.Shared/Engineering/Systems/InflatableSafeDisassemblySystem.cs new file mode 100644 index 0000000000..7852036330 --- /dev/null +++ b/Content.Shared/Engineering/Systems/InflatableSafeDisassemblySystem.cs @@ -0,0 +1,39 @@ +using Content.Shared.Engineering.Components; +using Content.Shared.Interaction; +using Content.Shared.Popups; +using Content.Shared.Weapons.Melee.Balloon; + +namespace Content.Shared.Engineering.Systems; + +/// +/// Implements +/// +public sealed class InflatableSafeDisassemblySystem : EntitySystem +{ + [Dependency] private readonly DisassembleOnAltVerbSystem _disassembleOnAltVerbSystem = null!; + [Dependency] private readonly SharedPopupSystem _popupSystem = null!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(InteractHandler); + } + + private void InteractHandler(Entity ent, ref InteractUsingEvent args) + { + if (args.Handled) + return; + + if (!HasComp(args.Used)) + return; + + _popupSystem.PopupPredicted( + Loc.GetString("inflatable-safe-disassembly", ("item", args.Used), ("target", ent.Owner)), + ent, + args.User); + + _disassembleOnAltVerbSystem.StartDisassembly((ent, Comp(ent)), args.User); + args.Handled = true; + } +} diff --git a/Content.Shared/EntityEffects/EffectConditions/JobCondition.cs b/Content.Shared/EntityEffects/EffectConditions/JobCondition.cs index 0b942a3e09..96f3be64c6 100644 --- a/Content.Shared/EntityEffects/EffectConditions/JobCondition.cs +++ b/Content.Shared/EntityEffects/EffectConditions/JobCondition.cs @@ -16,13 +16,13 @@ public sealed partial class JobCondition : EntityEffectCondition { args.EntityManager.TryGetComponent(args.TargetEntity, out var mindContainer); - if ( mindContainer is null - || !args.EntityManager.TryGetComponent(mindContainer.Mind, out var mind)) + if (mindContainer is null + || !args.EntityManager.TryGetComponent(mindContainer.Mind, out var mind)) return false; - foreach (var roleId in mind.MindRoles) + foreach (var roleId in mind.MindRoleContainer.ContainedEntities) { - if(!args.EntityManager.HasComponent(roleId)) + if (!args.EntityManager.HasComponent(roleId)) continue; if (!args.EntityManager.TryGetComponent(roleId, out var mindRole)) diff --git a/Content.Shared/EntityEffects/Effects/Drunk.cs b/Content.Shared/EntityEffects/Effects/Drunk.cs index 5f7f29c342..aa15df8f3d 100644 --- a/Content.Shared/EntityEffects/Effects/Drunk.cs +++ b/Content.Shared/EntityEffects/Effects/Drunk.cs @@ -9,13 +9,7 @@ public sealed partial class Drunk : EntityEffect /// BoozePower is how long each metabolism cycle will make the drunk effect last for. /// [DataField] - public float BoozePower = 3f; - - /// - /// Whether speech should be slurred. - /// - [DataField] - public bool SlurSpeech = true; + public TimeSpan BoozePower = TimeSpan.FromSeconds(3f); protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) => Loc.GetString("reagent-effect-guidebook-drunk", ("chance", Probability)); @@ -24,11 +18,10 @@ public sealed partial class Drunk : EntityEffect { var boozePower = BoozePower; - if (args is EntityEffectReagentArgs reagentArgs) { + if (args is EntityEffectReagentArgs reagentArgs) boozePower *= reagentArgs.Scale.Float(); - } var drunkSys = args.EntityManager.EntitySysManager.GetEntitySystem(); - drunkSys.TryApplyDrunkenness(args.TargetEntity, boozePower, SlurSpeech); + drunkSys.TryApplyDrunkenness(args.TargetEntity, boozePower); } } diff --git a/Content.Shared/EntityTable/Conditions/HasBudgetCondition.cs b/Content.Shared/EntityTable/Conditions/HasBudgetCondition.cs new file mode 100644 index 0000000000..f2489d04aa --- /dev/null +++ b/Content.Shared/EntityTable/Conditions/HasBudgetCondition.cs @@ -0,0 +1,51 @@ +using Content.Shared.EntityTable.EntitySelectors; +using Content.Shared.GameTicking.Rules; +using Robust.Shared.Prototypes; + +namespace Content.Shared.EntityTable.Conditions; + +/// +/// Condition that only succeeds if a table supplies a sufficient "cost" to a given +/// +public sealed partial class HasBudgetCondition : EntityTableCondition +{ + public const string BudgetContextKey = "Budget"; + + /// + /// Used for determining the cost for the budget. + /// If null, attempts to fetch the cost from the attached selector. + /// + [DataField] + public int? CostOverride; + + protected override bool EvaluateImplementation(EntityTableSelector root, + IEntityManager entMan, + IPrototypeManager proto, + EntityTableContext ctx) + { + if (!ctx.TryGetData(BudgetContextKey, out var budget)) + return false; + + int cost; + if (CostOverride != null) + { + cost = CostOverride.Value; + } + else + { + if (root is not EntSelector entSelector) + return false; + + if (!proto.Index(entSelector.Id).TryGetComponent(out DynamicRuleCostComponent? costComponent, entMan.ComponentFactory)) + { + var log = Logger.GetSawmill("HasBudgetCondition"); + log.Error($"Rule {entSelector.Id} does not have a DynamicRuleCostComponent."); + return false; + } + + cost = costComponent.Cost; + } + + return budget >= cost; + } +} diff --git a/Content.Shared/EntityTable/Conditions/MaxRuleOccurenceCondition.cs b/Content.Shared/EntityTable/Conditions/MaxRuleOccurenceCondition.cs new file mode 100644 index 0000000000..1e55feb338 --- /dev/null +++ b/Content.Shared/EntityTable/Conditions/MaxRuleOccurenceCondition.cs @@ -0,0 +1,54 @@ +using System.Linq; +using Content.Shared.EntityTable.EntitySelectors; +using Content.Shared.GameTicking; +using Robust.Shared.Prototypes; + +namespace Content.Shared.EntityTable.Conditions; + +/// +/// Condition that succeeds only when the specified gamerule has been run under a certain amount of times +/// +/// +/// This is meant to be attached directly to EntSelector. If it is not, then you'll need to specify what rule +/// is being used inside RuleOverride. +/// +public sealed partial class MaxRuleOccurenceCondition : EntityTableCondition +{ + /// + /// The maximum amount of times this rule can have already be run. + /// + [DataField] + public int Max = 1; + + /// + /// The rule that is being checked for occurrences. + /// If null, it will use the value on the attached selector. + /// + [DataField] + public EntProtoId? RuleOverride; + + protected override bool EvaluateImplementation(EntityTableSelector root, + IEntityManager entMan, + IPrototypeManager proto, + EntityTableContext ctx) + { + string rule; + if (RuleOverride is { } ruleOverride) + { + rule = ruleOverride; + } + else + { + rule = root is EntSelector entSelector + ? entSelector.Id + : string.Empty; + } + + if (rule == string.Empty) + return false; + + var gameTicker = entMan.System(); + + return gameTicker.AllPreviousGameRules.Count(p => p.Item2 == rule) < Max; + } +} diff --git a/Content.Shared/EntityTable/Conditions/ReoccurrenceDelayCondition.cs b/Content.Shared/EntityTable/Conditions/ReoccurrenceDelayCondition.cs new file mode 100644 index 0000000000..0329592a4a --- /dev/null +++ b/Content.Shared/EntityTable/Conditions/ReoccurrenceDelayCondition.cs @@ -0,0 +1,49 @@ +using System.ComponentModel.DataAnnotations; +using System.Linq; +using Content.Shared.EntityTable.EntitySelectors; +using Content.Shared.GameTicking; +using Robust.Shared.Prototypes; + +namespace Content.Shared.EntityTable.Conditions; + +public sealed partial class ReoccurrenceDelayCondition : EntityTableCondition +{ + /// + /// The maximum amount of times this rule can have already be run. + /// + [DataField] + public TimeSpan Delay = TimeSpan.Zero; + + /// + /// The rule that is being checked for occurrences. + /// If null, it will use the value on the attached selector. + /// + [DataField] + public EntProtoId? RuleOverride; + + protected override bool EvaluateImplementation(EntityTableSelector root, + IEntityManager entMan, + IPrototypeManager proto, + EntityTableContext ctx) + { + string rule; + if (RuleOverride is { } ruleOverride) + { + rule = ruleOverride; + } + else + { + rule = root is EntSelector entSelector + ? entSelector.Id + : string.Empty; + } + + if (rule == string.Empty) + return false; + + var gameTicker = entMan.System(); + + return gameTicker.AllPreviousGameRules.Any( + p => p.Item2 == rule && p.Item1 + Delay <= gameTicker.RoundDuration()); + } +} diff --git a/Content.Shared/EntityTable/Conditions/RoundDurationCondition.cs b/Content.Shared/EntityTable/Conditions/RoundDurationCondition.cs new file mode 100644 index 0000000000..518faf4bc6 --- /dev/null +++ b/Content.Shared/EntityTable/Conditions/RoundDurationCondition.cs @@ -0,0 +1,34 @@ +using Content.Shared.EntityTable.EntitySelectors; +using Content.Shared.GameTicking; +using Robust.Shared.Prototypes; + +namespace Content.Shared.EntityTable.Conditions; + +/// +/// Condition that passes only if the current round time falls between the minimum and maximum time values. +/// +public sealed partial class RoundDurationCondition : EntityTableCondition +{ + /// + /// Minimum time the round must have gone on for this condition to pass. + /// + [DataField] + public TimeSpan Min = TimeSpan.Zero; + + /// + /// Maximum amount of time the round could go on for this condition to pass. + /// + [DataField] + public TimeSpan Max = TimeSpan.MaxValue; + + protected override bool EvaluateImplementation(EntityTableSelector root, + IEntityManager entMan, + IPrototypeManager proto, + EntityTableContext ctx) + { + var gameTicker = entMan.System(); + var duration = gameTicker.RoundDuration(); + + return duration >= Min && duration <= Max; + } +} diff --git a/Content.Shared/EntityTable/EntitySelectors/GroupSelector.cs b/Content.Shared/EntityTable/EntitySelectors/GroupSelector.cs index 25c81a4565..0d2a451bdc 100644 --- a/Content.Shared/EntityTable/EntitySelectors/GroupSelector.cs +++ b/Content.Shared/EntityTable/EntitySelectors/GroupSelector.cs @@ -26,6 +26,9 @@ public sealed partial class GroupSelector : EntityTableSelector children.Add(child, child.Weight); } + if (children.Count == 0) + return Array.Empty(); + var pick = SharedRandomExtensions.Pick(children, rand); return pick.GetSpawns(rand, entMan, proto, ctx); diff --git a/Content.Shared/Flash/SharedFlashSystem.cs b/Content.Shared/Flash/SharedFlashSystem.cs index dd6c9c91c1..7f69e86042 100644 --- a/Content.Shared/Flash/SharedFlashSystem.cs +++ b/Content.Shared/Flash/SharedFlashSystem.cs @@ -21,6 +21,7 @@ using Robust.Shared.Random; using Robust.Shared.Timing; using System.Linq; using Content.Shared.Movement.Systems; +using Content.Shared.Random.Helpers; namespace Content.Shared.Flash; @@ -204,7 +205,8 @@ public abstract class SharedFlashSystem : EntitySystem foreach (var entity in _entSet) { // TODO: Use RandomPredicted https://github.com/space-wizards/RobustToolbox/pull/5849 - var rand = new System.Random((int)_timing.CurTick.Value + GetNetEntity(entity).Id); + var seed = SharedRandomExtensions.HashCodeCombine(new() { (int)_timing.CurTick.Value, GetNetEntity(entity).Id }); + var rand = new System.Random(seed); if (!rand.Prob(probability)) continue; diff --git a/Content.Shared/Fluids/SharedPuddleSystem.cs b/Content.Shared/Fluids/SharedPuddleSystem.cs index a2f0764ce0..2d0fffa37b 100644 --- a/Content.Shared/Fluids/SharedPuddleSystem.cs +++ b/Content.Shared/Fluids/SharedPuddleSystem.cs @@ -22,11 +22,7 @@ public abstract partial class SharedPuddleSystem : EntitySystem [Dependency] private readonly SharedSolutionContainerSystem _solutionContainerSystem = default!; [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; - private static readonly ProtoId Blood = "Blood"; - private static readonly ProtoId Slime = "Slime"; - private static readonly ProtoId CopperBlood = "CopperBlood"; - - private static readonly string[] StandoutReagents = [Blood, Slime, CopperBlood]; + private string[] _standoutReagents = []; /// /// The lowest threshold to be considered for puddle sprite states as well as slipperiness of a puddle. @@ -48,9 +44,26 @@ public abstract partial class SharedPuddleSystem : EntitySystem SubscribeLocalEvent(HandlePuddleExamined); SubscribeLocalEvent(OnEntRemoved); + SubscribeLocalEvent(OnPrototypesReloaded); + + CacheStandsout(); InitializeSpillable(); } + private void OnPrototypesReloaded(PrototypesReloadedEventArgs ev) + { + if (ev.WasModified()) + CacheStandsout(); + } + + /// + /// Used to cache standout reagents for future use. + /// + private void CacheStandsout() + { + _standoutReagents = [.. _prototypeManager.EnumeratePrototypes().Where(x => x.Standsout).Select(x => x.ID)]; + } + protected virtual void OnSolutionUpdate(Entity entity, ref SolutionContainerChangedEvent args) { if (args.SolutionId != entity.Comp.SolutionName) @@ -158,10 +171,10 @@ public abstract partial class SharedPuddleSystem : EntitySystem // Kinda EH // Could potentially do alpha per-solution but future problem. - color = solution.GetColorWithout(_prototypeManager, StandoutReagents); + color = solution.GetColorWithout(_prototypeManager, _standoutReagents); color = color.WithAlpha(0.7f); - foreach (var standout in StandoutReagents) + foreach (var standout in _standoutReagents) { var quantity = solution.GetTotalPrototypeQuantity(standout); if (quantity <= FixedPoint2.Zero) diff --git a/Content.Shared/Friction/TileFrictionController.cs b/Content.Shared/Friction/TileFrictionController.cs index 36e971862a..4b29b9a9de 100644 --- a/Content.Shared/Friction/TileFrictionController.cs +++ b/Content.Shared/Friction/TileFrictionController.cs @@ -73,7 +73,7 @@ namespace Content.Shared.Friction // If we're not touching the ground, don't use tileFriction. // TODO: Make IsWeightless event-based; we already have grid traversals tracked so just raise events - if (body.BodyStatus == BodyStatus.InAir || _gravity.IsWeightless(uid, body, xform) || !xform.Coordinates.IsValid(EntityManager)) + if (body.BodyStatus == BodyStatus.InAir || _gravity.IsWeightless(uid) || !xform.Coordinates.IsValid(EntityManager)) friction = xform.GridUid == null || !_gridQuery.HasComp(xform.GridUid) ? _offGridDamping : _airDamping; else friction = _frictionModifier * GetTileFriction(uid, body, xform); diff --git a/Content.Shared/GameTicking/Rules/DynamicRuleComponent.cs b/Content.Shared/GameTicking/Rules/DynamicRuleComponent.cs new file mode 100644 index 0000000000..7782717758 --- /dev/null +++ b/Content.Shared/GameTicking/Rules/DynamicRuleComponent.cs @@ -0,0 +1,71 @@ +using Content.Shared.EntityTable.EntitySelectors; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; + +namespace Content.Shared.GameTicking.Rules; + +/// +/// Gamerule the spawns multiple antags at intervals based on a budget +/// +[RegisterComponent, AutoGenerateComponentPause] +public sealed partial class DynamicRuleComponent : Component +{ + /// + /// The total budget for antags. + /// + [DataField] + public float Budget; + + /// + /// The last time budget was updated. + /// + [DataField] + public TimeSpan LastBudgetUpdate; + + /// + /// The amount of budget accumulated every second. + /// + [DataField] + public float BudgetPerSecond = 0.1f; + + /// + /// The minimum or lower bound for budgets to start at. + /// + [DataField] + public int StartingBudgetMin = 200; + + /// + /// The maximum or upper bound for budgets to start at. + /// + [DataField] + public int StartingBudgetMax = 350; + + /// + /// The time at which the next rule will start + /// + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer)), AutoPausedField] + public TimeSpan NextRuleTime; + + /// + /// Minimum delay between rules + /// + [DataField] + public TimeSpan MinRuleInterval = TimeSpan.FromMinutes(10); + + /// + /// Maximum delay between rules + /// + [DataField] + public TimeSpan MaxRuleInterval = TimeSpan.FromMinutes(30); + + /// + /// A table of rules that are picked from. + /// + [DataField] + public EntityTableSelector Table = new NoneSelector(); + + /// + /// The rules that have been spawned + /// + [DataField] + public List Rules = new(); +} diff --git a/Content.Shared/GameTicking/Rules/DynamicRuleCostComponent.cs b/Content.Shared/GameTicking/Rules/DynamicRuleCostComponent.cs new file mode 100644 index 0000000000..180b168dc1 --- /dev/null +++ b/Content.Shared/GameTicking/Rules/DynamicRuleCostComponent.cs @@ -0,0 +1,14 @@ +namespace Content.Shared.GameTicking.Rules; + +/// +/// Component that tracks how much a rule "costs" for Dynamic +/// +[RegisterComponent] +public sealed partial class DynamicRuleCostComponent : Component +{ + /// + /// The amount of budget a rule takes up + /// + [DataField(required: true)] + public int Cost; +} diff --git a/Content.Shared/GameTicking/SharedGameTicker.cs b/Content.Shared/GameTicking/SharedGameTicker.cs index 5d596815f4..a2a4efc53d 100644 --- a/Content.Shared/GameTicking/SharedGameTicker.cs +++ b/Content.Shared/GameTicking/SharedGameTicker.cs @@ -15,6 +15,12 @@ namespace Content.Shared.GameTicking [Dependency] private readonly IReplayRecordingManager _replay = default!; [Dependency] private readonly IGameTiming _gameTiming = default!; + /// + /// A list storing the start times of all game rules that have been started this round. + /// Game rules can be started and stopped at any time, including midround. + /// + public abstract IReadOnlyList<(TimeSpan, string)> AllPreviousGameRules { get; } + // See ideally these would be pulled from the job definition or something. // But this is easier, and at least it isn't hardcoded. //TODO: Move these, they really belong in StationJobsSystem or a cvar. diff --git a/Content.Shared/Gravity/FloatingVisualsComponent.cs b/Content.Shared/Gravity/FloatingVisualsComponent.cs index 67650baecd..c0064ebf78 100644 --- a/Content.Shared/Gravity/FloatingVisualsComponent.cs +++ b/Content.Shared/Gravity/FloatingVisualsComponent.cs @@ -10,20 +10,17 @@ public sealed partial class FloatingVisualsComponent : Component /// /// How long it takes to go from the bottom of the animation to the top. /// - [ViewVariables(VVAccess.ReadWrite)] [DataField, AutoNetworkedField] public float AnimationTime = 2f; /// /// How far it goes in any direction. /// - [ViewVariables(VVAccess.ReadWrite)] [DataField, AutoNetworkedField] public Vector2 Offset = new(0, 0.2f); - [ViewVariables(VVAccess.ReadWrite)] - [AutoNetworkedField] - public bool CanFloat = false; + [DataField, AutoNetworkedField] + public bool CanFloat; public readonly string AnimationKey = "gravity"; } diff --git a/Content.Shared/Gravity/GravityAffectedComponent.cs b/Content.Shared/Gravity/GravityAffectedComponent.cs new file mode 100644 index 0000000000..7991677759 --- /dev/null +++ b/Content.Shared/Gravity/GravityAffectedComponent.cs @@ -0,0 +1,17 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Gravity; + +/// +/// This Component allows a target to be considered "weightless" when Weightless is true. Without this component, the +/// target will never be weightless. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class GravityAffectedComponent : Component +{ + /// + /// If true, this entity will be considered "weightless" + /// + [ViewVariables, AutoNetworkedField] + public bool Weightless = true; +} diff --git a/Content.Shared/Gravity/GravityComponent.cs b/Content.Shared/Gravity/GravityComponent.cs index bbe3de69ea..ede8f74c7a 100644 --- a/Content.Shared/Gravity/GravityComponent.cs +++ b/Content.Shared/Gravity/GravityComponent.cs @@ -5,34 +5,20 @@ using Robust.Shared.Serialization; namespace Content.Shared.Gravity { [RegisterComponent] + [AutoGenerateComponentState] [NetworkedComponent] public sealed partial class GravityComponent : Component { - [DataField("gravityShakeSound")] + [DataField, AutoNetworkedField] public SoundSpecifier GravityShakeSound { get; set; } = new SoundPathSpecifier("/Audio/Effects/alert.ogg"); - [ViewVariables(VVAccess.ReadWrite)] - public bool EnabledVV - { - get => Enabled; - set - { - if (Enabled == value) return; - Enabled = value; - var ev = new GravityChangedEvent(Owner, value); - IoCManager.Resolve().EventBus.RaiseLocalEvent(Owner, ref ev); - Dirty(); - } - } - - [DataField("enabled")] + [DataField, AutoNetworkedField] public bool Enabled; /// /// Inherent gravity ensures GravitySystem won't change Enabled according to the gravity generators attached to this entity. /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("inherent")] + [DataField, AutoNetworkedField] public bool Inherent; } } diff --git a/Content.Shared/Gravity/SharedFloatingVisualizerSystem.cs b/Content.Shared/Gravity/SharedFloatingVisualizerSystem.cs index 6ca974f2ed..ae5c73b498 100644 --- a/Content.Shared/Gravity/SharedFloatingVisualizerSystem.cs +++ b/Content.Shared/Gravity/SharedFloatingVisualizerSystem.cs @@ -8,15 +8,14 @@ namespace Content.Shared.Gravity; /// public abstract class SharedFloatingVisualizerSystem : EntitySystem { - [Dependency] private readonly SharedGravitySystem GravitySystem = default!; + [Dependency] private readonly SharedGravitySystem _gravity = default!; public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnComponentStartup); - SubscribeLocalEvent(OnGravityChanged); - SubscribeLocalEvent(OnEntParentChanged); + SubscribeLocalEvent(OnWeightlessnessChanged); } /// @@ -24,48 +23,28 @@ public abstract class SharedFloatingVisualizerSystem : EntitySystem /// public virtual void FloatAnimation(EntityUid uid, Vector2 offset, string animationKey, float animationTime, bool stop = false) { } - protected bool CanFloat(EntityUid uid, FloatingVisualsComponent component, TransformComponent? transform = null) + protected bool CanFloat(Entity entity) { - if (!Resolve(uid, ref transform)) - return false; - - if (transform.MapID == MapId.Nullspace) - return false; - - component.CanFloat = GravitySystem.IsWeightless(uid, xform: transform); - Dirty(uid, component); - return component.CanFloat; + entity.Comp.CanFloat = _gravity.IsWeightless(entity.Owner); + Dirty(entity); + return entity.Comp.CanFloat; } - private void OnComponentStartup(EntityUid uid, FloatingVisualsComponent component, ComponentStartup args) + private void OnComponentStartup(Entity entity, ref ComponentStartup args) { - if (CanFloat(uid, component)) - FloatAnimation(uid, component.Offset, component.AnimationKey, component.AnimationTime); + if (CanFloat(entity)) + FloatAnimation(entity, entity.Comp.Offset, entity.Comp.AnimationKey, entity.Comp.AnimationTime); } - private void OnGravityChanged(ref GravityChangedEvent args) + private void OnWeightlessnessChanged(Entity entity, ref WeightlessnessChangedEvent args) { - var query = EntityQueryEnumerator(); - while (query.MoveNext(out var uid, out var floating, out var transform)) - { - if (transform.MapID == MapId.Nullspace) - continue; + if (entity.Comp.CanFloat == args.Weightless) + return; - if (transform.GridUid != args.ChangedGridIndex) - continue; + entity.Comp.CanFloat = CanFloat(entity); + Dirty(entity); - floating.CanFloat = !args.HasGravity; - Dirty(uid, floating); - - if (!args.HasGravity) - FloatAnimation(uid, floating.Offset, floating.AnimationKey, floating.AnimationTime); - } - } - - private void OnEntParentChanged(EntityUid uid, FloatingVisualsComponent component, ref EntParentChangedMessage args) - { - var transform = args.Transform; - if (CanFloat(uid, component, transform)) - FloatAnimation(uid, component.Offset, component.AnimationKey, component.AnimationTime); + if (args.Weightless) + FloatAnimation(entity, entity.Comp.Offset, entity.Comp.AnimationKey, entity.Comp.AnimationTime); } } diff --git a/Content.Shared/Gravity/SharedGravitySystem.cs b/Content.Shared/Gravity/SharedGravitySystem.cs index e20771d603..4ba312f4e0 100644 --- a/Content.Shared/Gravity/SharedGravitySystem.cs +++ b/Content.Shared/Gravity/SharedGravitySystem.cs @@ -1,171 +1,255 @@ using Content.Shared.Alert; using Content.Shared.Inventory; -using Content.Shared.Movement.Components; -using Robust.Shared.GameStates; +using Content.Shared.Throwing; +using Content.Shared.Weapons.Ranged.Systems; +using Robust.Shared.Map; using Robust.Shared.Physics; using Robust.Shared.Physics.Components; +using Robust.Shared.Physics.Events; using Robust.Shared.Prototypes; using Robust.Shared.Serialization; using Robust.Shared.Timing; -namespace Content.Shared.Gravity +namespace Content.Shared.Gravity; + +public abstract partial class SharedGravitySystem : EntitySystem { - public abstract partial class SharedGravitySystem : EntitySystem + [Dependency] protected readonly IGameTiming Timing = default!; + [Dependency] private readonly AlertsSystem _alerts = default!; + + public static readonly ProtoId WeightlessAlert = "Weightless"; + + protected EntityQuery GravityQuery; + private EntityQuery _weightlessQuery; + private EntityQuery _physicsQuery; + + public override void Initialize() { - [Dependency] protected readonly IGameTiming Timing = default!; - [Dependency] private readonly AlertsSystem _alerts = default!; + base.Initialize(); + // Grid Gravity + SubscribeLocalEvent(OnGridInit); + SubscribeLocalEvent(OnGravityChange); - public static readonly ProtoId WeightlessAlert = "Weightless"; + // Weightlessness + SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent(OnEntParentChanged); + SubscribeLocalEvent(OnBodyTypeChanged); - private EntityQuery _gravityQuery; + // Alerts + SubscribeLocalEvent(OnAlertsSync); + SubscribeLocalEvent(OnWeightlessnessChanged); + SubscribeLocalEvent(OnAlertsParentChange); - public bool IsWeightless(EntityUid uid, PhysicsComponent? body = null, TransformComponent? xform = null) - { - Resolve(uid, ref body, false); + // Impulse + SubscribeLocalEvent(OnShooterImpulse); + SubscribeLocalEvent(OnThrowerImpulse); - if ((body?.BodyType & (BodyType.Static | BodyType.Kinematic)) != 0) - return false; + GravityQuery = GetEntityQuery(); + _weightlessQuery = GetEntityQuery(); + _physicsQuery = GetEntityQuery(); + } - if (TryComp(uid, out var ignoreGravityComponent)) - return ignoreGravityComponent.Weightless; + public override void Update(float frameTime) + { + base.Update(frameTime); + UpdateShake(); + } - var ev = new IsWeightlessEvent(uid); - RaiseLocalEvent(uid, ref ev); - if (ev.Handled) - return ev.IsWeightless; + public bool IsWeightless(Entity entity) + { + // If we can be weightless and are weightless, return true, otherwise return false + return _weightlessQuery.Resolve(entity, ref entity.Comp, false) && entity.Comp.Weightless; + } - if (!Resolve(uid, ref xform)) - return true; + private bool GetWeightless(Entity entity) + { + if (!_physicsQuery.Resolve(entity, ref entity.Comp2, false)) + return false; - // If grid / map has gravity - if (EntityGridOrMapHaveGravity((uid, xform))) - return false; + if (entity.Comp2.BodyType is BodyType.Static or BodyType.Kinematic) + return false; + // Check if something other than the grid or map is overriding our gravity + var ev = new IsWeightlessEvent(); + RaiseLocalEvent(entity, ref ev); + if (ev.Handled) + return ev.IsWeightless; + + return !EntityGridOrMapHaveGravity(entity.Owner); + } + + /// + /// Refreshes weightlessness status, needs to be called anytime it would change. + /// + /// The entity we are updating the weightless status of + public void RefreshWeightless(Entity entity) + { + if (!_weightlessQuery.Resolve(entity, ref entity.Comp)) + return; + + UpdateWeightless(entity!); + } + + /// + /// Overload of which also takes a bool for the weightlessness value we want to change to. + /// This method should only be called if there is no chance something can override the weightless value you're trying to change to. + /// This is really only the case if you're applying a weightless value that overrides non-conditionally from events or are a grid with the gravity component. + /// + /// The entity we are updating the weightless status of + /// The weightless value we are trying to change to, helps avoid needless networking + public void RefreshWeightless(Entity entity, bool weightless) + { + if (!_weightlessQuery.Resolve(entity, ref entity.Comp)) + return; + + // Only update if we're changing our weightless status + if (entity.Comp.Weightless == weightless) + return; + + UpdateWeightless(entity!); + } + + private void UpdateWeightless(Entity entity) + { + var newWeightless = GetWeightless(entity); + + // Don't network or raise events if it's not changing + if (newWeightless == entity.Comp.Weightless) + return; + + entity.Comp.Weightless = newWeightless; + Dirty(entity); + + var ev = new WeightlessnessChangedEvent(entity.Comp.Weightless); + RaiseLocalEvent(entity, ref ev); + } + + private void OnMapInit(Entity entity, ref MapInitEvent args) + { + RefreshWeightless((entity.Owner, entity.Comp)); + } + + private void OnWeightlessnessChanged(Entity entity, ref WeightlessnessChangedEvent args) + { + if (args.Weightless) + _alerts.ShowAlert(entity, WeightlessAlert); + else + _alerts.ClearAlert(entity, WeightlessAlert); + } + + private void OnEntParentChanged(Entity entity, ref EntParentChangedMessage args) + { + // If we've moved but are still on the same grid, then don't do anything. + if (args.OldParent == args.Transform.GridUid) + return; + + RefreshWeightless((entity.Owner, entity.Comp)); + } + + private void OnBodyTypeChanged(Entity entity, ref PhysicsBodyTypeChangedEvent args) + { + // No need to update weightlessness if we're not weightless and we're a body type that can't be weightless + if (args.New is BodyType.Static or BodyType.Kinematic && entity.Comp.Weightless == false) + return; + + RefreshWeightless((entity.Owner, entity.Comp)); + } + + /// + /// Checks if a given entity is currently standing on a grid or map that supports having gravity at all. + /// + public bool EntityOnGravitySupportingGridOrMap(Entity entity) + { + entity.Comp ??= Transform(entity); + + return GravityQuery.HasComp(entity.Comp.GridUid) || + GravityQuery.HasComp(entity.Comp.MapUid); + } + + /// + /// Checks if a given entity is currently standing on a grid or map that has gravity of some kind. + /// + public bool EntityGridOrMapHaveGravity(Entity entity) + { + entity.Comp ??= Transform(entity); + + // DO NOT SET TO WEIGHTLESS IF THEY'RE IN NULL-SPACE + // TODO: If entities actually properly pause when leaving PVS rather than entering null-space this can probably go. + if (entity.Comp.MapID == MapId.Nullspace) return true; - } - /// - /// Checks if a given entity is currently standing on a grid or map that supports having gravity at all. - /// - public bool EntityOnGravitySupportingGridOrMap(Entity entity) + return GravityQuery.TryComp(entity.Comp.GridUid, out var gravity) && gravity.Enabled || + GravityQuery.TryComp(entity.Comp.MapUid, out var mapGravity) && mapGravity.Enabled; + } + + private void OnGravityChange(ref GravityChangedEvent args) + { + var gravity = AllEntityQuery(); + while(gravity.MoveNext(out var uid, out var weightless, out var xform)) { - entity.Comp ??= Transform(entity); + if (xform.GridUid != args.ChangedGridIndex) + continue; - return _gravityQuery.HasComp(entity.Comp.GridUid) || - _gravityQuery.HasComp(entity.Comp.MapUid); - } - - - /// - /// Checks if a given entity is currently standing on a grid or map that has gravity of some kind. - /// - public bool EntityGridOrMapHaveGravity(Entity entity) - { - entity.Comp ??= Transform(entity); - - return _gravityQuery.TryComp(entity.Comp.GridUid, out var gravity) && gravity.Enabled || - _gravityQuery.TryComp(entity.Comp.MapUid, out var mapGravity) && mapGravity.Enabled; - } - - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent(OnGridInit); - SubscribeLocalEvent(OnAlertsSync); - SubscribeLocalEvent(OnAlertsParentChange); - SubscribeLocalEvent(OnGravityChange); - SubscribeLocalEvent(OnGetState); - SubscribeLocalEvent(OnHandleState); - - _gravityQuery = GetEntityQuery(); - } - - public override void Update(float frameTime) - { - base.Update(frameTime); - UpdateShake(); - } - - private void OnHandleState(EntityUid uid, GravityComponent component, ref ComponentHandleState args) - { - if (args.Current is not GravityComponentState state) - return; - - if (component.EnabledVV == state.Enabled) - return; - component.EnabledVV = state.Enabled; - var ev = new GravityChangedEvent(uid, component.EnabledVV); - RaiseLocalEvent(uid, ref ev, true); - } - - private void OnGetState(EntityUid uid, GravityComponent component, ref ComponentGetState args) - { - args.State = new GravityComponentState(component.EnabledVV); - } - - private void OnGravityChange(ref GravityChangedEvent ev) - { - var alerts = AllEntityQuery(); - while(alerts.MoveNext(out var uid, out _, out var xform)) - { - if (xform.GridUid != ev.ChangedGridIndex) - continue; - - if (!ev.HasGravity) - { - _alerts.ShowAlert(uid, WeightlessAlert); - } - else - { - _alerts.ClearAlert(uid, WeightlessAlert); - } - } - } - - private void OnAlertsSync(AlertSyncEvent ev) - { - if (IsWeightless(ev.Euid)) - { - _alerts.ShowAlert(ev.Euid, WeightlessAlert); - } - else - { - _alerts.ClearAlert(ev.Euid, WeightlessAlert); - } - } - - private void OnAlertsParentChange(EntityUid uid, AlertsComponent component, ref EntParentChangedMessage args) - { - if (IsWeightless(uid)) - { - _alerts.ShowAlert(uid, WeightlessAlert); - } - else - { - _alerts.ClearAlert(uid, WeightlessAlert); - } - } - - private void OnGridInit(GridInitializeEvent ev) - { - EnsureComp(ev.EntityUid); - } - - [Serializable, NetSerializable] - private sealed class GravityComponentState : ComponentState - { - public bool Enabled { get; } - - public GravityComponentState(bool enabled) - { - Enabled = enabled; - } + RefreshWeightless((uid, weightless), !args.HasGravity); } } - [ByRefEvent] - public record struct IsWeightlessEvent(EntityUid Entity, bool IsWeightless = false, bool Handled = false) : IInventoryRelayEvent + private void OnAlertsSync(AlertSyncEvent ev) { - SlotFlags IInventoryRelayEvent.TargetSlots => ~SlotFlags.POCKET; + if (IsWeightless(ev.Euid)) + _alerts.ShowAlert(ev.Euid, WeightlessAlert); + else + _alerts.ClearAlert(ev.Euid, WeightlessAlert); + } + + private void OnAlertsParentChange(EntityUid uid, AlertsComponent component, ref EntParentChangedMessage args) + { + if (IsWeightless(uid)) + _alerts.ShowAlert(uid, WeightlessAlert); + else + _alerts.ClearAlert(uid, WeightlessAlert); + } + + private void OnGridInit(GridInitializeEvent ev) + { + EnsureComp(ev.EntityUid); + } + + [Serializable, NetSerializable] + private sealed class GravityComponentState : ComponentState + { + public bool Enabled { get; } + + public GravityComponentState(bool enabled) + { + Enabled = enabled; + } + } + + private void OnThrowerImpulse(Entity entity, ref ThrowerImpulseEvent args) + { + args.Push = true; + } + + private void OnShooterImpulse(Entity entity, ref ShooterImpulseEvent args) + { + args.Push = true; } } + +/// +/// Raised to determine if an entity's weightlessness is being overwritten by a component or item with a component. +/// +/// Whether we should be weightless +/// Whether something is trying to override our weightlessness +[ByRefEvent] +public record struct IsWeightlessEvent(bool IsWeightless = false, bool Handled = false) : IInventoryRelayEvent +{ + SlotFlags IInventoryRelayEvent.TargetSlots => ~SlotFlags.POCKET; +} + +/// +/// Raised on an entity when their weightless status changes. +/// +[ByRefEvent] +public readonly record struct WeightlessnessChangedEvent(bool Weightless); diff --git a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Drop.cs b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Drop.cs index c1b44efba4..6512bbd7f1 100644 --- a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Drop.cs +++ b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Drop.cs @@ -3,6 +3,7 @@ using Content.Shared.Database; using Content.Shared.Hands.Components; using Content.Shared.Interaction; using Content.Shared.Inventory.VirtualItem; +using Content.Shared.Storage.Components; using Content.Shared.Tag; using Robust.Shared.Containers; using Robust.Shared.Map; @@ -20,6 +21,7 @@ public abstract partial class SharedHandsSystem private void InitializeDrop() { SubscribeLocalEvent(HandleEntityRemoved); + SubscribeLocalEvent(OnEntityStorageDump); } protected virtual void HandleEntityRemoved(EntityUid uid, HandsComponent hands, EntRemovedFromContainerMessage args) @@ -39,6 +41,14 @@ public abstract partial class SharedHandsSystem _virtualSystem.DeleteVirtualItem((args.Entity, @virtual), uid); } + + private void OnEntityStorageDump(Entity ent, ref EntityStorageIntoContainerAttemptEvent args) + { + // If you're physically carrying an EntityStroage which tries to dump its contents out, + // we want those contents to fall to the floor. + args.Cancelled = true; + } + private bool ShouldIgnoreRestrictions(EntityUid user) { //Checks if the Entity is something that shouldn't care about drop distance or walls ie Aghost diff --git a/Content.Shared/Implants/Components/ReplacementImplantComponent.cs b/Content.Shared/Implants/Components/ReplacementImplantComponent.cs new file mode 100644 index 0000000000..73a6d4d8b4 --- /dev/null +++ b/Content.Shared/Implants/Components/ReplacementImplantComponent.cs @@ -0,0 +1,18 @@ +using Content.Shared.Whitelist; +using Robust.Shared.GameStates; + +namespace Content.Shared.Implants.Components; + +/// +/// Added to implants with the see . +/// When implanted it will cause other implants in the whitelist to be deleted and thus replaced. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class ReplacementImplantComponent : Component +{ + /// + /// Whitelist for which implants to delete. + /// + [DataField(required: true)] + public EntityWhitelist Whitelist = new(); +} diff --git a/Content.Shared/Implants/Components/StorageImplantComponent.cs b/Content.Shared/Implants/Components/StorageImplantComponent.cs new file mode 100644 index 0000000000..289f01bfce --- /dev/null +++ b/Content.Shared/Implants/Components/StorageImplantComponent.cs @@ -0,0 +1,11 @@ +using Content.Shared.Storage; +using Robust.Shared.GameStates; + +namespace Content.Shared.Implants.Components; + +/// +/// Handles emptying the implant's when the implant is removed. +/// Without this the contents would be deleted. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class StorageImplantComponent : Component; diff --git a/Content.Shared/Implants/Components/SubdermalImplantComponent.cs b/Content.Shared/Implants/Components/SubdermalImplantComponent.cs index 390d113dfb..85f2672603 100644 --- a/Content.Shared/Implants/Components/SubdermalImplantComponent.cs +++ b/Content.Shared/Implants/Components/SubdermalImplantComponent.cs @@ -16,13 +16,21 @@ public sealed partial class SubdermalImplantComponent : Component /// /// Used where you want the implant to grant the owner an instant action. /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("implantAction")] + [DataField] public EntProtoId? ImplantAction; + /// + /// The provided action entity. + /// [DataField, AutoNetworkedField] public EntityUid? Action; + /// + /// Components to add/remove to the implantee when the implant is injected/extracted. + /// + [DataField] + public ComponentRegistry ImplantComponents = new(); + /// /// The entity this implant is inside /// @@ -32,8 +40,7 @@ public sealed partial class SubdermalImplantComponent : Component /// /// Should this implant be removeable? /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("permanent"), AutoNetworkedField] + [DataField, AutoNetworkedField] public bool Permanent = false; /// @@ -61,23 +68,20 @@ public sealed partial class SubdermalImplantComponent : Component /// /// Used for opening the storage implant via action. /// -public sealed partial class OpenStorageImplantEvent : InstantActionEvent -{ - -} +/// +/// TODO: Delete this and just add a ToggleUIOnTriggerComponent +/// +public sealed partial class OpenStorageImplantEvent : InstantActionEvent; /// /// Used for triggering trigger events on the implant via action /// -public sealed partial class ActivateImplantEvent : InstantActionEvent -{ - -} +public sealed partial class ActivateImplantEvent : InstantActionEvent; /// /// Used for opening the uplink implant via action. /// -public sealed partial class OpenUplinkImplantEvent : InstantActionEvent -{ - -} +/// +/// TODO: Delete this and just add a ToggleUIOnTriggerComponent +/// +public sealed partial class OpenUplinkImplantEvent : InstantActionEvent; diff --git a/Content.Shared/Implants/ReplacementImplantSystem.cs b/Content.Shared/Implants/ReplacementImplantSystem.cs new file mode 100644 index 0000000000..b206091fe3 --- /dev/null +++ b/Content.Shared/Implants/ReplacementImplantSystem.cs @@ -0,0 +1,34 @@ +using Content.Shared.Implants.Components; +using Content.Shared.Whitelist; +using Robust.Shared.Containers; + +namespace Content.Shared.Implants; + +public sealed class ReplacementImplantSystem : EntitySystem +{ + [Dependency] private readonly SharedContainerSystem _container = default!; + [Dependency] private readonly EntityWhitelistSystem _whitelist = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnImplantImplanted); + } + + private void OnImplantImplanted(Entity ent, ref ImplantImplantedEvent args) + { + if (!_container.TryGetContainer(args.Implanted, ImplanterComponent.ImplantSlotId, out var implantContainer)) + return; + + foreach (var implant in implantContainer.ContainedEntities) + { + if (implant == ent.Owner) + continue; // don't delete the replacement + + if (_whitelist.IsWhitelistPass(ent.Comp.Whitelist, implant)) + PredictedQueueDel(implant); + } + + } +} diff --git a/Content.Shared/Implants/SharedImplanterSystem.cs b/Content.Shared/Implants/SharedImplanterSystem.cs index 6e806384a0..6ff6d42d3b 100644 --- a/Content.Shared/Implants/SharedImplanterSystem.cs +++ b/Content.Shared/Implants/SharedImplanterSystem.cs @@ -118,7 +118,7 @@ public abstract class SharedImplanterSystem : EntitySystem //Set to draw mode if not implant only public void Implant(EntityUid user, EntityUid target, EntityUid implanter, ImplanterComponent component) { - if (!CanImplant(user, target, implanter, component, out var implant, out var implantComp)) + if (!CanImplant(user, target, implanter, component, out var implant, out _)) return; // Check if we are trying to implant a implant which is already implanted @@ -137,7 +137,6 @@ public abstract class SharedImplanterSystem : EntitySystem if (component.ImplanterSlot.ContainerSlot != null) _container.Remove(implant.Value, component.ImplanterSlot.ContainerSlot); - implantComp.ImplantedEntity = target; implantContainer.OccludesLight = false; _container.Insert(implant.Value, implantContainer); @@ -280,7 +279,6 @@ public abstract class SharedImplanterSystem : EntitySystem private void DrawImplantIntoImplanter(EntityUid implanter, EntityUid target, EntityUid implant, BaseContainer implantContainer, ContainerSlot implanterContainer, SubdermalImplantComponent implantComp) { _container.Remove(implant, implantContainer); - implantComp.ImplantedEntity = null; _container.Insert(implant, implanterContainer); var ev = new TransferDnaEvent { Donor = target, Recipient = implanter }; diff --git a/Content.Shared/Implants/SharedSubdermalImplantSystem.Relays.cs b/Content.Shared/Implants/SharedSubdermalImplantSystem.Relays.cs new file mode 100644 index 0000000000..4c0b2c2361 --- /dev/null +++ b/Content.Shared/Implants/SharedSubdermalImplantSystem.Relays.cs @@ -0,0 +1,50 @@ +using Content.Shared.Implants.Components; +using Content.Shared.Interaction; +using Content.Shared.Interaction.Events; +using Content.Shared.Mobs; + +namespace Content.Shared.Implants; + +public abstract partial class SharedSubdermalImplantSystem +{ + public void InitializeRelay() + { + SubscribeLocalEvent(RelayToImplantEvent); + SubscribeLocalEvent(RelayToImplantEvent); + SubscribeLocalEvent(RelayToImplantEvent); + } + + /// + /// Relays events from the implanted to the implant. + /// + private void RelayToImplantEvent(EntityUid uid, ImplantedComponent component, T args) where T : notnull + { + if (!_container.TryGetContainer(uid, ImplanterComponent.ImplantSlotId, out var implantContainer)) + return; + + var relayEv = new ImplantRelayEvent(args, uid); + foreach (var implant in implantContainer.ContainedEntities) + { + if (args is HandledEntityEventArgs { Handled: true }) + return; + + RaiseLocalEvent(implant, relayEv); + } + } +} + +/// +/// Wrapper for relaying events from an implanted entity to their implants. +/// +public sealed class ImplantRelayEvent where T : notnull +{ + public readonly T Event; + + public readonly EntityUid ImplantedEntity; + + public ImplantRelayEvent(T ev, EntityUid implantedEntity) + { + Event = ev; + ImplantedEntity = implantedEntity; + } +} diff --git a/Content.Shared/Implants/SharedSubdermalImplantSystem.cs b/Content.Shared/Implants/SharedSubdermalImplantSystem.cs index 4c015f1209..630416b598 100644 --- a/Content.Shared/Implants/SharedSubdermalImplantSystem.cs +++ b/Content.Shared/Implants/SharedSubdermalImplantSystem.cs @@ -1,90 +1,76 @@ -using System.Linq; using Content.Shared.Actions; using Content.Shared.Implants.Components; -using Content.Shared.Interaction; -using Content.Shared.Interaction.Events; -using Content.Shared.Mobs; -using Content.Shared.Tag; -using JetBrains.Annotations; using Robust.Shared.Containers; +using Robust.Shared.Network; using Robust.Shared.Prototypes; +using Robust.Shared.Timing; namespace Content.Shared.Implants; -public abstract class SharedSubdermalImplantSystem : EntitySystem +public abstract partial class SharedSubdermalImplantSystem : EntitySystem { - [Dependency] private readonly SharedActionsSystem _actionsSystem = default!; + [Dependency] private readonly SharedActionsSystem _actions = default!; [Dependency] private readonly SharedContainerSystem _container = default!; - [Dependency] private readonly TagSystem _tag = default!; - [Dependency] private readonly SharedTransformSystem _transformSystem = default!; - - public const string BaseStorageId = "storagebase"; - - private static readonly ProtoId MicroBombTag = "MicroBomb"; - private static readonly ProtoId MacroBombTag = "MacroBomb"; + [Dependency] private readonly INetManager _net = default!; + [Dependency] private readonly IGameTiming _timing = default!; public override void Initialize() { + base.Initialize(); + InitializeRelay(); + SubscribeLocalEvent(OnInsert); SubscribeLocalEvent(OnRemoveAttempt); SubscribeLocalEvent(OnRemove); - - SubscribeLocalEvent(RelayToImplantEvent); - SubscribeLocalEvent(RelayToImplantEvent); - SubscribeLocalEvent(RelayToImplantEvent); } - private void OnInsert(EntityUid uid, SubdermalImplantComponent component, EntGotInsertedIntoContainerMessage args) + private void OnInsert(Entity ent, ref EntGotInsertedIntoContainerMessage args) { - if (component.ImplantedEntity == null) + // The results of the container change are already networked on their own + if (_timing.ApplyingState) return; - if (!string.IsNullOrWhiteSpace(component.ImplantAction)) - { - _actionsSystem.AddAction(component.ImplantedEntity.Value, ref component.Action, component.ImplantAction, uid); - } + if (args.Container.ID != ImplanterComponent.ImplantSlotId) + return; - // replace micro bomb with macro bomb - // TODO: this shouldn't be hardcoded here - if (_container.TryGetContainer(component.ImplantedEntity.Value, ImplanterComponent.ImplantSlotId, out var implantContainer) && _tag.HasTag(uid, MacroBombTag)) - { - foreach (var implant in implantContainer.ContainedEntities) - { - if (_tag.HasTag(implant, MicroBombTag)) - { - _container.Remove(implant, implantContainer); - PredictedQueueDel(implant); - } - } - } + ent.Comp.ImplantedEntity = args.Container.Owner; + Dirty(ent); - var ev = new ImplantImplantedEvent(uid, component.ImplantedEntity.Value); - RaiseLocalEvent(uid, ref ev); + EntityManager.AddComponents(ent.Comp.ImplantedEntity.Value, ent.Comp.ImplantComponents); + if (ent.Comp.ImplantAction != null) + _actions.AddAction(ent.Comp.ImplantedEntity.Value, ref ent.Comp.Action, ent.Comp.ImplantAction, ent.Owner); + + var ev = new ImplantImplantedEvent(ent.Owner, ent.Comp.ImplantedEntity.Value); + RaiseLocalEvent(ent.Owner, ref ev); } - private void OnRemoveAttempt(EntityUid uid, SubdermalImplantComponent component, ContainerGettingRemovedAttemptEvent args) + private void OnRemoveAttempt(Entity ent, ref ContainerGettingRemovedAttemptEvent args) { - if (component.Permanent && component.ImplantedEntity != null) + if (ent.Comp.Permanent && ent.Comp.ImplantedEntity != null) args.Cancel(); } - private void OnRemove(EntityUid uid, SubdermalImplantComponent component, EntGotRemovedFromContainerMessage args) + private void OnRemove(Entity ent, ref EntGotRemovedFromContainerMessage args) { - if (component.ImplantedEntity == null || Terminating(component.ImplantedEntity.Value)) + // The results of the container change are already networked on their own + if (_timing.ApplyingState) return; - if (component.ImplantAction != null) - _actionsSystem.RemoveProvidedActions(component.ImplantedEntity.Value, uid); - - if (!_container.TryGetContainer(uid, BaseStorageId, out var storageImplant)) + if (args.Container.ID != ImplanterComponent.ImplantSlotId) return; - var containedEntites = storageImplant.ContainedEntities.ToArray(); + if (ent.Comp.ImplantedEntity == null || Terminating(ent.Comp.ImplantedEntity.Value)) + return; - foreach (var entity in containedEntites) - { - _transformSystem.DropNextTo(entity, uid); - } + EntityManager.RemoveComponents(ent.Comp.ImplantedEntity.Value, ent.Comp.ImplantComponents); + _actions.RemoveAction(ent.Comp.ImplantedEntity.Value, ent.Comp.Action); + ent.Comp.Action = null; + + var ev = new ImplantRemovedEvent(ent.Owner, ent.Comp.ImplantedEntity.Value); + RaiseLocalEvent(ent.Owner, ref ev); + + ent.Comp.ImplantedEntity = null; + Dirty(ent); } /// @@ -106,23 +92,26 @@ public abstract class SharedSubdermalImplantSystem : EntitySystem /// /// The implant, if it was successfully created. Otherwise, null. /// > - public EntityUid? AddImplant(EntityUid uid, String implantId) + public EntityUid? AddImplant(EntityUid target, EntProtoId implantId) { - var coords = Transform(uid).Coordinates; - var ent = Spawn(implantId, coords); + if (_net.IsClient) + return null; // can't interact with predicted spawns yet - if (TryComp(ent, out var implant)) + var coords = Transform(target).Coordinates; + var implant = Spawn(implantId, coords); + + if (TryComp(implant, out var implantComp)) { - ForceImplant(uid, ent, implant); + ForceImplant(target, (implant, implantComp)); } else { - Log.Warning($"Found invalid starting implant '{implantId}' on {uid} {ToPrettyString(uid):implanted}"); - Del(ent); + Log.Warning($"Tried to inject implant '{implantId}' without SubdermalImplantComponent into {ToPrettyString(target):implanted}"); + Del(implant); return null; } - return ent; + return implant; } /// @@ -131,15 +120,16 @@ public abstract class SharedSubdermalImplantSystem : EntitySystem /// /// The entity to be implanted /// The implant - /// The implant component - public void ForceImplant(EntityUid target, EntityUid implant, SubdermalImplantComponent component) + public void ForceImplant(EntityUid target, Entity implant) { + if (!Resolve(implant, ref implant.Comp)) + return; + //If the target doesn't have the implanted component, add it. var implantedComp = EnsureComp(target); - var implantContainer = implantedComp.ImplantContainer; - component.ImplantedEntity = target; - _container.Insert(implant, implantContainer); + implant.Comp.ImplantedEntity = target; + _container.Insert(implant.Owner, implantedComp.ImplantContainer); } /// @@ -147,60 +137,25 @@ public abstract class SharedSubdermalImplantSystem : EntitySystem /// /// the implanted entity /// the implant - [PublicAPI] - public void ForceRemove(EntityUid target, EntityUid implant) + public void ForceRemove(Entity target, EntityUid implant) { - if (!TryComp(target, out var implanted)) + if (!Resolve(target, ref target.Comp)) return; - var implantContainer = implanted.ImplantContainer; - - _container.Remove(implant, implantContainer); - QueueDel(implant); + _container.Remove(implant, target.Comp.ImplantContainer); + PredictedQueueDel(implant); } /// /// Removes and deletes implants by force /// /// The entity to have implants removed - [PublicAPI] - public void WipeImplants(EntityUid target) + public void WipeImplants(Entity target) { - if (!TryComp(target, out var implanted)) + if (!Resolve(target, ref target.Comp, false)) return; - var implantContainer = implanted.ImplantContainer; - - _container.CleanContainer(implantContainer); - } - - //Relays from the implanted to the implant - private void RelayToImplantEvent(EntityUid uid, ImplantedComponent component, T args) where T : notnull - { - if (!_container.TryGetContainer(uid, ImplanterComponent.ImplantSlotId, out var implantContainer)) - return; - - var relayEv = new ImplantRelayEvent(args, uid); - foreach (var implant in implantContainer.ContainedEntities) - { - if (args is HandledEntityEventArgs { Handled : true }) - return; - - RaiseLocalEvent(implant, relayEv); - } - } -} - -public sealed class ImplantRelayEvent where T : notnull -{ - public readonly T Event; - - public readonly EntityUid ImplantedEntity; - - public ImplantRelayEvent(T ev, EntityUid implantedEntity) - { - Event = ev; - ImplantedEntity = implantedEntity; + _container.CleanContainer(target.Comp.ImplantContainer); } } @@ -212,12 +167,30 @@ public sealed class ImplantRelayEvent where T : notnull /// implant implant implant implant /// [ByRefEvent] -public readonly struct ImplantImplantedEvent +public readonly record struct ImplantImplantedEvent { public readonly EntityUid Implant; - public readonly EntityUid? Implanted; + public readonly EntityUid Implanted; - public ImplantImplantedEvent(EntityUid implant, EntityUid? implanted) + public ImplantImplantedEvent(EntityUid implant, EntityUid implanted) + { + Implant = implant; + Implanted = implanted; + } +} + +/// +/// Event that is raised whenever an implant is removed from someone. +/// Raised on the the implant entity. +/// + +[ByRefEvent] +public readonly record struct ImplantRemovedEvent +{ + public readonly EntityUid Implant; + public readonly EntityUid Implanted; + + public ImplantRemovedEvent(EntityUid implant, EntityUid implanted) { Implant = implant; Implanted = implanted; diff --git a/Content.Shared/Implants/StorageImplantSystem.cs b/Content.Shared/Implants/StorageImplantSystem.cs new file mode 100644 index 0000000000..748f9f3ad2 --- /dev/null +++ b/Content.Shared/Implants/StorageImplantSystem.cs @@ -0,0 +1,36 @@ +using System.Linq; +using Content.Shared.Implants.Components; +using Content.Shared.Storage; +using Robust.Shared.Containers; +using Robust.Shared.Network; + +namespace Content.Shared.Implants; + +public sealed class StorageImplantSystem : EntitySystem +{ + [Dependency] private readonly SharedContainerSystem _container = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; + [Dependency] private readonly INetManager _net = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnImplantRemoved); + } + + private void OnImplantRemoved(Entity ent, ref ImplantRemovedEvent args) + { + if (_net.IsClient) + return; // TODO: RandomPredicted and DropNextToPredicted + + if (!_container.TryGetContainer(ent.Owner, StorageComponent.ContainerId, out var storageImplant)) + return; + + var contained = storageImplant.ContainedEntities.ToArray(); + foreach (var entity in contained) + { + _transform.DropNextTo(entity, ent.Owner); + } + } +} diff --git a/Content.Shared/Interaction/SmartEquipSystem.cs b/Content.Shared/Interaction/SmartEquipSystem.cs index 5696f3af60..87c768013c 100644 --- a/Content.Shared/Interaction/SmartEquipSystem.cs +++ b/Content.Shared/Interaction/SmartEquipSystem.cs @@ -159,7 +159,7 @@ public sealed class SmartEquipSystem : EntitySystem } _hands.TryDrop((uid, hands), hands.ActiveHandId!); - _storage.Insert(slotItem, handItem.Value, out var stacked, out _); + _storage.Insert(slotItem, handItem.Value, out var stacked, out _, user: uid); // if the hand item stacked with the things in inventory, but there's no more space left for the rest // of the stack, place the stack back in hand rather than dropping it on the floor diff --git a/Content.Shared/Inventory/InventorySystem.Relay.cs b/Content.Shared/Inventory/InventorySystem.Relay.cs index b62a048a5b..dad25c570b 100644 --- a/Content.Shared/Inventory/InventorySystem.Relay.cs +++ b/Content.Shared/Inventory/InventorySystem.Relay.cs @@ -27,6 +27,7 @@ using Content.Shared.Overlays; using Content.Shared.Projectiles; using Content.Shared.Radio; using Content.Shared.Slippery; +using Content.Shared.Standing; using Content.Shared.Strip.Components; using Content.Shared.Temperature; using Content.Shared.Verbs; @@ -66,6 +67,8 @@ public partial class InventorySystem SubscribeLocalEvent(RelayInventoryEvent); SubscribeLocalEvent(RelayInventoryEvent); SubscribeLocalEvent(RelayInventoryEvent); + SubscribeLocalEvent(RelayInventoryEvent); + SubscribeLocalEvent(RelayInventoryEvent); // by-ref events SubscribeLocalEvent(RefRelayInventoryEvent); @@ -123,7 +126,7 @@ public partial class InventorySystem return; // this copies the by-ref event if it is a struct - var ev = new InventoryRelayedEvent(args); + var ev = new InventoryRelayedEvent(args, inventory.Owner); var enumerator = new InventorySlotEnumerator(inventory, args.TargetSlots); while (enumerator.NextItem(out var item)) { @@ -139,7 +142,7 @@ public partial class InventorySystem if (args.TargetSlots == SlotFlags.NONE) return; - var ev = new InventoryRelayedEvent(args); + var ev = new InventoryRelayedEvent(args, inventory.Owner); var enumerator = new InventorySlotEnumerator(inventory, args.TargetSlots); while (enumerator.NextItem(out var item)) { @@ -150,7 +153,7 @@ public partial class InventorySystem private void OnGetEquipmentVerbs(EntityUid uid, InventoryComponent component, GetVerbsEvent args) { // Automatically relay stripping related verbs to all equipped clothing. - var ev = new InventoryRelayedEvent>(args); + var ev = new InventoryRelayedEvent>(args, uid); var enumerator = new InventorySlotEnumerator(component); while (enumerator.NextItem(out var item, out var slotDef)) { @@ -162,7 +165,7 @@ public partial class InventorySystem private void OnGetInnateVerbs(EntityUid uid, InventoryComponent component, GetVerbsEvent args) { // Automatically relay stripping related verbs to all equipped clothing. - var ev = new InventoryRelayedEvent>(args); + var ev = new InventoryRelayedEvent>(args, uid); var enumerator = new InventorySlotEnumerator(component, SlotFlags.WITHOUT_POCKET); while (enumerator.NextItem(out var item)) { @@ -185,9 +188,12 @@ public sealed class InventoryRelayedEvent : EntityEventArgs { public TEvent Args; - public InventoryRelayedEvent(TEvent args) + public EntityUid Owner; + + public InventoryRelayedEvent(TEvent args, EntityUid owner) { Args = args; + Owner = owner; } } diff --git a/Content.Shared/Kitchen/Components/KitchenSpikeComponent.cs b/Content.Shared/Kitchen/Components/KitchenSpikeComponent.cs index 3057a75a4c..b4fdc5ed3c 100644 --- a/Content.Shared/Kitchen/Components/KitchenSpikeComponent.cs +++ b/Content.Shared/Kitchen/Components/KitchenSpikeComponent.cs @@ -1,40 +1,143 @@ +using Content.Shared.Damage; +using Content.Shared.FixedPoint; +using Content.Shared.Nutrition.Components; using Robust.Shared.Audio; +using Robust.Shared.Containers; using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; namespace Content.Shared.Kitchen.Components; +/// +/// Used to mark entity that should act as a spike. +/// [RegisterComponent, NetworkedComponent] +[AutoGenerateComponentState, AutoGenerateComponentPause] [Access(typeof(SharedKitchenSpikeSystem))] public sealed partial class KitchenSpikeComponent : Component { - [DataField("delay")] - public float SpikeDelay = 7.0f; + /// + /// Default sound to play when the victim is hooked or unhooked. + /// + private static readonly ProtoId DefaultSpike = new("Spike"); - [ViewVariables(VVAccess.ReadWrite)] - [DataField("sound")] - public SoundSpecifier SpikeSound = new SoundPathSpecifier("/Audio/Effects/Fluids/splat.ogg"); + /// + /// Default sound to play when the victim is butchered. + /// + private static readonly ProtoId DefaultSpikeButcher = new("SpikeButcher"); - public List? PrototypesToSpawn; + /// + /// ID of the container where the victim will be stored. + /// + [DataField, AutoNetworkedField] + public string ContainerId = "body"; - // TODO: Spiking alive mobs? (Replace with uid) (deal damage to their limbs on spiking, kill on first butcher attempt?) - public string MeatSource1p = "?"; - public string MeatSource0 = "?"; - public string Victim = "?"; + /// + /// Container where the victim will be stored. + /// + [ViewVariables] + public ContainerSlot BodyContainer = default!; - // Prevents simultaneous spiking of two bodies (could be replaced with CancellationToken, but I don't see any situation where Cancel could be called) - public bool InUse; + /// + /// Sound to play when the victim is hooked or unhooked. + /// + [DataField, AutoNetworkedField] + public SoundSpecifier SpikeSound = new SoundCollectionSpecifier(DefaultSpike); - [Serializable, NetSerializable] - public enum KitchenSpikeVisuals : byte + /// + /// Sound to play when the victim is butchered. + /// + [DataField, AutoNetworkedField] + public SoundSpecifier ButcherSound = new SoundCollectionSpecifier(DefaultSpikeButcher); + + /// + /// Damage that will be applied to the victim when they are hooked or unhooked. + /// + [DataField, AutoNetworkedField] + public DamageSpecifier SpikeDamage = new() { - Status - } + DamageDict = new Dictionary + { + { "Piercing", 10 }, + }, + }; - [Serializable, NetSerializable] - public enum KitchenSpikeStatus : byte + /// + /// Damage that will be applied to the victim when they are butchered. + /// + [DataField, AutoNetworkedField] + public DamageSpecifier ButcherDamage = new() { - Empty, - Bloody - } + DamageDict = new Dictionary + { + { "Slash", 20 }, + }, + }; + + /// + /// Damage that the victim will receive over time. + /// + [DataField, AutoNetworkedField] + public DamageSpecifier TimeDamage = new() + { + DamageDict = new Dictionary + { + { "Blunt", 1 }, // Mobs are only gibbed from blunt (at least for now). + }, + }; + + /// + /// The next time when the damage will be applied to the victim. + /// + [AutoPausedField, AutoNetworkedField] + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] + public TimeSpan NextDamage; + + /// + /// How often the damage should be applied to the victim. + /// + [DataField, AutoNetworkedField] + public TimeSpan DamageInterval = TimeSpan.FromSeconds(10); + + /// + /// Time that it will take to put the victim on the spike. + /// + [DataField, AutoNetworkedField] + public TimeSpan HookDelay = TimeSpan.FromSeconds(7); + + /// + /// Time that it will take to put the victim off the spike. + /// + [DataField, AutoNetworkedField] + public TimeSpan UnhookDelay = TimeSpan.FromSeconds(10); + + /// + /// Time that it will take to butcher the victim while they are alive. + /// + /// + /// This is summed up with a 's butcher delay in butcher DoAfter. + /// + [DataField, AutoNetworkedField] + public TimeSpan ButcherDelayAlive = TimeSpan.FromSeconds(8); + + /// + /// Value by which the butchering delay will be multiplied if the victim is dead. + /// + [DataField, AutoNetworkedField] + public float ButcherModifierDead = 0.5f; +} + +[Serializable, NetSerializable] +public enum KitchenSpikeVisuals : byte +{ + Status, +} + +[Serializable, NetSerializable] +public enum KitchenSpikeStatus : byte +{ + Empty, + Bloody, // TODO: Add sprites for different species. } diff --git a/Content.Shared/Kitchen/Components/KitchenSpikeHookedComponent.cs b/Content.Shared/Kitchen/Components/KitchenSpikeHookedComponent.cs new file mode 100644 index 0000000000..c255db986e --- /dev/null +++ b/Content.Shared/Kitchen/Components/KitchenSpikeHookedComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Kitchen.Components; + +/// +/// Used to mark entities that are currently hooked on the spike. +/// +[RegisterComponent, NetworkedComponent] +[Access(typeof(SharedKitchenSpikeSystem))] +public sealed partial class KitchenSpikeHookedComponent : Component; diff --git a/Content.Shared/Kitchen/Components/KitchenSpikeVictimComponent.cs b/Content.Shared/Kitchen/Components/KitchenSpikeVictimComponent.cs new file mode 100644 index 0000000000..dc37592a87 --- /dev/null +++ b/Content.Shared/Kitchen/Components/KitchenSpikeVictimComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Kitchen.Components; + +/// +/// Used to mark entity that was butchered on the spike. +/// +[RegisterComponent, NetworkedComponent] +[Access(typeof(SharedKitchenSpikeSystem))] +public sealed partial class KitchenSpikeVictimComponent : Component; diff --git a/Content.Shared/Kitchen/Components/SharpComponent.cs b/Content.Shared/Kitchen/Components/SharpComponent.cs new file mode 100644 index 0000000000..3dd5e01af7 --- /dev/null +++ b/Content.Shared/Kitchen/Components/SharpComponent.cs @@ -0,0 +1,26 @@ +using Content.Shared.Nutrition.Components; +using Robust.Shared.GameStates; + +namespace Content.Shared.Kitchen.Components; + +/// +/// Applies to items that are capable of butchering entities, or +/// are otherwise sharp for some purpose. +/// +[RegisterComponent, NetworkedComponent] +[AutoGenerateComponentState] +public sealed partial class SharpComponent : Component +{ + /// + /// List of the entities that are currently being butchered. + /// + // TODO just make this a tool type. Move SharpSystem to shared. + [AutoNetworkedField] + public readonly HashSet Butchering = []; + + /// + /// Affects butcher delay of the . + /// + [DataField, AutoNetworkedField] + public float ButcherDelayModifier = 1.0f; +} diff --git a/Content.Shared/Kitchen/SharedKitchenSpikeSystem.cs b/Content.Shared/Kitchen/SharedKitchenSpikeSystem.cs index 2f740f99ad..57b08569f5 100644 --- a/Content.Shared/Kitchen/SharedKitchenSpikeSystem.cs +++ b/Content.Shared/Kitchen/SharedKitchenSpikeSystem.cs @@ -1,38 +1,456 @@ +using Content.Shared.Administration.Logs; +using Content.Shared.Body.Systems; +using Content.Shared.Damage; +using Content.Shared.Database; +using Content.Shared.Destructible; using Content.Shared.DoAfter; using Content.Shared.DragDrop; +using Content.Shared.Examine; +using Content.Shared.Hands; +using Content.Shared.IdentityManagement; +using Content.Shared.Interaction; +using Content.Shared.Interaction.Events; +using Content.Shared.Inventory.Events; +using Content.Shared.Item; using Content.Shared.Kitchen.Components; +using Content.Shared.Mobs.Systems; +using Content.Shared.Movement.Events; using Content.Shared.Nutrition.Components; +using Content.Shared.Popups; +using Content.Shared.Throwing; +using Content.Shared.Verbs; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Containers; +using Robust.Shared.Random; using Robust.Shared.Serialization; +using Robust.Shared.Timing; namespace Content.Shared.Kitchen; -public abstract class SharedKitchenSpikeSystem : EntitySystem +/// +/// Used to butcher some entities like monkeys. +/// +public sealed class SharedKitchenSpikeSystem : EntitySystem { + [Dependency] private readonly SharedAppearanceSystem _appearanceSystem = default!; + [Dependency] private readonly SharedContainerSystem _containerSystem = default!; + [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; + [Dependency] private readonly DamageableSystem _damageableSystem = default!; + [Dependency] private readonly ExamineSystemShared _examineSystem = default!; + [Dependency] private readonly MobStateSystem _mobStateSystem = default!; + [Dependency] private readonly SharedPopupSystem _popupSystem = default!; + [Dependency] private readonly MetaDataSystem _metaDataSystem = default!; + [Dependency] private readonly ISharedAdminLogManager _logger = default!; + [Dependency] private readonly SharedAudioSystem _audioSystem = default!; + [Dependency] private readonly SharedBodySystem _bodySystem = default!; + [Dependency] private readonly IGameTiming _gameTiming = default!; + [Dependency] private readonly IRobustRandom _random = default!; + public override void Initialize() { base.Initialize(); + + SubscribeLocalEvent(OnInit); + SubscribeLocalEvent(OnInsertAttempt); + SubscribeLocalEvent(OnEntInsertedIntoContainer); + SubscribeLocalEvent(OnEntRemovedFromContainer); + SubscribeLocalEvent(OnInteractHand); + SubscribeLocalEvent(OnInteractUsing); SubscribeLocalEvent(OnCanDrop); + SubscribeLocalEvent(OnDragDrop); + SubscribeLocalEvent(OnSpikeHookDoAfter); + SubscribeLocalEvent(OnSpikeUnhookDoAfter); + SubscribeLocalEvent(OnSpikeButcherDoAfter); + SubscribeLocalEvent(OnSpikeExamined); + SubscribeLocalEvent>(OnGetVerbs); + SubscribeLocalEvent(OnDestruction); + + SubscribeLocalEvent(OnVictimExamined); + + // Prevent the victim from doing anything while on the spike. + SubscribeLocalEvent(OnAttempt); + SubscribeLocalEvent(OnAttempt); + SubscribeLocalEvent(OnAttempt); + SubscribeLocalEvent(OnAttempt); + SubscribeLocalEvent(OnAttempt); + SubscribeLocalEvent(OnAttempt); + SubscribeLocalEvent(OnAttempt); + SubscribeLocalEvent(OnAttempt); + SubscribeLocalEvent(OnAttempt); } - private void OnCanDrop(EntityUid uid, KitchenSpikeComponent component, ref CanDropTargetEvent args) + private void OnInit(Entity ent, ref ComponentInit args) { - if (args.Handled) + ent.Comp.BodyContainer = _containerSystem.EnsureContainer(ent, ent.Comp.ContainerId); + } + + private void OnInsertAttempt(Entity ent, ref ContainerIsInsertingAttemptEvent args) + { + if (args.Cancelled || TryComp(args.EntityUid, out var butcherable) && butcherable.Type == ButcheringType.Spike) + return; + + args.Cancel(); + } + + private void OnEntInsertedIntoContainer(Entity ent, ref EntInsertedIntoContainerMessage args) + { + EnsureComp(args.Entity); + _damageableSystem.TryChangeDamage(args.Entity, ent.Comp.SpikeDamage, true); + + // TODO: Add sprites for different species. + _appearanceSystem.SetData(ent.Owner, KitchenSpikeVisuals.Status, KitchenSpikeStatus.Bloody); + } + + private void OnEntRemovedFromContainer(Entity ent, ref EntRemovedFromContainerMessage args) + { + RemComp(args.Entity); + _damageableSystem.TryChangeDamage(args.Entity, ent.Comp.SpikeDamage, true); + + _appearanceSystem.SetData(ent.Owner, KitchenSpikeVisuals.Status, KitchenSpikeStatus.Empty); + } + + private void OnInteractHand(Entity ent, ref InteractHandEvent args) + { + var victim = ent.Comp.BodyContainer.ContainedEntity; + + if (args.Handled || !victim.HasValue) + return; + + _popupSystem.PopupClient(Loc.GetString("butcherable-need-knife", + ("target", Identity.Entity(victim.Value, EntityManager))), + ent, + args.User, + PopupType.Medium); + + args.Handled = true; + } + + private void OnInteractUsing(Entity ent, ref InteractUsingEvent args) + { + var victim = ent.Comp.BodyContainer.ContainedEntity; + + if (args.Handled || !TryComp(victim, out var butcherable) || butcherable.SpawnedEntities.Count == 0) return; args.Handled = true; - if (!HasComp(args.Dragged)) + if (!TryComp(args.Used, out var sharp)) { - args.CanDrop = false; + _popupSystem.PopupClient(Loc.GetString("butcherable-need-knife", + ("target", Identity.Entity(victim.Value, EntityManager))), + ent, + args.User, + PopupType.Medium); + return; } - // TODO: Once we get silicons need to check organic - args.CanDrop = true; + var victimIdentity = Identity.Entity(victim.Value, EntityManager); + + _popupSystem.PopupPredicted(Loc.GetString("comp-kitchen-spike-begin-butcher-self", ("victim", victimIdentity)), + Loc.GetString("comp-kitchen-spike-begin-butcher", ("user", Identity.Entity(args.User, EntityManager)), ("victim", victimIdentity)), + ent, + args.User, + PopupType.MediumCaution); + + var delay = TimeSpan.FromSeconds(sharp.ButcherDelayModifier * butcherable.ButcherDelay); + + if (_mobStateSystem.IsAlive(victim.Value)) + delay += ent.Comp.ButcherDelayAlive; + else + delay *= ent.Comp.ButcherModifierDead; + + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, + args.User, + delay, + new SpikeButcherDoAfterEvent(), + ent, + target: victim, + used: args.Used) + { + BreakOnDamage = true, + BreakOnMove = true, + NeedHand = true, + }); + } + + private void OnCanDrop(Entity ent, ref CanDropTargetEvent args) + { + if (args.Handled) + return; + + args.CanDrop = _containerSystem.CanInsert(args.Dragged, ent.Comp.BodyContainer); + args.Handled = true; + } + + private void OnDragDrop(Entity ent, ref DragDropTargetEvent args) + { + if (args.Handled) + return; + + ShowPopups("comp-kitchen-spike-begin-hook-self", + "comp-kitchen-spike-begin-hook-self-other", + "comp-kitchen-spike-begin-hook-other-self", + "comp-kitchen-spike-begin-hook-other", + args.User, + args.Dragged, + ent); + + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, + args.User, + ent.Comp.HookDelay, + new SpikeHookDoAfterEvent(), + ent, + target: args.Dragged) + { + BreakOnDamage = true, + BreakOnMove = true, + NeedHand = true, + }); + + args.Handled = true; + } + + private void OnSpikeHookDoAfter(Entity ent, ref SpikeHookDoAfterEvent args) + { + if (args.Handled || args.Cancelled || !args.Target.HasValue) + return; + + if (_containerSystem.Insert(args.Target.Value, ent.Comp.BodyContainer)) + { + ShowPopups("comp-kitchen-spike-hook-self", + "comp-kitchen-spike-hook-self-other", + "comp-kitchen-spike-hook-other-self", + "comp-kitchen-spike-hook-other", + args.User, + args.Target.Value, + ent); + + _logger.Add(LogType.Action, + LogImpact.High, + $"{ToPrettyString(args.User):user} put {ToPrettyString(args.Target):target} on the {ToPrettyString(ent):spike}"); + + _audioSystem.PlayPredicted(ent.Comp.SpikeSound, ent, args.User); + } + + args.Handled = true; + } + + private void OnSpikeUnhookDoAfter(Entity ent, ref SpikeUnhookDoAfterEvent args) + { + if (args.Handled || args.Cancelled || !args.Target.HasValue) + return; + + if (_containerSystem.Remove(args.Target.Value, ent.Comp.BodyContainer)) + { + ShowPopups("comp-kitchen-spike-unhook-self", + "comp-kitchen-spike-unhook-self-other", + "comp-kitchen-spike-unhook-other-self", + "comp-kitchen-spike-unhook-other", + args.User, + args.Target.Value, + ent); + + _logger.Add(LogType.Action, + LogImpact.Medium, + $"{ToPrettyString(args.User):user} took {ToPrettyString(args.Target):target} off the {ToPrettyString(ent):spike}"); + + _audioSystem.PlayPredicted(ent.Comp.SpikeSound, ent, args.User); + } + + args.Handled = true; + } + + private void OnSpikeButcherDoAfter(Entity ent, ref SpikeButcherDoAfterEvent args) + { + if (args.Handled || args.Cancelled || !args.Target.HasValue || !args.Used.HasValue || !TryComp(args.Target, out var butcherable) ) + return; + + var victimIdentity = Identity.Entity(args.Target.Value, EntityManager); + + _popupSystem.PopupPredicted(Loc.GetString("comp-kitchen-spike-butcher-self", ("victim", victimIdentity)), + Loc.GetString("comp-kitchen-spike-butcher", ("user", Identity.Entity(args.User, EntityManager)), ("victim", victimIdentity)), + ent, + args.User, + PopupType.MediumCaution); + + // Get a random entry to spawn. + var index = _random.Next(butcherable.SpawnedEntities.Count); + var entry = butcherable.SpawnedEntities[index]; + + var uid = PredictedSpawnNextToOrDrop(entry.PrototypeId, ent); + _metaDataSystem.SetEntityName(uid, + Loc.GetString("comp-kitchen-spike-meat-name", + ("name", Name(uid)), + ("victim", args.Target))); + + // Decrease the amount since we spawned an entity from that entry. + entry.Amount--; + + // Remove the entry if its new amount is zero, or update it. + if (entry.Amount <= 0) + butcherable.SpawnedEntities.RemoveAt(index); + else + butcherable.SpawnedEntities[index] = entry; + + Dirty(args.Target.Value, butcherable); + + // Gib the victim if there is nothing else to butcher. + if (butcherable.SpawnedEntities.Count == 0) + { + _bodySystem.GibBody(args.Target.Value, true); + + _logger.Add(LogType.Gib, + LogImpact.Extreme, + $"{ToPrettyString(args.User):user} finished butchering {ToPrettyString(args.Target):target} on the {ToPrettyString(ent):spike}"); + } + else + { + EnsureComp(args.Target.Value); + + _damageableSystem.TryChangeDamage(args.Target, ent.Comp.ButcherDamage, true); + _logger.Add(LogType.Action, + LogImpact.Extreme, + $"{ToPrettyString(args.User):user} butchered {ToPrettyString(args.Target):target} on the {ToPrettyString(ent):spike}"); + } + + _audioSystem.PlayPredicted(ent.Comp.ButcherSound, ent, args.User); + + _popupSystem.PopupClient(Loc.GetString("butcherable-knife-butchered-success", + ("target", Identity.Entity(args.Target.Value, EntityManager)), + ("knife", args.Used.Value)), + ent, + args.User, + PopupType.Medium); + + args.Handled = true; + } + + private void OnSpikeExamined(Entity ent, ref ExaminedEvent args) + { + var victim = ent.Comp.BodyContainer.ContainedEntity; + + if (!victim.HasValue) + return; + + // Show it at the end of the examine so it looks good. + args.PushMarkup(Loc.GetString("comp-kitchen-spike-hooked", ("victim", Identity.Entity(victim.Value, EntityManager))), -1); + args.PushMessage(_examineSystem.GetExamineText(victim.Value, args.Examiner), -2); + } + + private void OnGetVerbs(Entity ent, ref GetVerbsEvent args) + { + var victim = ent.Comp.BodyContainer.ContainedEntity; + + if (!victim.HasValue || !_containerSystem.CanRemove(victim.Value, ent.Comp.BodyContainer)) + return; + + var user = args.User; + + args.Verbs.Add(new Verb() + { + Text = Loc.GetString("comp-kitchen-spike-unhook-verb"), + Act = () => TryUnhook(ent, user, victim.Value), + Impact = LogImpact.Medium, + }); + } + + private void OnDestruction(Entity ent, ref DestructionEventArgs args) + { + _containerSystem.EmptyContainer(ent.Comp.BodyContainer, destination: Transform(ent).Coordinates); + } + + private void OnVictimExamined(Entity ent, ref ExaminedEvent args) + { + args.PushMarkup(Loc.GetString("comp-kitchen-spike-victim-examine", ("target", Identity.Entity(ent, EntityManager)))); + } + + private static void OnAttempt(EntityUid uid, KitchenSpikeHookedComponent component, CancellableEntityEventArgs args) + { + args.Cancel(); + } + + public override void Update(float frameTime) + { + base.Update(frameTime); + + var query = AllEntityQuery(); + + while (query.MoveNext(out var uid, out var kitchenSpike)) + { + if (kitchenSpike.NextDamage > _gameTiming.CurTime) + continue; + + kitchenSpike.NextDamage += kitchenSpike.DamageInterval; + Dirty(uid, kitchenSpike); + + _damageableSystem.TryChangeDamage(kitchenSpike.BodyContainer.ContainedEntity, kitchenSpike.TimeDamage, true); + } + } + + /// + /// A helper method to show predicted popups that can be targeted towards yourself or somebody else. + /// + private void ShowPopups(string selfLocMessageSelf, + string selfLocMessageOthers, + string locMessageSelf, + string locMessageOthers, + EntityUid user, + EntityUid victim, + EntityUid hook) + { + string messageSelf, messageOthers; + + var victimIdentity = Identity.Entity(victim, EntityManager); + + if (user == victim) + { + messageSelf = Loc.GetString(selfLocMessageSelf, ("hook", hook)); + messageOthers = Loc.GetString(selfLocMessageOthers, ("victim", victimIdentity), ("hook", hook)); + } + else + { + messageSelf = Loc.GetString(locMessageSelf, ("victim", victimIdentity), ("hook", hook)); + messageOthers = Loc.GetString(locMessageOthers, + ("user", Identity.Entity(user, EntityManager)), + ("victim", victimIdentity), + ("hook", hook)); + } + + _popupSystem.PopupPredicted(messageSelf, messageOthers, hook, user, PopupType.MediumCaution); + } + + /// + /// Tries to unhook the victim. + /// + private void TryUnhook(Entity ent, EntityUid user, EntityUid target) + { + ShowPopups("comp-kitchen-spike-begin-unhook-self", + "comp-kitchen-spike-begin-unhook-self-other", + "comp-kitchen-spike-begin-unhook-other-self", + "comp-kitchen-spike-begin-unhook-other", + user, + target, + ent); + + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, + user, + ent.Comp.UnhookDelay, + new SpikeUnhookDoAfterEvent(), + ent, + target: target) + { + BreakOnDamage = user != target, + BreakOnMove = true, + }); } } [Serializable, NetSerializable] -public sealed partial class SpikeDoAfterEvent : SimpleDoAfterEvent -{ -} +public sealed partial class SpikeHookDoAfterEvent : SimpleDoAfterEvent; + +[Serializable, NetSerializable] +public sealed partial class SpikeUnhookDoAfterEvent : SimpleDoAfterEvent; + +[Serializable, NetSerializable] +public sealed partial class SpikeButcherDoAfterEvent : SimpleDoAfterEvent; diff --git a/Content.Shared/Lathe/LatheComponent.cs b/Content.Shared/Lathe/LatheComponent.cs index 8b701ff64e..7bd7764514 100644 --- a/Content.Shared/Lathe/LatheComponent.cs +++ b/Content.Shared/Lathe/LatheComponent.cs @@ -26,10 +26,14 @@ namespace Content.Shared.Lathe // Otherwise the material arbitrage test and/or LatheSystem.GetAllBaseRecipes needs to be updated /// - /// The lathe's construction queue + /// The lathe's construction queue. /// + /// + /// This is a LinkedList to allow for constant time insertion/deletion (vs a List), and more efficient + /// moves (vs a Queue). + /// [DataField] - public Queue> Queue = new(); + public LinkedList Queue = new(); /// /// The sound that plays when the lathe is producing an item, if any @@ -97,6 +101,21 @@ namespace Content.Shared.Lathe } } + [Serializable] + public sealed partial class LatheRecipeBatch + { + public ProtoId Recipe; + public int ItemsPrinted; + public int ItemsRequested; + + public LatheRecipeBatch(ProtoId recipe, int itemsPrinted, int itemsRequested) + { + Recipe = recipe; + ItemsPrinted = itemsPrinted; + ItemsRequested = itemsRequested; + } + } + /// /// Event raised on a lathe when it starts producing a recipe. /// diff --git a/Content.Shared/Lathe/LatheMessages.cs b/Content.Shared/Lathe/LatheMessages.cs index 1c1c6440f1..fe72eed367 100644 --- a/Content.Shared/Lathe/LatheMessages.cs +++ b/Content.Shared/Lathe/LatheMessages.cs @@ -10,11 +10,11 @@ public sealed class LatheUpdateState : BoundUserInterfaceState { public List> Recipes; - public ProtoId[] Queue; + public LatheRecipeBatch[] Queue; public ProtoId? CurrentlyProducing; - public LatheUpdateState(List> recipes, ProtoId[] queue, ProtoId? currentlyProducing = null) + public LatheUpdateState(List> recipes, LatheRecipeBatch[] queue, ProtoId? currentlyProducing = null) { Recipes = recipes; Queue = queue; @@ -46,6 +46,33 @@ public sealed class LatheQueueRecipeMessage : BoundUserInterfaceMessage } } +/// +/// Sent to the server to remove a batch from the queue. +/// +[Serializable, NetSerializable] +public sealed class LatheDeleteRequestMessage(int index) : BoundUserInterfaceMessage +{ + public int Index = index; +} + +/// +/// Sent to the server to move the position of a batch in the queue. +/// +[Serializable, NetSerializable] +public sealed class LatheMoveRequestMessage(int index, int change) : BoundUserInterfaceMessage +{ + public int Index = index; + public int Change = change; +} + +/// +/// Sent to the server to stop producing the current item. +/// +[Serializable, NetSerializable] +public sealed class LatheAbortFabricationMessage() : BoundUserInterfaceMessage +{ +} + [NetSerializable, Serializable] public enum LatheUiKey { diff --git a/Content.Shared/Lathe/PrototypeIdLinkedListSerializer.cs b/Content.Shared/Lathe/PrototypeIdLinkedListSerializer.cs new file mode 100644 index 0000000000..1c616ff105 --- /dev/null +++ b/Content.Shared/Lathe/PrototypeIdLinkedListSerializer.cs @@ -0,0 +1,81 @@ +using Robust.Shared.Serialization; +using Robust.Shared.Serialization.Manager; +using Robust.Shared.Serialization.Markdown; +using Robust.Shared.Serialization.Markdown.Sequence; +using Robust.Shared.Serialization.Markdown.Validation; +using Robust.Shared.Serialization.TypeSerializers.Interfaces; + +namespace Content.Shared.Lathe; + +/// +/// Handles reading, writing, and validation for linked lists of prototypes. +/// +/// The type of prototype this linked list represents +/// +/// This is in the Content.Shared.Lathe namespace as there are no other LinkedList ProtoId instances. +/// +[TypeSerializer] +public sealed class LinkedListSerializer : ITypeSerializer, SequenceDataNode>, ITypeCopier> where T : class +{ + public ValidationNode Validate(ISerializationManager serializationManager, SequenceDataNode node, + IDependencyCollection dependencies, ISerializationContext? context = null) + { + var list = new List(); + + foreach (var elem in node.Sequence) + { + list.Add(serializationManager.ValidateNode(elem, context)); + } + + return new ValidatedSequenceNode(list); + } + + public DataNode Write(ISerializationManager serializationManager, LinkedList value, + IDependencyCollection dependencies, + bool alwaysWrite = false, + ISerializationContext? context = null) + { + var sequence = new SequenceDataNode(); + + foreach (var elem in value) + { + sequence.Add(serializationManager.WriteValue(elem, alwaysWrite, context)); + } + + return sequence; + } + + LinkedList ITypeReader, SequenceDataNode>.Read(ISerializationManager serializationManager, + SequenceDataNode node, + IDependencyCollection dependencies, + SerializationHookContext hookCtx, + ISerializationContext? context, ISerializationManager.InstantiationDelegate>? instanceProvider) + { + var list = instanceProvider != null ? instanceProvider() : new LinkedList(); + + foreach (var dataNode in node.Sequence) + { + list.AddLast(serializationManager.Read(dataNode, hookCtx, context)); + } + + return list; + } + + public void CopyTo( + ISerializationManager serializationManager, + LinkedList source, + ref LinkedList target, + IDependencyCollection dependencies, + SerializationHookContext hookCtx, + ISerializationContext? context = null) + { + target.Clear(); + using var enumerator = source.GetEnumerator(); + + while (enumerator.MoveNext()) + { + var current = enumerator.Current; + target.AddLast(current); + } + } +} diff --git a/Content.Shared/Lathe/SharedLatheSystem.cs b/Content.Shared/Lathe/SharedLatheSystem.cs index 524d83fd84..5942f4bf6c 100644 --- a/Content.Shared/Lathe/SharedLatheSystem.cs +++ b/Content.Shared/Lathe/SharedLatheSystem.cs @@ -22,6 +22,7 @@ public abstract class SharedLatheSystem : EntitySystem [Dependency] private readonly EmagSystem _emag = default!; public readonly Dictionary> InverseRecipes = new(); + public const int MaxItemsPerRequest = 10_000; public override void Initialize() { @@ -86,6 +87,8 @@ public abstract class SharedLatheSystem : EntitySystem return false; if (!HasRecipe(uid, recipe, component)) return false; + if (amount <= 0) + return false; foreach (var (material, needed) in recipe.Materials) { diff --git a/Content.Shared/Lock/LockSystem.cs b/Content.Shared/Lock/LockSystem.cs index b61589d2bd..8aca216706 100644 --- a/Content.Shared/Lock/LockSystem.cs +++ b/Content.Shared/Lock/LockSystem.cs @@ -51,11 +51,12 @@ public sealed class LockSystem : EntitySystem SubscribeLocalEvent(OnDoAfterLock); SubscribeLocalEvent(OnDoAfterUnlock); SubscribeLocalEvent(OnBeforeDoorOpened); //CrystallEdge Lock System Adapt - SubscribeLocalEvent(OnStorageInteractAttempt); + SubscribeLocalEvent(OnLockToggleAttempt); SubscribeLocalEvent(OnAttemptChangePanel); SubscribeLocalEvent(OnUnanchorAttempt); + SubscribeLocalEvent(OnStorageInteractAttempt); SubscribeLocalEvent(OnUIOpenAttempt); SubscribeLocalEvent(LockToggled); @@ -378,9 +379,9 @@ public sealed class LockSystem : EntitySystem TryUnlock(uid, args.User, skipDoAfter: true); } - private void OnStorageInteractAttempt(Entity ent, ref StorageInteractAttemptEvent args) + private void OnStorageInteractAttempt(Entity ent, ref StorageInteractAttemptEvent args) { - if (ent.Comp.Locked) + if (IsLocked(ent.Owner)) args.Cancelled = true; } diff --git a/Content.Shared/Lock/LockedStorageComponent.cs b/Content.Shared/Lock/LockedStorageComponent.cs new file mode 100644 index 0000000000..25d6dba381 --- /dev/null +++ b/Content.Shared/Lock/LockedStorageComponent.cs @@ -0,0 +1,10 @@ +using Content.Shared.Storage; +using Robust.Shared.GameStates; + +namespace Content.Shared.Lock; + +/// +/// Prevents using an entity's if its is locked. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class LockedStorageComponent : Component; diff --git a/Content.Shared/Magic/SpellbookSystem.cs b/Content.Shared/Magic/SpellbookSystem.cs index ca01819bce..90038fa9ba 100644 --- a/Content.Shared/Magic/SpellbookSystem.cs +++ b/Content.Shared/Magic/SpellbookSystem.cs @@ -1,5 +1,6 @@ using Content.Shared.Actions; -using Content.Shared.Actions.Components; +using Content.Shared.Actions.Components; +using Content.Shared.Charges.Components; using Content.Shared.Charges.Systems; using Content.Shared.DoAfter; using Content.Shared.Interaction.Events; @@ -29,14 +30,19 @@ public sealed class SpellbookSystem : EntitySystem { foreach (var (id, charges) in ent.Comp.SpellActions) { - var spell = _actionContainer.AddAction(ent, id); - if (spell == null) + var action = _actionContainer.AddAction(ent, id); + if (action is not { } spell) continue; // Null means infinite charges. if (charges is { } count) - _sharedCharges.SetCharges(spell.Value, count); - ent.Comp.Spells.Add(spell.Value); + { + EnsureComp(spell, out var chargeComp); + _sharedCharges.SetMaxCharges((spell, chargeComp), count); + _sharedCharges.SetCharges((spell, chargeComp), count); + } + + ent.Comp.Spells.Add(spell); } } @@ -75,9 +81,13 @@ public sealed class SpellbookSystem : EntitySystem foreach (var (id, charges) in ent.Comp.SpellActions) { EntityUid? actionId = null; - if (_actions.AddAction(args.Args.User, ref actionId, id) - && charges is { } count) // Null means infinite charges - _sharedCharges.SetCharges(actionId.Value, count); + if (!_actions.AddAction(args.Args.User, ref actionId, id) + || charges is not { } count // Null means infinite charges + || !TryComp(actionId, out var chargeComp)) + continue; + + _sharedCharges.SetMaxCharges((actionId.Value, chargeComp), count); + _sharedCharges.SetCharges((actionId.Value, chargeComp), count); } } diff --git a/Content.Shared/Mech/EntitySystems/SharedMechSystem.cs b/Content.Shared/Mech/EntitySystems/SharedMechSystem.cs index ab0f658af0..c461b588b1 100644 --- a/Content.Shared/Mech/EntitySystems/SharedMechSystem.cs +++ b/Content.Shared/Mech/EntitySystems/SharedMechSystem.cs @@ -14,6 +14,7 @@ using Content.Shared.Mech.Equipment.Components; using Content.Shared.Movement.Components; using Content.Shared.Movement.Systems; using Content.Shared.Popups; +using Content.Shared.Storage.Components; using Content.Shared.Weapons.Melee; using Content.Shared.Whitelist; using Robust.Shared.Containers; @@ -48,6 +49,7 @@ public abstract partial class SharedMechSystem : EntitySystem SubscribeLocalEvent(RelayInteractionEvent); SubscribeLocalEvent(OnStartup); SubscribeLocalEvent(OnDestruction); + SubscribeLocalEvent(OnEntityStorageDump); SubscribeLocalEvent(OnGetAdditionalAccess); SubscribeLocalEvent(OnDragDrop); SubscribeLocalEvent(OnCanDragDrop); @@ -104,6 +106,12 @@ public abstract partial class SharedMechSystem : EntitySystem BreakMech(uid, component); } + private void OnEntityStorageDump(Entity entity, ref EntityStorageIntoContainerAttemptEvent args) + { + // There's no reason we should dump into /any/ of the mech's containers. + args.Cancelled = true; + } + private void OnGetAdditionalAccess(EntityUid uid, MechComponent component, ref GetAdditionalAccessEvent args) { var pilot = component.PilotSlot.ContainedEntity; @@ -147,7 +155,7 @@ public abstract partial class SharedMechSystem : EntitySystem } /// - /// Destroys the mech, removing the user and ejecting all installed equipment. + /// Destroys the mech, removing the user and ejecting anything contained. /// /// /// @@ -237,14 +245,19 @@ public abstract partial class SharedMechSystem : EntitySystem /// /// /// - /// Whether or not the removal can be cancelled + /// + /// Whether or not the removal can be cancelled, and if non-mech equipment should be ejected. + /// public void RemoveEquipment(EntityUid uid, EntityUid toRemove, MechComponent? component = null, MechEquipmentComponent? equipmentComponent = null, bool forced = false) { if (!Resolve(uid, ref component)) return; - if (!Resolve(toRemove, ref equipmentComponent)) + // When forced, we also want to handle the possibility that the "equipment" isn't actually equipment. + // This /shouldn't/ be possible thanks to OnEntityStorageDump, but there's been quite a few regressions + // with entities being hardlock stuck inside mechs. + if (!Resolve(toRemove, ref equipmentComponent) && !forced) return; if (!forced) @@ -261,7 +274,9 @@ public abstract partial class SharedMechSystem : EntitySystem if (component.CurrentSelectedEquipment == toRemove) CycleEquipment(uid, component); - equipmentComponent.EquipmentOwner = null; + if (forced && equipmentComponent != null) + equipmentComponent.EquipmentOwner = null; + _container.Remove(toRemove, component.EquipmentContainer); UpdateUserInterface(uid, component); } diff --git a/Content.Shared/Medical/Healing/HealingComponent.cs b/Content.Shared/Medical/Healing/HealingComponent.cs index 53358fd28d..40fb180700 100644 --- a/Content.Shared/Medical/Healing/HealingComponent.cs +++ b/Content.Shared/Medical/Healing/HealingComponent.cs @@ -43,7 +43,7 @@ public sealed partial class HealingComponent : Component /// How long it takes to apply the damage. /// [DataField, AutoNetworkedField] - public float Delay = 3f; + public TimeSpan Delay = TimeSpan.FromSeconds(3f); /// /// Delay multiplier when healing yourself. diff --git a/Content.Shared/Medical/Healing/HealingSystem.cs b/Content.Shared/Medical/Healing/HealingSystem.cs index 74cb8881f4..b737914dcb 100644 --- a/Content.Shared/Medical/Healing/HealingSystem.cs +++ b/Content.Shared/Medical/Healing/HealingSystem.cs @@ -112,9 +112,17 @@ public sealed class HealingSystem : EntitySystem // Logic to determine the whether or not to repeat the healing action args.Repeat = HasDamage((args.Used.Value, healing), target) && !dontRepeat; - if (!args.Repeat && !dontRepeat) - _popupSystem.PopupClient(Loc.GetString("medical-item-finished-using", ("item", args.Used)), target.Owner, args.User); args.Handled = true; + + if (!args.Repeat) + { + _popupSystem.PopupClient(Loc.GetString("medical-item-finished-using", ("item", args.Used)), target.Owner, args.User); + return; + } + + // Update our self heal delay so it shortens as we heal more damage. + if (args.User == target.Owner) + args.Args.Delay = healing.Delay * GetScaledHealingPenalty(target.Owner, healing.SelfHealPenaltyMultiplier); } private bool HasDamage(Entity healing, Entity target) @@ -203,7 +211,7 @@ public sealed class HealingSystem : EntitySystem var delay = isNotSelf ? healing.Comp.Delay - : healing.Comp.Delay * GetScaledHealingPenalty(healing); + : healing.Comp.Delay * GetScaledHealingPenalty(target, healing.Comp.SelfHealPenaltyMultiplier); var doAfterEventArgs = new DoAfterArgs(EntityManager, user, delay, new HealingDoAfterEvent(), target, target: target, used: healing) @@ -222,21 +230,21 @@ public sealed class HealingSystem : EntitySystem /// /// Scales the self-heal penalty based on the amount of damage taken /// - /// - /// - /// - public float GetScaledHealingPenalty(Entity healing) + /// Entity we're healing + /// Maximum modifier we can have. + /// Modifier we multiply our healing time by + public float GetScaledHealingPenalty(Entity ent, float mod) { - var output = healing.Comp.Delay; - if (!TryComp(healing, out var mobThreshold) || - !TryComp(healing, out var damageable)) - return output; - if (!_mobThresholdSystem.TryGetThresholdForState(healing, MobState.Critical, out var amount, mobThreshold)) + if (!Resolve(ent, ref ent.Comp1, ref ent.Comp2, false)) + return mod; + + if (!_mobThresholdSystem.TryGetThresholdForState(ent, MobState.Critical, out var amount, ent.Comp2)) return 1; - var percentDamage = (float)(damageable.TotalDamage / amount); + var percentDamage = (float)(ent.Comp1.TotalDamage / amount); //basically make it scale from 1 to the multiplier. - var modifier = percentDamage * (healing.Comp.SelfHealPenaltyMultiplier - 1) + 1; - return Math.Max(modifier, 1); + + var output = percentDamage * (mod - 1) + 1; + return Math.Max(output, 1); } } diff --git a/Content.Shared/Mind/MindComponent.cs b/Content.Shared/Mind/MindComponent.cs index 57cd628f90..efb8e45b94 100644 --- a/Content.Shared/Mind/MindComponent.cs +++ b/Content.Shared/Mind/MindComponent.cs @@ -1,8 +1,7 @@ -using Content.Shared.GameTicking; using Content.Shared.Mind.Components; +using Robust.Shared.Containers; using Robust.Shared.GameStates; using Robust.Shared.Network; -using Robust.Shared.Player; using Robust.Shared.Prototypes; namespace Content.Shared.Mind; @@ -100,10 +99,16 @@ public sealed partial class MindComponent : Component public bool PreventSuicide { get; set; } /// - /// Mind Role Entities belonging to this Mind + /// Mind Role Entities belonging to this Mind are stored in this container. /// - [DataField, AutoNetworkedField] - public List MindRoles = new List(); + [ViewVariables] + public Container MindRoleContainer = default!; + + /// + /// The id for the MindRoleContainer. + /// + [ViewVariables] + public const string MindRoleContainerId = "mind_roles"; /// /// The mind's current antagonist/special role, or lack thereof; diff --git a/Content.Shared/Mind/SharedMindSystem.Relay.cs b/Content.Shared/Mind/SharedMindSystem.Relay.cs index 60ad2fc30a..0ad18e2e08 100644 --- a/Content.Shared/Mind/SharedMindSystem.Relay.cs +++ b/Content.Shared/Mind/SharedMindSystem.Relay.cs @@ -23,7 +23,7 @@ public abstract partial class SharedMindSystem : EntitySystem { RaiseLocalEvent(mindId, ref ev); - foreach (var role in mindComp.MindRoles) + foreach (var role in mindComp.MindRoleContainer.ContainedEntities) RaiseLocalEvent(role, ref ev); } } @@ -36,7 +36,7 @@ public abstract partial class SharedMindSystem : EntitySystem { RaiseLocalEvent(mindId, ref ev); - foreach (var role in mindComp.MindRoles) + foreach (var role in mindComp.MindRoleContainer.ContainedEntities) RaiseLocalEvent(role, ref ev); } diff --git a/Content.Shared/Mind/SharedMindSystem.cs b/Content.Shared/Mind/SharedMindSystem.cs index 04faadbb50..8c9b4cd106 100644 --- a/Content.Shared/Mind/SharedMindSystem.cs +++ b/Content.Shared/Mind/SharedMindSystem.cs @@ -15,8 +15,8 @@ using Content.Shared.Mobs.Systems; using Content.Shared.Objectives.Systems; using Content.Shared.Players; using Content.Shared.Speech; - using Content.Shared.Whitelist; +using Robust.Shared.Containers; using Robust.Shared.Map; using Robust.Shared.Network; using Robust.Shared.Player; @@ -36,6 +36,7 @@ public abstract partial class SharedMindSystem : EntitySystem [Dependency] private readonly ISharedPlayerManager _playerManager = default!; [Dependency] private readonly MetaDataSystem _metadata = default!; [Dependency] private readonly EntityWhitelistSystem _whitelist = default!; + [Dependency] private readonly SharedContainerSystem _container = default!; [ViewVariables] protected readonly Dictionary UserMinds = new(); @@ -64,6 +65,8 @@ public abstract partial class SharedMindSystem : EntitySystem private void OnMindStartup(EntityUid uid, MindComponent component, ComponentStartup args) { + component.MindRoleContainer = _container.EnsureContainer(uid, MindComponent.MindRoleContainerId); + if (component.UserId == null) return; diff --git a/Content.Shared/Mindshield/FakeMindShield/SharedFakeMindshieldSystem.cs b/Content.Shared/Mindshield/FakeMindShield/FakeMindshieldSystem.cs similarity index 94% rename from Content.Shared/Mindshield/FakeMindShield/SharedFakeMindshieldSystem.cs rename to Content.Shared/Mindshield/FakeMindShield/FakeMindshieldSystem.cs index c82f2b2863..4d7d457321 100644 --- a/Content.Shared/Mindshield/FakeMindShield/SharedFakeMindshieldSystem.cs +++ b/Content.Shared/Mindshield/FakeMindShield/FakeMindshieldSystem.cs @@ -8,7 +8,7 @@ using Robust.Shared.Timing; namespace Content.Shared.Mindshield.FakeMindShield; -public sealed class SharedFakeMindShieldSystem : EntitySystem +public sealed class FakeMindShieldSystem : EntitySystem { [Dependency] private readonly SharedActionsSystem _actions = default!; [Dependency] private readonly TagSystem _tag = default!; @@ -24,9 +24,11 @@ public sealed class SharedFakeMindShieldSystem : EntitySystem SubscribeLocalEvent(OnChameleonControllerOutfitSelected); } - private void OnToggleMindshield(EntityUid uid, FakeMindShieldComponent comp, FakeMindShieldToggleEvent toggleEvent) + private void OnToggleMindshield(EntityUid uid, FakeMindShieldComponent comp, FakeMindShieldToggleEvent args) { comp.IsEnabled = !comp.IsEnabled; + args.Toggle = true; + args.Handled = true; Dirty(uid, comp); } diff --git a/Content.Shared/Mindshield/FakeMindShield/SharedFakeMindShieldImplantSystem.cs b/Content.Shared/Mindshield/FakeMindShield/SharedFakeMindShieldImplantSystem.cs deleted file mode 100644 index a597e03406..0000000000 --- a/Content.Shared/Mindshield/FakeMindShield/SharedFakeMindShieldImplantSystem.cs +++ /dev/null @@ -1,45 +0,0 @@ -using Content.Shared.Actions; -using Content.Shared.Implants; -using Content.Shared.Implants.Components; -using Content.Shared.Mindshield.Components; -using Robust.Shared.Containers; - -namespace Content.Shared.Mindshield.FakeMindShield; - -public sealed class SharedFakeMindShieldImplantSystem : EntitySystem -{ - [Dependency] private readonly SharedActionsSystem _actionsSystem = default!; - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent(OnFakeMindShieldToggle); - SubscribeLocalEvent(ImplantCheck); - SubscribeLocalEvent(ImplantDraw); - } - - /// - /// Raise the Action of a Implanted user toggling their implant to the FakeMindshieldComponent on their entity - /// - private void OnFakeMindShieldToggle(Entity entity, ref FakeMindShieldToggleEvent ev) - { - ev.Handled = true; - if (entity.Comp.ImplantedEntity is not { } ent) - return; - - if (!TryComp(ent, out var comp)) - return; - // TODO: is there a reason this cant set ev.Toggle = true; - _actionsSystem.SetToggled((ev.Action, ev.Action), !comp.IsEnabled); // Set it to what the Mindshield component WILL be after this - RaiseLocalEvent(ent, ev); //this reraises the action event to support an eventual future Changeling Antag which will also be using this component for it's "mindshield" ability - } - private void ImplantCheck(EntityUid uid, FakeMindShieldImplantComponent component ,ref ImplantImplantedEvent ev) - { - if (ev.Implanted != null) - EnsureComp(ev.Implanted.Value); - } - - private void ImplantDraw(Entity ent, ref EntGotRemovedFromContainerMessage ev) - { - RemComp(ev.Container.Owner); - } -} diff --git a/Content.Shared/Morgue/Components/ActiveCrematoriumComponent.cs b/Content.Shared/Morgue/Components/ActiveCrematoriumComponent.cs new file mode 100644 index 0000000000..6d3707c0f7 --- /dev/null +++ b/Content.Shared/Morgue/Components/ActiveCrematoriumComponent.cs @@ -0,0 +1,9 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Morgue.Components; + +/// +/// Used to track actively cooking crematoriums. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class ActiveCrematoriumComponent : Component; diff --git a/Content.Shared/Morgue/Components/CrematoriumComponent.cs b/Content.Shared/Morgue/Components/CrematoriumComponent.cs new file mode 100644 index 0000000000..c372e1f71b --- /dev/null +++ b/Content.Shared/Morgue/Components/CrematoriumComponent.cs @@ -0,0 +1,42 @@ +using Robust.Shared.Audio; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; + +namespace Content.Shared.Morgue.Components; + +/// +/// Allows an entity storage to dispose bodies by turning them into ash. +/// +[RegisterComponent, NetworkedComponent] +[AutoGenerateComponentState, AutoGenerateComponentPause] +public sealed partial class CrematoriumComponent : Component +{ + /// + /// The entity to spawn when something was burned. + /// + [DataField, AutoNetworkedField] + public EntProtoId LeftOverProtoId = "Ash"; + + /// + /// The time it takes to cremate something. + /// + [DataField, AutoNetworkedField] + public TimeSpan CookTime = TimeSpan.FromSeconds(5); + + /// + /// The timestamp at which cremating is finished. + /// + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] + [AutoNetworkedField, AutoPausedField] + public TimeSpan ActiveUntil = TimeSpan.Zero; + + [DataField] + public SoundSpecifier CremateStartSound = new SoundPathSpecifier("/Audio/Items/Lighters/lighter1.ogg"); + + [DataField] + public SoundSpecifier CrematingSound = new SoundPathSpecifier("/Audio/Effects/burning.ogg"); + + [DataField] + public SoundSpecifier CremateFinishSound = new SoundPathSpecifier("/Audio/Machines/ding.ogg"); +} diff --git a/Content.Shared/Morgue/Components/EntityStorageLayingDownOverrideComponent.cs b/Content.Shared/Morgue/Components/EntityStorageLayingDownOverrideComponent.cs index 6b15a0cdb6..30a2637314 100644 --- a/Content.Shared/Morgue/Components/EntityStorageLayingDownOverrideComponent.cs +++ b/Content.Shared/Morgue/Components/EntityStorageLayingDownOverrideComponent.cs @@ -1,6 +1,10 @@ +using Robust.Shared.GameStates; + namespace Content.Shared.Morgue.Components; -[RegisterComponent] -public sealed partial class EntityStorageLayingDownOverrideComponent : Component -{ -} +/// +/// Makes an entity storage only accept entities that are laying down. +/// This is true for mobs that are crit, dead or crawling. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class EntityStorageLayingDownOverrideComponent : Component; diff --git a/Content.Shared/Morgue/Components/MorgueComponent.cs b/Content.Shared/Morgue/Components/MorgueComponent.cs index 5d3fa45161..176e2269c8 100644 --- a/Content.Shared/Morgue/Components/MorgueComponent.cs +++ b/Content.Shared/Morgue/Components/MorgueComponent.cs @@ -1,26 +1,38 @@ using Robust.Shared.Audio; using Robust.Shared.GameStates; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; namespace Content.Shared.Morgue.Components; +/// +/// When added to an entity storage this component will keep track of the mind status of the player inside. +/// [RegisterComponent, NetworkedComponent] +[AutoGenerateComponentState, AutoGenerateComponentPause] public sealed partial class MorgueComponent : Component { /// - /// Whether or not the morgue beeps if a living player is inside. + /// Whether or not the morgue beeps if a living player is inside. /// - [DataField] + [DataField, AutoNetworkedField] public bool DoSoulBeep = true; - [DataField] - public float AccumulatedFrameTime = 0f; + /// + /// The timestamp for the next beep. + /// + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] + [AutoPausedField] + public TimeSpan NextBeep = TimeSpan.Zero; /// - /// The amount of time between each beep. + /// The amount of time between each beep. /// [DataField] - public float BeepTime = 10f; + public TimeSpan BeepTime = TimeSpan.FromSeconds(10); + /// + /// The beep sound to play. + /// [DataField] public SoundSpecifier OccupantHasSoulAlarmSound = new SoundPathSpecifier("/Audio/Weapons/Guns/EmptyAlarm/smg_empty_alarm.ogg"); } diff --git a/Content.Shared/Morgue/EntityStorageLayingDownOverrideSystem.cs b/Content.Shared/Morgue/EntityStorageLayingDownOverrideSystem.cs index 630135f36a..d11695321b 100644 --- a/Content.Shared/Morgue/EntityStorageLayingDownOverrideSystem.cs +++ b/Content.Shared/Morgue/EntityStorageLayingDownOverrideSystem.cs @@ -21,7 +21,7 @@ public sealed class EntityStorageLayingDownOverrideSystem : EntitySystem { // Explicitly check for standing state component, as entities without it will return false for IsDown() // which prevents inserting any kind of non-mobs into this container (which is unintended) - if (TryComp(ent, out var standingState) && !_standing.IsDown(ent, standingState)) + if (TryComp(ent, out var standingState) && !_standing.IsDown((ent, standingState))) args.Contents.Remove(ent); } } diff --git a/Content.Shared/Morgue/SharedCrematoriumSystem.cs b/Content.Shared/Morgue/SharedCrematoriumSystem.cs new file mode 100644 index 0000000000..6c216f0232 --- /dev/null +++ b/Content.Shared/Morgue/SharedCrematoriumSystem.cs @@ -0,0 +1,170 @@ +using Content.Shared.Database; +using Content.Shared.Examine; +using Content.Shared.Mind; +using Content.Shared.Morgue.Components; +using Content.Shared.Popups; +using Content.Shared.Standing; +using Content.Shared.Storage; +using Content.Shared.Storage.Components; +using Content.Shared.Storage.EntitySystems; +using Content.Shared.Verbs; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Containers; +using Robust.Shared.Network; +using Robust.Shared.Timing; + +namespace Content.Shared.Morgue; + +public abstract class SharedCrematoriumSystem : EntitySystem +{ + [Dependency] protected readonly SharedEntityStorageSystem EntityStorage = default!; + [Dependency] protected readonly SharedPopupSystem Popup = default!; + [Dependency] protected readonly StandingStateSystem Standing = default!; + [Dependency] protected readonly SharedMindSystem Mind = default!; + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly INetManager _net = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SharedContainerSystem _container = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnExamine); + SubscribeLocalEvent>(AddCremateVerb); + SubscribeLocalEvent(OnAttemptOpen); + } + + private void OnExamine(Entity ent, ref ExaminedEvent args) + { + if (!TryComp(ent, out var appearance)) + return; + + using (args.PushGroup(nameof(CrematoriumComponent))) + { + if (_appearance.TryGetData(ent.Owner, CrematoriumVisuals.Burning, out var isBurning, appearance) && + isBurning) + { + args.PushMarkup(Loc.GetString("crematorium-entity-storage-component-on-examine-details-is-burning", + ("owner", ent.Owner))); + } + + if (_appearance.TryGetData(ent.Owner, StorageVisuals.HasContents, out var hasContents, appearance) && + hasContents) + { + args.PushMarkup(Loc.GetString("crematorium-entity-storage-component-on-examine-details-has-contents")); + } + else + { + args.PushMarkup(Loc.GetString("crematorium-entity-storage-component-on-examine-details-empty")); + } + } + } + + private void OnAttemptOpen(Entity ent, ref StorageOpenAttemptEvent args) + { + args.Cancelled = true; + } + + private void AddCremateVerb(EntityUid uid, CrematoriumComponent component, GetVerbsEvent args) + { + if (!TryComp(uid, out var storage)) + return; + + if (!args.CanAccess || !args.CanInteract || args.Hands == null || storage.Open) + return; + + if (HasComp(uid)) + return; + + AlternativeVerb verb = new() + { + Text = Loc.GetString("cremate-verb-get-data-text"), + // TODO VERB ICON add flame/burn symbol? + Act = () => TryCremate((uid, component, storage), args.User), + Impact = LogImpact.High // could be a body? or evidence? I dunno. + }; + args.Verbs.Add(verb); + } + + /// + /// Start the cremation. + /// + public bool Cremate(Entity ent, EntityUid? user = null) + { + if (!Resolve(ent, ref ent.Comp)) + return false; + + if (HasComp(ent)) + return false; + + _audio.PlayPredicted(ent.Comp.CremateStartSound, ent.Owner, user); + _audio.PlayPredicted(ent.Comp.CrematingSound, ent.Owner, user); + _appearance.SetData(ent.Owner, CrematoriumVisuals.Burning, true); + + AddComp(ent); + ent.Comp.ActiveUntil = _timing.CurTime + ent.Comp.CookTime; + Dirty(ent); + return true; + } + + /// + /// Try to start to start the cremation. + /// Only works when the crematorium is closed and there are entities inside. + /// + public bool TryCremate(Entity ent, EntityUid? user = null) + { + if (!Resolve(ent, ref ent.Comp1, ref ent.Comp2)) + return false; + + if (ent.Comp2.Open || ent.Comp2.Contents.ContainedEntities.Count < 1) + return false; + + return Cremate((ent.Owner, ent.Comp1), user); + } + + /// + /// Finish the cremation process. + /// This will delete the entities inside and spawn ash. + /// + private void FinishCooking(Entity ent) + { + if (!Resolve(ent, ref ent.Comp1, ref ent.Comp2)) + return; + + _appearance.SetData(ent.Owner, CrematoriumVisuals.Burning, false); + RemComp(ent); + + if (ent.Comp2.Contents.ContainedEntities.Count > 0) + { + for (var i = ent.Comp2.Contents.ContainedEntities.Count - 1; i >= 0; i--) + { + var item = ent.Comp2.Contents.ContainedEntities[i]; + _container.Remove(item, ent.Comp2.Contents); + PredictedDel(item); + } + PredictedTrySpawnInContainer(ent.Comp1.LeftOverProtoId, ent.Owner, ent.Comp2.Contents.ID, out _); + } + + EntityStorage.OpenStorage(ent.Owner, ent.Comp2); + + if (_net.IsServer) // can't predict without the user + _audio.PlayPvs(ent.Comp1.CremateFinishSound, ent.Owner); + } + + public override void Update(float frameTime) + { + base.Update(frameTime); + + var curTime = _timing.CurTime; + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out _, out var crematorium)) + { + if (curTime < crematorium.ActiveUntil) + continue; + + FinishCooking((uid, crematorium, null)); + } + } +} diff --git a/Content.Shared/Morgue/SharedMorgueSystem.cs b/Content.Shared/Morgue/SharedMorgueSystem.cs new file mode 100644 index 0000000000..3da92d798a --- /dev/null +++ b/Content.Shared/Morgue/SharedMorgueSystem.cs @@ -0,0 +1,83 @@ +using Content.Shared.Mobs.Components; +using Content.Shared.Storage.Components; +using Content.Shared.Examine; +using Content.Shared.Morgue.Components; +using Robust.Shared.Player; + +namespace Content.Shared.Morgue; + +public abstract class SharedMorgueSystem : EntitySystem +{ + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnExamine); + SubscribeLocalEvent(OnClosed); + SubscribeLocalEvent(OnOpened); + } + + /// + /// Handles the examination text for looking at a morgue. + /// + private void OnExamine(Entity ent, ref ExaminedEvent args) + { + if (!args.IsInDetailsRange) + return; + + _appearance.TryGetData(ent.Owner, MorgueVisuals.Contents, out var contents); + + var text = contents switch + { + MorgueContents.HasSoul => "morgue-entity-storage-component-on-examine-details-body-has-soul", + MorgueContents.HasContents => "morgue-entity-storage-component-on-examine-details-has-contents", + MorgueContents.HasMob => "morgue-entity-storage-component-on-examine-details-body-has-no-soul", + _ => "morgue-entity-storage-component-on-examine-details-empty" + }; + + args.PushMarkup(Loc.GetString(text)); + } + + private void OnClosed(Entity ent, ref StorageAfterCloseEvent args) + { + CheckContents(ent.Owner, ent.Comp); + } + + private void OnOpened(Entity ent, ref StorageAfterOpenEvent args) + { + CheckContents(ent.Owner, ent.Comp); + } + + /// + /// Updates data in case something died/got deleted in the morgue. + /// + public void CheckContents(EntityUid uid, MorgueComponent? morgue = null, EntityStorageComponent? storage = null, AppearanceComponent? app = null) + { + if (!Resolve(uid, ref morgue, ref storage, ref app)) + return; + + if (storage.Contents.ContainedEntities.Count == 0) + { + _appearance.SetData(uid, MorgueVisuals.Contents, MorgueContents.Empty, app); + return; + } + + var hasMob = false; + + foreach (var ent in storage.Contents.ContainedEntities) + { + if (!hasMob && HasComp(ent)) + hasMob = true; + + if (HasComp(ent)) + { + _appearance.SetData(uid, MorgueVisuals.Contents, MorgueContents.HasSoul, app); + return; + } + } + + _appearance.SetData(uid, MorgueVisuals.Contents, hasMob ? MorgueContents.HasMob : MorgueContents.HasContents, app); + } +} diff --git a/Content.Shared/Movement/Components/ActiveLeaperComponent.cs b/Content.Shared/Movement/Components/ActiveLeaperComponent.cs new file mode 100644 index 0000000000..cb5a237af4 --- /dev/null +++ b/Content.Shared/Movement/Components/ActiveLeaperComponent.cs @@ -0,0 +1,16 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Movement.Components; + +/// +/// Marker component given to the users of the if they are meant to collide with environment. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class ActiveLeaperComponent : Component +{ + /// + /// The duration to stun the owner on collide with environment. + /// + [DataField, AutoNetworkedField] + public TimeSpan KnockdownDuration; +} diff --git a/Content.Shared/Movement/Components/JumpAbilityComponent.cs b/Content.Shared/Movement/Components/JumpAbilityComponent.cs index 6da9161578..a6e33d5b87 100644 --- a/Content.Shared/Movement/Components/JumpAbilityComponent.cs +++ b/Content.Shared/Movement/Components/JumpAbilityComponent.cs @@ -2,6 +2,7 @@ using Content.Shared.Actions; using Content.Shared.Movement.Systems; using Robust.Shared.Audio; using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; namespace Content.Shared.Movement.Components; @@ -13,6 +14,18 @@ namespace Content.Shared.Movement.Components; [RegisterComponent, NetworkedComponent, AutoGenerateComponentState, Access(typeof(SharedJumpAbilitySystem))] public sealed partial class JumpAbilityComponent : Component { + /// + /// The action prototype that allows you to jump. + /// + [DataField] + public EntProtoId Action = "ActionGravityJump"; + + /// + /// Entity to hold the action prototype. + /// + [DataField, AutoNetworkedField] + public EntityUid? ActionEntity; + /// /// How far you will jump (in tiles). /// @@ -25,11 +38,29 @@ public sealed partial class JumpAbilityComponent : Component [DataField, AutoNetworkedField] public float JumpThrowSpeed = 10f; + /// + /// Whether this entity can collide with another entity, leading to it getting knocked down. + /// + [DataField, AutoNetworkedField] + public bool CanCollide = false; + + /// + /// The duration of the knockdown in case of a collision from CanCollide. + /// + [DataField, AutoNetworkedField] + public TimeSpan CollideKnockdown = TimeSpan.FromSeconds(2); + /// /// This gets played whenever the jump action is used. /// [DataField, AutoNetworkedField] public SoundSpecifier? JumpSound; + + /// + /// The popup to show if the entity is unable to perform a jump. + /// + [DataField, AutoNetworkedField] + public LocId? JumpFailedPopup = "jump-ability-failure"; } public sealed partial class GravityJumpEvent : InstantActionEvent; diff --git a/Content.Shared/Movement/Components/MovementIgnoreGravityComponent.cs b/Content.Shared/Movement/Components/MovementIgnoreGravityComponent.cs index 77c468e871..1723600ad1 100644 --- a/Content.Shared/Movement/Components/MovementIgnoreGravityComponent.cs +++ b/Content.Shared/Movement/Components/MovementIgnoreGravityComponent.cs @@ -1,34 +1,17 @@ -using Content.Shared.Clothing; -using Content.Shared.Gravity; -using Content.Shared.Inventory; using Robust.Shared.GameStates; -using Robust.Shared.Map; -using Robust.Shared.Physics; -using Robust.Shared.Physics.Components; -using Robust.Shared.Serialization; namespace Content.Shared.Movement.Components { /// /// Ignores gravity entirely. /// - [RegisterComponent, NetworkedComponent] + [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class MovementIgnoreGravityComponent : Component { /// - /// Whether or not gravity is on or off for this object. + /// Whether gravity is on or off for this object. This will always override the current Gravity State. /// - [DataField("gravityState")] public bool Weightless = false; - } - - [NetSerializable, Serializable] - public sealed class MovementIgnoreGravityComponentState : ComponentState - { + [DataField, AutoNetworkedField] public bool Weightless; - - public MovementIgnoreGravityComponentState(MovementIgnoreGravityComponent component) - { - Weightless = component.Weightless; - } } } diff --git a/Content.Shared/Movement/Systems/FrictionContactsSystem.cs b/Content.Shared/Movement/Systems/FrictionContactsSystem.cs index 44fc3933e3..3ffdd6ec26 100644 --- a/Content.Shared/Movement/Systems/FrictionContactsSystem.cs +++ b/Content.Shared/Movement/Systems/FrictionContactsSystem.cs @@ -84,7 +84,7 @@ public sealed class FrictionContactsSystem : EntitySystem var frictionNoInput = 0.0f; var acceleration = 0.0f; - var isAirborne = physicsComponent.BodyStatus == BodyStatus.InAir || _gravity.IsWeightless(entity, physicsComponent); + var isAirborne = physicsComponent.BodyStatus == BodyStatus.InAir || _gravity.IsWeightless(entity.Owner); var remove = true; var entries = 0; diff --git a/Content.Shared/Movement/Systems/MovementIgnoreGravitySystem.cs b/Content.Shared/Movement/Systems/MovementIgnoreGravitySystem.cs index 52cdf219e5..93f6650fa9 100644 --- a/Content.Shared/Movement/Systems/MovementIgnoreGravitySystem.cs +++ b/Content.Shared/Movement/Systems/MovementIgnoreGravitySystem.cs @@ -1,33 +1,35 @@ -using Content.Shared.Movement.Components; +using Content.Shared.Gravity; +using Content.Shared.Movement.Components; using Content.Shared.Movement.Events; -using Robust.Shared.GameStates; namespace Content.Shared.Movement.Systems; public sealed class MovementIgnoreGravitySystem : EntitySystem { + [Dependency] SharedGravitySystem _gravity = default!; public override void Initialize() { - SubscribeLocalEvent(GetState); - SubscribeLocalEvent(HandleState); SubscribeLocalEvent(OnWeightless); + SubscribeLocalEvent(OnIsWeightless); + SubscribeLocalEvent(OnComponentStartup); } - private void OnWeightless(EntityUid uid, MovementAlwaysTouchingComponent component, ref CanWeightlessMoveEvent args) + private void OnWeightless(Entity entity, ref CanWeightlessMoveEvent args) { args.CanMove = true; } - private void HandleState(EntityUid uid, MovementIgnoreGravityComponent component, ref ComponentHandleState args) + private void OnIsWeightless(Entity entity, ref IsWeightlessEvent args) { - if (args.Next is null) - return; + // We don't check if the event has been handled as this component takes precedent over other things. - component.Weightless = ((MovementIgnoreGravityComponentState) args.Next).Weightless; + args.IsWeightless = entity.Comp.Weightless; + args.Handled = true; } - private void GetState(EntityUid uid, MovementIgnoreGravityComponent component, ref ComponentGetState args) + private void OnComponentStartup(Entity entity, ref ComponentStartup args) { - args.State = new MovementIgnoreGravityComponentState(component); + EnsureComp(entity); + _gravity.RefreshWeightless(entity.Owner, entity.Comp.Weightless); } } diff --git a/Content.Shared/Movement/Systems/SharedJumpAbilitySystem.cs b/Content.Shared/Movement/Systems/SharedJumpAbilitySystem.cs index ac720cae68..598e4b564a 100644 --- a/Content.Shared/Movement/Systems/SharedJumpAbilitySystem.cs +++ b/Content.Shared/Movement/Systems/SharedJumpAbilitySystem.cs @@ -1,7 +1,14 @@ +using Content.Shared.Actions; +using Content.Shared.Actions.Components; +using Content.Shared.Cloning.Events; using Content.Shared.Gravity; using Content.Shared.Movement.Components; +using Content.Shared.Popups; +using Content.Shared.Standing; +using Content.Shared.Stunnable; using Content.Shared.Throwing; using Robust.Shared.Audio.Systems; +using Robust.Shared.Physics.Events; namespace Content.Shared.Movement.Systems; @@ -10,18 +17,64 @@ public sealed partial class SharedJumpAbilitySystem : EntitySystem [Dependency] private readonly ThrowingSystem _throwing = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedGravitySystem _gravity = default!; + [Dependency] private readonly SharedActionsSystem _actions = default!; + [Dependency] private readonly SharedStunSystem _stun = default!; + [Dependency] private readonly StandingStateSystem _standing = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; public override void Initialize() { base.Initialize(); + SubscribeLocalEvent(OnInit); + SubscribeLocalEvent(OnShutdown); + SubscribeLocalEvent(OnGravityJump); + + SubscribeLocalEvent(OnLeaperCollide); + SubscribeLocalEvent(OnLeaperLand); + SubscribeLocalEvent(OnLeaperStopThrow); + + SubscribeLocalEvent(OnClone); + } + + private void OnInit(Entity entity, ref MapInitEvent args) + { + if (!TryComp(entity, out ActionsComponent? comp)) + return; + + _actions.AddAction(entity, ref entity.Comp.ActionEntity, entity.Comp.Action, component: comp); + } + + private void OnShutdown(Entity entity, ref ComponentShutdown args) + { + _actions.RemoveAction(entity.Owner, entity.Comp.ActionEntity); + } + + private void OnLeaperCollide(Entity entity, ref StartCollideEvent args) + { + _stun.TryKnockdown(entity.Owner, entity.Comp.KnockdownDuration, force: true); + RemCompDeferred(entity); + } + + private void OnLeaperLand(Entity entity, ref LandEvent args) + { + RemCompDeferred(entity); + } + + private void OnLeaperStopThrow(Entity entity, ref StopThrowEvent args) + { + RemCompDeferred(entity); } private void OnGravityJump(Entity entity, ref GravityJumpEvent args) { - if (_gravity.IsWeightless(args.Performer)) + if (_gravity.IsWeightless(args.Performer) || _standing.IsDown(args.Performer)) + { + if (entity.Comp.JumpFailedPopup != null) + _popup.PopupClient(Loc.GetString(entity.Comp.JumpFailedPopup.Value), args.Performer, args.Performer); return; + } var xform = Transform(args.Performer); var throwing = xform.LocalRotation.ToWorldVec() * entity.Comp.JumpDistance; @@ -30,6 +83,29 @@ public sealed partial class SharedJumpAbilitySystem : EntitySystem _throwing.TryThrow(args.Performer, direction, entity.Comp.JumpThrowSpeed); _audio.PlayPredicted(entity.Comp.JumpSound, args.Performer, args.Performer); + + if (entity.Comp.CanCollide) + { + EnsureComp(entity, out var leaperComp); + leaperComp.KnockdownDuration = entity.Comp.CollideKnockdown; + Dirty(entity.Owner, leaperComp); + } + args.Handled = true; } + + private void OnClone(Entity ent, ref CloningEvent args) + { + if (!args.Settings.EventComponents.Contains(Factory.GetRegistration(ent.Comp.GetType()).Name)) + return; + + var targetComp = Factory.GetComponent(); + targetComp.Action = ent.Comp.Action; + targetComp.CanCollide = ent.Comp.CanCollide; + targetComp.JumpSound = ent.Comp.JumpSound; + targetComp.CollideKnockdown = ent.Comp.CollideKnockdown; + targetComp.JumpDistance = ent.Comp.JumpDistance; + targetComp.JumpThrowSpeed = ent.Comp.JumpThrowSpeed; + AddComp(args.CloneUid, targetComp, true); + } } diff --git a/Content.Shared/Movement/Systems/SharedMoverController.cs b/Content.Shared/Movement/Systems/SharedMoverController.cs index f8495fcd18..b3c84aed4d 100644 --- a/Content.Shared/Movement/Systems/SharedMoverController.cs +++ b/Content.Shared/Movement/Systems/SharedMoverController.cs @@ -195,8 +195,7 @@ public abstract partial class SharedMoverController : VirtualController } // If the body is in air but isn't weightless then it can't move - // TODO: MAKE ISWEIGHTLESS EVENT BASED - var weightless = _gravity.IsWeightless(uid, physicsComponent, xform); + var weightless = _gravity.IsWeightless(uid); var inAirHelpless = false; if (physicsComponent.BodyStatus != BodyStatus.OnGround && !CanMoveInAirQuery.HasComponent(uid)) @@ -624,8 +623,7 @@ public abstract partial class SharedMoverController : VirtualController if (!TryComp(ent, out var physicsComponent) || !XformQuery.TryComp(ent, out var xform)) return; - // TODO: Make IsWeightless event based!!! - if (physicsComponent.BodyStatus != BodyStatus.OnGround || _gravity.IsWeightless(ent, physicsComponent, xform)) + if (physicsComponent.BodyStatus != BodyStatus.OnGround || _gravity.IsWeightless(ent.Owner)) args.Modifier *= ent.Comp.BaseWeightlessFriction; else args.Modifier *= ent.Comp.BaseFriction; diff --git a/Content.Shared/Movement/Systems/SpeedModifierContactsSystem.cs b/Content.Shared/Movement/Systems/SpeedModifierContactsSystem.cs index 8a0b085a83..2dda244163 100644 --- a/Content.Shared/Movement/Systems/SpeedModifierContactsSystem.cs +++ b/Content.Shared/Movement/Systems/SpeedModifierContactsSystem.cs @@ -85,7 +85,7 @@ public sealed class SpeedModifierContactsSystem : EntitySystem var sprintSpeed = 0.0f; // Cache the result of the airborne check, as it's expensive and independent of contacting entities, hence need only be done once. - var isAirborne = physicsComponent.BodyStatus == BodyStatus.InAir || _gravity.IsWeightless(uid, physicsComponent); + var isAirborne = physicsComponent.BodyStatus == BodyStatus.InAir || _gravity.IsWeightless(uid); bool remove = true; var entries = 0; diff --git a/Content.Shared/Movement/Systems/WormSystem.cs b/Content.Shared/Movement/Systems/WormSystem.cs index 8dc7f86a08..c6f2b7834c 100644 --- a/Content.Shared/Movement/Systems/WormSystem.cs +++ b/Content.Shared/Movement/Systems/WormSystem.cs @@ -12,7 +12,6 @@ namespace Content.Shared.Movement.Systems; public sealed class WormSystem : EntitySystem { [Dependency] private readonly AlertsSystem _alerts = default!; - [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly SharedStunSystem _stun = default!; public override void Initialize() diff --git a/Content.Shared/Nutrition/Components/ButcherableComponent.cs b/Content.Shared/Nutrition/Components/ButcherableComponent.cs index 4fce45422a..486026d259 100644 --- a/Content.Shared/Nutrition/Components/ButcherableComponent.cs +++ b/Content.Shared/Nutrition/Components/ButcherableComponent.cs @@ -1,34 +1,51 @@ +using Content.Shared.Kitchen; using Content.Shared.Storage; using Robust.Shared.GameStates; -namespace Content.Shared.Nutrition.Components +namespace Content.Shared.Nutrition.Components; + +/// +/// Indicates that the entity can be butchered. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class ButcherableComponent : Component { /// - /// Indicates that the entity can be thrown on a kitchen spike for butchering. + /// List of the entities that this entity should spawn after being butchered. /// - [RegisterComponent, NetworkedComponent] - public sealed partial class ButcherableComponent : Component - { - [DataField("spawned", required: true)] - public List SpawnedEntities = new(); + /// + /// Note that spawns one item at a time and decreases the amount until it's zero and then removes the entry. + /// + [DataField("spawned", required: true), AutoNetworkedField] + public List SpawnedEntities = []; - [ViewVariables(VVAccess.ReadWrite), DataField("butcherDelay")] - public float ButcherDelay = 8.0f; + /// + /// Time required to butcher that entity. + /// + [DataField, AutoNetworkedField] + public float ButcherDelay = 8.0f; - [ViewVariables(VVAccess.ReadWrite), DataField("butcheringType")] - public ButcheringType Type = ButcheringType.Knife; - - /// - /// Prevents butchering same entity on two and more spikes simultaneously and multiple doAfters on the same Spike - /// - [ViewVariables] - public bool BeingButchered; - } - - public enum ButcheringType : byte - { - Knife, // e.g. goliaths - Spike, // e.g. monkeys - Gibber // e.g. humans. TODO - } + /// + /// Tool type used to butcher that entity. + /// + [DataField("butcheringType"), AutoNetworkedField] + public ButcheringType Type = ButcheringType.Knife; +} + +public enum ButcheringType : byte +{ + /// + /// E.g. goliaths. + /// + Knife, + + /// + /// E.g. monkeys. + /// + Spike, + + /// + /// E.g. humans. + /// + Gibber // TODO } diff --git a/Content.Server/Nutrition/Components/MessyDrinkerComponent.cs b/Content.Shared/Nutrition/Components/MessyDrinkerComponent.cs similarity index 71% rename from Content.Server/Nutrition/Components/MessyDrinkerComponent.cs rename to Content.Shared/Nutrition/Components/MessyDrinkerComponent.cs index 5519c5d983..c077db8231 100644 --- a/Content.Server/Nutrition/Components/MessyDrinkerComponent.cs +++ b/Content.Shared/Nutrition/Components/MessyDrinkerComponent.cs @@ -1,30 +1,31 @@ using Content.Shared.FixedPoint; using Content.Shared.Nutrition.Prototypes; +using Robust.Shared.GameStates; using Robust.Shared.Prototypes; -namespace Content.Server.Nutrition.Components; +namespace Content.Shared.Nutrition.Components; /// /// Entities with this component occasionally spill some of the solution they're ingesting. /// -[RegisterComponent] +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class MessyDrinkerComponent : Component { - [DataField] + [DataField, AutoNetworkedField] public float SpillChance = 0.2f; /// /// The amount of solution that is spilled when procs. /// - [DataField] + [DataField, AutoNetworkedField] public FixedPoint2 SpillAmount = 1.0; /// /// The types of food prototypes we can spill /// - [DataField] + [DataField, AutoNetworkedField] public List> SpillableTypes = new List> { "Drink" }; - [DataField] + [DataField, AutoNetworkedField] public LocId? SpillMessagePopup; } diff --git a/Content.Shared/Nutrition/EntitySystems/FoodSequenceSystem.cs b/Content.Shared/Nutrition/EntitySystems/FoodSequenceSystem.cs index 7b50ae2c8b..0fa85666a0 100644 --- a/Content.Shared/Nutrition/EntitySystems/FoodSequenceSystem.cs +++ b/Content.Shared/Nutrition/EntitySystems/FoodSequenceSystem.cs @@ -15,14 +15,15 @@ namespace Content.Shared.Nutrition.EntitySystems; public sealed class FoodSequenceSystem : SharedFoodSequenceSystem { - [Dependency] private readonly SharedSolutionContainerSystem _solutionContainer = default!; - [Dependency] private readonly SharedPopupSystem _popup = default!; - [Dependency] private readonly MetaDataSystem _metaData = default!; - [Dependency] private readonly MobStateSystem _mobState = default!; - [Dependency] private readonly TagSystem _tag = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly IPrototypeManager _proto = default!; + [Dependency] private readonly MetaDataSystem _metaData = default!; + [Dependency] private readonly MobStateSystem _mobState = default!; + [Dependency] private readonly IngestionSystem _ingestion = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly SharedSolutionContainerSystem _solutionContainer = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; + [Dependency] private readonly TagSystem _tag = default!; public override void Initialize() { @@ -78,13 +79,13 @@ public sealed class FoodSequenceSystem : SharedFoodSequenceSystem return true; Metamorf(start, _random.Pick(availableRecipes)); //In general, if there's more than one recipe, the yml-guys screwed up. Maybe some kind of unit test is needed. - QueueDel(start); + PredictedQueueDel(start.Owner); return true; } private void Metamorf(Entity start, MetamorphRecipePrototype recipe) { - var result = SpawnAtPosition(recipe.Result, Transform(start).Coordinates); + var result = PredictedSpawnNextToOrDrop(recipe.Result, start); //Try putting in container _transform.DropNextTo(result, (start, Transform(start))); @@ -100,21 +101,23 @@ public sealed class FoodSequenceSystem : SharedFoodSequenceSystem _solutionContainer.TryAddSolution(resultSoln.Value, startSolution); MergeFlavorProfiles(start, result); - MergeTrash(start, result); + MergeTrash(start.Owner, result); MergeTags(start, result); } - private bool TryAddFoodElement(Entity start, Entity element, EntityUid? user = null) + private bool TryAddFoodElement(Entity start, Entity element, EntityUid? user = null) { // we can't add a live mouse to a burger. - if (!TryComp(element, out var elementFood)) + if (!Resolve(element, ref element.Comp2, false)) return false; - if (elementFood.RequireDead && _mobState.IsAlive(element)) + + if (element.Comp2.RequireDead && _mobState.IsAlive(element)) return false; //looking for a suitable FoodSequence prototype - if (!element.Comp.Entries.TryGetValue(start.Comp.Key, out var elementProto)) + if (!element.Comp1.Entries.TryGetValue(start.Comp.Key, out var elementProto)) return false; + if (!_proto.TryIndex(elementProto, out var elementIndexed)) return false; @@ -150,15 +153,15 @@ public sealed class FoodSequenceSystem : SharedFoodSequenceSystem start.Comp.Finished = true; UpdateFoodName(start); - MergeFoodSolutions(start, element); + MergeFoodSolutions(start.Owner, element.Owner); MergeFlavorProfiles(start, element); - MergeTrash(start, element); + MergeTrash(start.Owner, element.Owner); MergeTags(start, element); var ev = new FoodSequenceIngredientAddedEvent(start, element, elementProto, user); RaiseLocalEvent(start, ev); - QueueDel(element); + PredictedQueueDel(element.Owner); return true; } @@ -203,18 +206,18 @@ public sealed class FoodSequenceSystem : SharedFoodSequenceSystem _metaData.SetEntityName(start, newName); } - private void MergeFoodSolutions(EntityUid start, EntityUid element) + private void MergeFoodSolutions(Entity start, Entity element) { - if (!TryComp(start, out var startFood)) + if (!Resolve(start, ref start.Comp, false)) return; - if (!TryComp(element, out var elementFood)) + if (!Resolve(element, ref element.Comp, false)) return; - if (!_solutionContainer.TryGetSolution(start, startFood.Solution, out var startSolutionEntity, out var startSolution)) + if (!_solutionContainer.TryGetSolution(start.Owner, start.Comp.Solution, out var startSolutionEntity, out var startSolution)) return; - if (!_solutionContainer.TryGetSolution(element, elementFood.Solution, out _, out var elementSolution)) + if (!_solutionContainer.TryGetSolution(element.Owner, element.Comp.Solution, out _, out var elementSolution)) return; startSolution.MaxVolume += elementSolution.MaxVolume; @@ -236,18 +239,15 @@ public sealed class FoodSequenceSystem : SharedFoodSequenceSystem } } - private void MergeTrash(EntityUid start, EntityUid element) + private void MergeTrash(Entity start, Entity element) { - if (!TryComp(start, out var startFood)) + if (!Resolve(start, ref start.Comp, false)) return; - if (!TryComp(element, out var elementFood)) + if (!Resolve(element, ref element.Comp, false)) return; - foreach (var trash in elementFood.Trash) - { - startFood.Trash.Add(trash); - } + _ingestion.AddTrash((start, start.Comp), element.Comp.Trash); } private void MergeTags(EntityUid start, EntityUid element) diff --git a/Content.Shared/Nutrition/EntitySystems/IngestionSystem.API.cs b/Content.Shared/Nutrition/EntitySystems/IngestionSystem.API.cs index 3a8ef333d7..990c8105c5 100644 --- a/Content.Shared/Nutrition/EntitySystems/IngestionSystem.API.cs +++ b/Content.Shared/Nutrition/EntitySystems/IngestionSystem.API.cs @@ -1,4 +1,5 @@ -using System.Diagnostics.CodeAnalysis; +using System.Diagnostics; +using System.Diagnostics.CodeAnalysis; using Content.Shared.Chemistry.Components; using Content.Shared.Chemistry.Components.SolutionManager; using Content.Shared.Chemistry.Reagent; @@ -140,25 +141,35 @@ public sealed partial class IngestionSystem #region EdibleComponent - public void SpawnTrash(Entity entity, EntityUid user) + public void SpawnTrash(Entity entity, EntityUid? user = null) { if (entity.Comp.Trash.Count == 0) return; var position = _transform.GetMapCoordinates(entity); var trashes = entity.Comp.Trash; - var tryPickup = _hands.IsHolding(user, entity, out _); + var pickup = user != null && _hands.IsHolding(user.Value, entity, out _); foreach (var trash in trashes) { var spawnedTrash = EntityManager.PredictedSpawn(trash, position); // If the user is holding the item - if (tryPickup) - { - // Put the trash in the user's hand - _hands.TryPickupAnyHand(user, spawnedTrash); - } + if (!pickup) + continue; + + // Put the trash in the user's hand + // I am 100% confident we don't need this check but rider gets made at me if it's not here. + if (user != null) + _hands.TryPickupAnyHand(user.Value, spawnedTrash); + } + } + + public void AddTrash(Entity entity, List newTrash) + { + foreach (var trash in newTrash) + { + entity.Comp.Trash.Add(trash); } } diff --git a/Content.Server/Nutrition/EntitySystems/MessyDrinkerSystem.cs b/Content.Shared/Nutrition/EntitySystems/MessyDrinkerSystem.cs similarity index 58% rename from Content.Server/Nutrition/EntitySystems/MessyDrinkerSystem.cs rename to Content.Shared/Nutrition/EntitySystems/MessyDrinkerSystem.cs index dc8c11bb7f..bf084e6054 100644 --- a/Content.Server/Nutrition/EntitySystems/MessyDrinkerSystem.cs +++ b/Content.Shared/Nutrition/EntitySystems/MessyDrinkerSystem.cs @@ -1,18 +1,18 @@ -using Content.Server.Fluids.EntitySystems; -using Content.Server.Nutrition.Components; -using Content.Shared.Nutrition; -using Content.Shared.Nutrition.EntitySystems; +using Content.Shared.Fluids; +using Content.Shared.Nutrition.Components; using Content.Shared.Popups; +using Content.Shared.Random.Helpers; using Robust.Shared.Random; +using Robust.Shared.Timing; -namespace Content.Server.Nutrition.EntitySystems; +namespace Content.Shared.Nutrition.EntitySystems; public sealed class MessyDrinkerSystem : EntitySystem { - [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly IngestionSystem _ingestion = default!; - [Dependency] private readonly PuddleSystem _puddle = default!; + [Dependency] private readonly SharedPuddleSystem _puddle = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly IGameTiming _timing = default!; public override void Initialize() { @@ -35,11 +35,14 @@ public sealed class MessyDrinkerSystem : EntitySystem if (ev.ForceFed) return; - if (!_random.Prob(ent.Comp.SpillChance)) + // TODO: Replace with RandomPredicted once the engine PR is merged + var seed = SharedRandomExtensions.HashCodeCombine(new() { (int)_timing.CurTick.Value, GetNetEntity(ent).Id }); + var rand = new System.Random(seed); + if (!rand.Prob(ent.Comp.SpillChance)) return; if (ent.Comp.SpillMessagePopup != null) - _popup.PopupEntity(Loc.GetString(ent.Comp.SpillMessagePopup), ent, ent, PopupType.MediumCaution); + _popup.PopupPredicted(Loc.GetString(ent.Comp.SpillMessagePopup), null, ent, ent, PopupType.MediumCaution); var split = ev.Split.SplitSolution(ent.Comp.SpillAmount); diff --git a/Content.Shared/Nutrition/EntitySystems/SharedCreamPieSystem.cs b/Content.Shared/Nutrition/EntitySystems/SharedCreamPieSystem.cs index 86eec26bfd..a0a82d63ef 100644 --- a/Content.Shared/Nutrition/EntitySystems/SharedCreamPieSystem.cs +++ b/Content.Shared/Nutrition/EntitySystems/SharedCreamPieSystem.cs @@ -20,18 +20,18 @@ namespace Content.Shared.Nutrition.EntitySystems SubscribeLocalEvent(OnCreamPiedHitBy); } - public void SplatCreamPie(EntityUid uid, CreamPieComponent creamPie) + public void SplatCreamPie(Entity creamPie) { // Already splatted! Do nothing. - if (creamPie.Splatted) + if (creamPie.Comp.Splatted) return; - creamPie.Splatted = true; + creamPie.Comp.Splatted = true; - SplattedCreamPie(uid, creamPie); + SplattedCreamPie(creamPie); } - protected virtual void SplattedCreamPie(EntityUid uid, CreamPieComponent creamPie) {} + protected virtual void SplattedCreamPie(Entity entity) { } public void SetCreamPied(EntityUid uid, CreamPiedComponent creamPied, bool value) { @@ -46,14 +46,14 @@ namespace Content.Shared.Nutrition.EntitySystems } } - private void OnCreamPieLand(EntityUid uid, CreamPieComponent component, ref LandEvent args) + private void OnCreamPieLand(Entity entity, ref LandEvent args) { - SplatCreamPie(uid, component); + SplatCreamPie(entity); } - private void OnCreamPieHit(EntityUid uid, CreamPieComponent component, ThrowDoHitEvent args) + private void OnCreamPieHit(Entity entity, ref ThrowDoHitEvent args) { - SplatCreamPie(uid, component); + SplatCreamPie(entity); } private void OnCreamPiedHitBy(EntityUid uid, CreamPiedComponent creamPied, ThrowHitByEvent args) diff --git a/Content.Shared/Payload/Components/ChemicalPayloadComponent.cs b/Content.Shared/Payload/Components/ChemicalPayloadComponent.cs index d00382ee84..3b29d78777 100644 --- a/Content.Shared/Payload/Components/ChemicalPayloadComponent.cs +++ b/Content.Shared/Payload/Components/ChemicalPayloadComponent.cs @@ -1,4 +1,5 @@ using Content.Shared.Containers.ItemSlots; +using Content.Shared.Trigger.Systems; using Robust.Shared.Serialization; namespace Content.Shared.Payload.Components; @@ -14,6 +15,12 @@ public sealed partial class ChemicalPayloadComponent : Component [DataField("beakerSlotB", required: true)] public ItemSlot BeakerSlotB = new(); + + /// + /// The keys that will activate the chemical payload. + /// + [DataField] + public List KeysIn = new() { TriggerSystem.DefaultTriggerKey }; } [Serializable, NetSerializable] diff --git a/Content.Shared/Physics/Controllers/SharedConveyorController.cs b/Content.Shared/Physics/Controllers/SharedConveyorController.cs index c2c88b2742..b1ccb3be2a 100644 --- a/Content.Shared/Physics/Controllers/SharedConveyorController.cs +++ b/Content.Shared/Physics/Controllers/SharedConveyorController.cs @@ -216,7 +216,7 @@ public abstract class SharedConveyorController : VirtualController return true; if (physics.BodyStatus == BodyStatus.InAir || - _gravity.IsWeightless(entity, physics, xform)) + _gravity.IsWeightless(entity.Owner)) { return true; } diff --git a/Content.Shared/Polymorph/PolymorphPrototype.cs b/Content.Shared/Polymorph/PolymorphPrototype.cs index 0978d7119a..26637431f0 100644 --- a/Content.Shared/Polymorph/PolymorphPrototype.cs +++ b/Content.Shared/Polymorph/PolymorphPrototype.cs @@ -105,6 +105,12 @@ public sealed partial record PolymorphConfiguration [DataField(serverOnly: true)] public bool RevertOnDeath = true; + /// + /// Whether or not the polymorph reverts when the entity is deleted. + /// + [DataField(serverOnly: true)] + public bool RevertOnDelete = true; + /// /// Whether or not the polymorph reverts when the entity is eaten or fully sliced. /// diff --git a/Content.Shared/Roles/Components/MindRoleComponent.cs b/Content.Shared/Roles/Components/MindRoleComponent.cs index 45ab808192..b85ee8f5e0 100644 --- a/Content.Shared/Roles/Components/MindRoleComponent.cs +++ b/Content.Shared/Roles/Components/MindRoleComponent.cs @@ -35,14 +35,6 @@ public sealed partial class MindRoleComponent : BaseMindRoleComponent [DataField] public bool ExclusiveAntag; - /// - /// The Mind that this role belongs to. - /// - /// - /// TODO: Make this a datafield. Also components should not store other components. - /// - public Entity Mind; - /// /// The Antagonist prototype of this role. /// diff --git a/Content.Shared/Roles/SharedRoleSystem.cs b/Content.Shared/Roles/SharedRoleSystem.cs index 3269680c32..d1afae9fd1 100644 --- a/Content.Shared/Roles/SharedRoleSystem.cs +++ b/Content.Shared/Roles/SharedRoleSystem.cs @@ -10,7 +10,6 @@ using Content.Shared.Whitelist; using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; using Robust.Shared.Configuration; -using Robust.Shared.Map; using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Serialization; @@ -35,7 +34,6 @@ public abstract class SharedRoleSystem : EntitySystem { Subs.CVar(_cfg, CCVars.GameRoleTimerOverride, SetRequirementOverride, true); - SubscribeLocalEvent(OnComponentShutdown); SubscribeLocalEvent(OnSpawn); } @@ -55,7 +53,7 @@ public abstract class SharedRoleSystem : EntitySystem return; } - if (!_prototypes.TryIndex(value, out _requirementOverride )) + if (!_prototypes.TryIndex(value, out _requirementOverride)) Log.Error($"Unknown JobRequirementOverridePrototype: {value}"); } @@ -152,22 +150,23 @@ public abstract class SharedRoleSystem : EntitySystem //If that was somehow to occur, a second mindrole for that comp would be created //Meaning any mind role checks could return wrong results, since they just return the first match they find - var mindRoleId = Spawn(protoId, MapCoordinates.Nullspace); - EnsureComp(mindRoleId); - var mindRoleComp = Comp(mindRoleId); + if (!PredictedTrySpawnInContainer(protoId, mindId, MindComponent.MindRoleContainerId, out var mindRoleId)) + { + Log.Error($"Failed to add role {protoId} to {ToPrettyString(mindId)} : Could not spawn the role entity inside the container"); + return; + } + + var mindRoleComp = EnsureComp(mindRoleId.Value); - mindRoleComp.Mind = (mindId,mind); if (jobPrototype is not null) { mindRoleComp.JobPrototype = jobPrototype; - EnsureComp(mindRoleId); + EnsureComp(mindRoleId.Value); DebugTools.AssertNull(mindRoleComp.AntagPrototype); DebugTools.Assert(!mindRoleComp.Antag); DebugTools.Assert(!mindRoleComp.ExclusiveAntag); } - mind.MindRoles.Add(mindRoleId); - var update = MindRolesUpdate((mindId, mind)); // RoleType refresh, Role time tracking, Update Admin playerlist @@ -201,13 +200,13 @@ public abstract class SharedRoleSystem : EntitySystem /// > private bool MindRolesUpdate(Entity ent) { - if(!Resolve(ent.Owner, ref ent.Comp)) + if (!Resolve(ent.Owner, ref ent.Comp)) return false; //get the most important/latest mind role var (roleType, subtype) = GetRoleTypeByTime(ent.Comp); - if (ent.Comp.RoleType == roleType && ent.Comp.Subtype == subtype) + if (ent.Comp.RoleType == roleType && ent.Comp.Subtype == subtype) return false; SetRoleType(ent.Owner, roleType, subtype); @@ -230,7 +229,7 @@ public abstract class SharedRoleSystem : EntitySystem { var roles = new List>(); - foreach (var role in mind.MindRoles) + foreach (var role in mind.MindRoleContainer.ContainedEntities) { var comp = Comp(role); if (comp.RoleType is not null) @@ -301,7 +300,7 @@ public abstract class SharedRoleSystem : EntitySystem var original = "'" + typeof(T).Name + "'"; var deleteName = original; - foreach (var role in mind.Comp.MindRoles) + foreach (var role in mind.Comp.MindRoleContainer.ContainedEntities) { if (!HasComp(role)) { @@ -351,7 +350,7 @@ public abstract class SharedRoleSystem : EntitySystem return MindRemoveRole((mindId, mind)); } - /// + /// /// Finds and removes all mind roles of a specific type /// /// The mind entity and component @@ -359,14 +358,14 @@ public abstract class SharedRoleSystem : EntitySystem /// True if the role existed and was removed public bool MindRemoveRole(Entity mind, EntProtoId protoId) { - if ( !Resolve(mind.Owner, ref mind.Comp)) + if (!Resolve(mind.Owner, ref mind.Comp)) return false; // If there were no matches and thus no mind role entity names, we'll need the protoId, to report what role failed to be removed var original = "'" + protoId + "'"; var deleteName = original; var delete = new List(); - foreach (var role in mind.Comp.MindRoles) + foreach (var role in mind.Comp.MindRoleContainer.ContainedEntities) { if (!HasComp(role)) { @@ -390,7 +389,7 @@ public abstract class SharedRoleSystem : EntitySystem /// private bool MindRemoveRoleDo(Entity mind, List delete, string? logName = "") { - if ( !Resolve(mind.Owner, ref mind.Comp)) + if (!Resolve(mind.Owner, ref mind.Comp)) return false; if (delete.Count <= 0) @@ -416,17 +415,6 @@ public abstract class SharedRoleSystem : EntitySystem return true; } - // Removing the mind role's reference on component shutdown - // to make sure the reference gets removed even if the mind role entity was deleted by outside code - private void OnComponentShutdown(Entity ent, ref ComponentShutdown args) - { - //TODO: Just ensure that the tests don't spawn unassociated mind role entities - if (ent.Comp.Mind.Comp is null) - return; - - ent.Comp.Mind.Comp.MindRoles.Remove(ent.Owner); - } - /// /// Finds the first mind role of a specific T type on a mind entity. /// Outputs entity components for the mind role's MindRoleComponent and for T @@ -442,7 +430,7 @@ public abstract class SharedRoleSystem : EntitySystem if (!Resolve(mind.Owner, ref mind.Comp)) return false; - foreach (var roleEnt in mind.Comp.MindRoles) + foreach (var roleEnt in mind.Comp.MindRoleContainer.ContainedEntities) { if (!TryComp(roleEnt, out T? tcomp)) continue; @@ -487,7 +475,7 @@ public abstract class SharedRoleSystem : EntitySystem var found = false; - foreach (var roleEnt in mind.MindRoles) + foreach (var roleEnt in mind.MindRoleContainer.ContainedEntities) { if (!HasComp(roleEnt, type)) continue; @@ -511,7 +499,7 @@ public abstract class SharedRoleSystem : EntitySystem /// public bool MindHasRole(Entity mind, EntityWhitelist whitelist) { - foreach (var roleEnt in mind.Comp.MindRoles) + foreach (var roleEnt in mind.Comp.MindRoleContainer.ContainedEntities) { if (_whitelist.IsWhitelistPass(whitelist, roleEnt)) return true; @@ -544,10 +532,10 @@ public abstract class SharedRoleSystem : EntitySystem var mind = Comp(mindId); - foreach (var uid in mind.MindRoles) + foreach (var uid in mind.MindRoleContainer.ContainedEntities) { if (HasComp(uid) && TryComp(uid, out var comp)) - result = (uid,comp); + result = (uid, comp); } return result; } @@ -564,7 +552,7 @@ public abstract class SharedRoleSystem : EntitySystem if (!Resolve(mind.Owner, ref mind.Comp)) return roleInfo; - foreach (var role in mind.Comp.MindRoles) + foreach (var role in mind.Comp.MindRoleContainer.ContainedEntities) { var valid = false; var name = "game-ticker-unknown-role"; @@ -644,14 +632,14 @@ public abstract class SharedRoleSystem : EntitySystem return CheckAntagonistStatus(mindId.Value).ExclusiveAntag; } - private (bool Antag, bool ExclusiveAntag) CheckAntagonistStatus(Entity mind) - { - if (!Resolve(mind.Owner, ref mind.Comp)) - return (false, false); + private (bool Antag, bool ExclusiveAntag) CheckAntagonistStatus(Entity mind) + { + if (!Resolve(mind.Owner, ref mind.Comp)) + return (false, false); var antagonist = false; var exclusiveAntag = false; - foreach (var role in mind.Comp.MindRoles) + foreach (var role in mind.Comp.MindRoleContainer.ContainedEntities) { if (!TryComp(role, out var roleComp)) { diff --git a/Content.Shared/Rootable/SharedRootableSystem.cs b/Content.Shared/Rootable/SharedRootableSystem.cs index 9165c3c111..d646c7d97c 100644 --- a/Content.Shared/Rootable/SharedRootableSystem.cs +++ b/Content.Shared/Rootable/SharedRootableSystem.cs @@ -104,6 +104,7 @@ public abstract class SharedRootableSystem : EntitySystem entity.Comp.Rooted = !entity.Comp.Rooted; _movementSpeedModifier.RefreshMovementSpeedModifiers(entity); + _gravity.RefreshWeightless(entity.Owner); Dirty(entity); if (entity.Comp.Rooted) @@ -119,7 +120,6 @@ public abstract class SharedRootableSystem : EntitySystem { _alerts.ClearAlert(entity, entity.Comp.RootedAlert); } - _audio.PlayPredicted(entity.Comp.RootSound, entity.Owner.ToCoordinates(), entity); return true; diff --git a/Content.Shared/SelectableComponentAdder/SelectableComponentAdderComponent.cs b/Content.Shared/SelectableComponentAdder/SelectableComponentAdderComponent.cs new file mode 100644 index 0000000000..5b7ccffafb --- /dev/null +++ b/Content.Shared/SelectableComponentAdder/SelectableComponentAdderComponent.cs @@ -0,0 +1,77 @@ +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; + +namespace Content.Shared.SelectableComponentAdder; + +/// +/// Brings up a verb menu that allows players to select components that will get added to the item with this component. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class SelectableComponentAdderComponent : Component +{ + /// + /// List of verb -> components to add for that verb when selected basically! + /// + [DataField(required: true)] + public List Entries = new(); + + /// + /// The amount of times players can make a selection and add a component. If null, there is no limit. + /// + [DataField, AutoNetworkedField] + public int? Selections; + + /// + /// The verb category name that will be used. + /// + [DataField, AutoNetworkedField] + public LocId VerbCategoryName = "selectable-component-adder-category-name"; +} + +[DataDefinition] +public sealed partial class ComponentAdderEntry +{ + /// + /// Name of the verb that will add the components in . + /// + [DataField(required: true)] + public LocId VerbName; + + /// + /// Popup to show when this option is selected. + /// + [DataField(required: true)] + public LocId? Popup; + + /// + /// List of all the components that will get added when the verb is selected. + /// + [DataField(required: true)] + public ComponentRegistry? ComponentsToAdd; + + /// + /// The type of behavior that occurs when the component(s) already exist on the entity. + /// + [DataField] + public ComponentExistsSetting ComponentExistsBehavior = ComponentExistsSetting.Skip; + + /// + /// The priorty of the verb in the list + /// + [DataField] + public int Priority; +} + +[Serializable, NetSerializable] +public enum ComponentExistsSetting : byte +{ + // If one of the components exist, skip adding it and continue adding the rest. + // If all components already exist, disable the verb. + Skip = 0, + // If a component already exists, replace it with the new one. + // The verb is always enabled. + Replace = 1, + // Disable the verb if any one of the components already exists. + Block = 2, +} diff --git a/Content.Shared/SelectableComponentAdder/SelectableComponentAdderSystem.cs b/Content.Shared/SelectableComponentAdder/SelectableComponentAdderSystem.cs new file mode 100644 index 0000000000..29619904d7 --- /dev/null +++ b/Content.Shared/SelectableComponentAdder/SelectableComponentAdderSystem.cs @@ -0,0 +1,95 @@ +using Content.Shared.Popups; +using Content.Shared.Verbs; +using Robust.Shared.Prototypes; + +namespace Content.Shared.SelectableComponentAdder; + +public sealed partial class SelectableComponentAdderSystem : EntitySystem +{ + [Dependency] private readonly SharedPopupSystem _popup = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent>(OnGetVerb); + } + + private void OnGetVerb(Entity ent, ref GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract || ent.Comp.Selections <= 0) + return; + + var target = args.Target; + var user = args.User; + var verbCategory = new VerbCategory(ent.Comp.VerbCategoryName, null); + + foreach (var entry in ent.Comp.Entries) + { + var verb = new Verb + { + Priority = entry.Priority, + Category = verbCategory, + Disabled = CheckDisabled(target, entry.ComponentsToAdd, entry.ComponentExistsBehavior), + Act = () => + { + AddComponents(target, entry.ComponentsToAdd, entry.ComponentExistsBehavior); + ent.Comp.Selections--; + Dirty(ent); + if (entry.Popup == null) + return; + var message = Loc.GetString(entry.Popup.Value, ("target", target)); + _popup.PopupClient(message, target, user); + }, + Text = Loc.GetString(entry.VerbName), + }; + args.Verbs.Add(verb); + } + } + + private bool CheckDisabled(EntityUid target, ComponentRegistry? registry, ComponentExistsSetting setting) + { + if (registry == null) + return false; + + switch (setting) + { + case ComponentExistsSetting.Skip: + // disable the verb if all components already exist + foreach (var component in registry) + { + if (!EntityManager.HasComponent(target, Factory.GetComponent(component.Key).GetType())) + return false; + } + return true; + case ComponentExistsSetting.Replace: + // always allow the verb + return false; + case ComponentExistsSetting.Block: + // disable the verb if any component already exists. + foreach (var component in registry) + { + if (EntityManager.HasComponent(target, Factory.GetComponent(component.Key).GetType())) + return true; + } + return false; + default: + throw new NotImplementedException(); + } + } + + private void AddComponents(EntityUid target, ComponentRegistry? registry, ComponentExistsSetting setting) + { + if (registry == null || CheckDisabled(target, registry, setting)) + return; + + foreach (var component in registry) + { + if (EntityManager.HasComponent(target, Factory.GetComponent(component.Key).GetType()) && + setting is ComponentExistsSetting.Skip or ComponentExistsSetting.Block) + continue; + + EntityManager.AddComponent(target, component.Value, true); + } + } +} diff --git a/Content.Shared/SmartFridge/SmartFridgeSystem.cs b/Content.Shared/SmartFridge/SmartFridgeSystem.cs index 1341f6cd03..659689cd8a 100644 --- a/Content.Shared/SmartFridge/SmartFridgeSystem.cs +++ b/Content.Shared/SmartFridge/SmartFridgeSystem.cs @@ -1,15 +1,16 @@ -using Content.Shared.Access.Components; using Content.Shared.Access.Systems; +using Content.Shared.Construction.EntitySystems; using Content.Shared.Hands.EntitySystems; using Content.Shared.IdentityManagement; using Content.Shared.Interaction; using Content.Shared.Popups; using Content.Shared.Storage.Components; +using Content.Shared.Verbs; using Content.Shared.Whitelist; using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; -using Robust.Shared.GameObjects; using Robust.Shared.Timing; +using Robust.Shared.Utility; namespace Content.Shared.SmartFridge; @@ -27,9 +28,10 @@ public sealed class SmartFridgeSystem : EntitySystem { base.Initialize(); - SubscribeLocalEvent(OnInteractUsing); + SubscribeLocalEvent(OnInteractUsing, after: [typeof(AnchorableSystem)]); SubscribeLocalEvent(OnItemRemoved); + SubscribeLocalEvent>(OnGetAltVerb); SubscribeLocalEvent(OnGetDumpableVerb); SubscribeLocalEvent(OnDump); @@ -78,7 +80,7 @@ public sealed class SmartFridgeSystem : EntitySystem private void OnInteractUsing(Entity ent, ref InteractUsingEvent args) { - if (!_hands.CanDrop(args.User, args.Used)) + if (args.Handled || !_hands.CanDrop(args.User, args.Used)) return; args.Handled = DoInsert(ent, args.User, [args.Used], true); @@ -136,6 +138,24 @@ public sealed class SmartFridgeSystem : EntitySystem _popup.PopupPredicted(Loc.GetString("smart-fridge-component-try-eject-out-of-stock"), ent, args.Actor); } + private void OnGetAltVerb(Entity ent, ref GetVerbsEvent args) + { + var user = args.User; + + if (!args.CanInteract + || args.Using is not { } item + || !_hands.CanDrop(user, item) + || !_whitelist.CheckBoth(item, ent.Comp.Blacklist, ent.Comp.Whitelist)) + return; + + args.Verbs.Add(new AlternativeVerb + { + Act = () => DoInsert(ent, user, [item], true), + Text = Loc.GetString("verb-categories-insert"), + Icon = new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/VerbIcons/insert.svg.192dpi.png")), + }); + } + private void OnGetDumpableVerb(Entity ent, ref GetDumpableVerbEvent args) { if (_accessReader.IsAllowed(args.User, ent)) diff --git a/Content.Shared/Sound/Components/EmitSoundOnThrowComponent.cs b/Content.Shared/Sound/Components/EmitSoundOnThrowComponent.cs index 76e9f08076..0498642c00 100644 --- a/Content.Shared/Sound/Components/EmitSoundOnThrowComponent.cs +++ b/Content.Shared/Sound/Components/EmitSoundOnThrowComponent.cs @@ -3,7 +3,7 @@ using Robust.Shared.GameStates; namespace Content.Shared.Sound.Components; /// -/// Simple sound emitter that emits sound on ThrowEvent +/// Simple sound emitter that emits sound on ThrownEvent /// [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class EmitSoundOnThrowComponent : BaseEmitSoundComponent; diff --git a/Content.Shared/Speech/EntitySystems/SharedSlurredSystem.cs b/Content.Shared/Speech/EntitySystems/SharedSlurredSystem.cs index 8718e054ba..aadda6aa09 100644 --- a/Content.Shared/Speech/EntitySystems/SharedSlurredSystem.cs +++ b/Content.Shared/Speech/EntitySystems/SharedSlurredSystem.cs @@ -1,8 +1,11 @@ using Content.Shared.StatusEffect; +using Robust.Shared.Prototypes; namespace Content.Shared.Speech.EntitySystems; public abstract class SharedSlurredSystem : EntitySystem { + public static readonly EntProtoId Stutter = "StatusEffectSlurred"; + public virtual void DoSlur(EntityUid uid, TimeSpan time, StatusEffectsComponent? status = null) { } } diff --git a/Content.Shared/Speech/EntitySystems/SharedStutteringSystem.cs b/Content.Shared/Speech/EntitySystems/SharedStutteringSystem.cs index 05358a04bb..90cd8bc4de 100644 --- a/Content.Shared/Speech/EntitySystems/SharedStutteringSystem.cs +++ b/Content.Shared/Speech/EntitySystems/SharedStutteringSystem.cs @@ -1,26 +1,24 @@ -using Content.Shared.StatusEffect; +using Content.Shared.StatusEffectNew; using Robust.Shared.Prototypes; namespace Content.Shared.Speech.EntitySystems; public abstract class SharedStutteringSystem : EntitySystem { - public static readonly ProtoId StutterKey = "Stutter"; + public static readonly EntProtoId Stuttering = "StatusEffectStutter"; - [Dependency] private readonly StatusEffectsSystem _statusEffectsSystem = default!; + [Dependency] protected readonly StatusEffectsSystem Status = default!; // For code in shared... I imagine we ain't getting accent prediction anytime soon so let's not bother. - public virtual void DoStutter(EntityUid uid, TimeSpan time, bool refresh, StatusEffectsComponent? status = null) + public virtual void DoStutter(EntityUid uid, TimeSpan time, bool refresh) { } - public virtual void DoRemoveStutterTime(EntityUid uid, double timeRemoved) + public virtual void DoRemoveStutterTime(EntityUid uid, TimeSpan timeRemoved) { - _statusEffectsSystem.TryRemoveTime(uid, StutterKey, TimeSpan.FromSeconds(timeRemoved)); } - public void DoRemoveStutter(EntityUid uid, double timeRemoved) + public virtual void DoRemoveStutter(EntityUid uid) { - _statusEffectsSystem.TryRemoveStatusEffect(uid, StutterKey); } } diff --git a/Content.Shared/Stacks/SharedStackSystem.cs b/Content.Shared/Stacks/SharedStackSystem.cs index 60b93a8da8..b3de1870fe 100644 --- a/Content.Shared/Stacks/SharedStackSystem.cs +++ b/Content.Shared/Stacks/SharedStackSystem.cs @@ -6,6 +6,7 @@ using Content.Shared.Interaction; using Content.Shared.Nutrition; using Content.Shared.Popups; using Content.Shared.Storage.EntitySystems; +using Content.Shared.Verbs; using JetBrains.Annotations; using Robust.Shared.GameStates; using Robust.Shared.Physics.Systems; @@ -29,6 +30,8 @@ namespace Content.Shared.Stacks [Dependency] protected readonly SharedPopupSystem Popup = default!; [Dependency] private readonly SharedStorageSystem _storage = default!; + public static readonly int[] DefaultSplitAmounts = { 1, 5, 10, 20, 30, 50 }; + public override void Initialize() { base.Initialize(); @@ -40,6 +43,7 @@ namespace Content.Shared.Stacks SubscribeLocalEvent(OnStackInteractUsing); SubscribeLocalEvent(OnBeforeEaten); SubscribeLocalEvent(OnEaten); + SubscribeLocalEvent>(OnStackAlternativeInteract); _vvm.GetTypeHandler() .AddPath(nameof(StackComponent.Count), (_, comp) => comp.Count, SetCount); @@ -432,6 +436,55 @@ namespace Content.Shared.Stacks // Here to tell the food system to do destroy stuff. args.Destroy = true; } + + private void OnStackAlternativeInteract(EntityUid uid, StackComponent stack, GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract || args.Hands == null || stack.Count == 1) + return; + + AlternativeVerb halve = new() + { + Text = Loc.GetString("comp-stack-split-halve"), + Category = VerbCategory.Split, + Act = () => UserSplit(uid, args.User, stack.Count / 2, stack), + Priority = 1 + }; + args.Verbs.Add(halve); + + var priority = 0; + foreach (var amount in DefaultSplitAmounts) + { + if (amount >= stack.Count) + continue; + + AlternativeVerb verb = new() + { + Text = amount.ToString(), + Category = VerbCategory.Split, + Act = () => UserSplit(uid, args.User, amount, stack), + // we want to sort by size, not alphabetically by the verb text. + Priority = priority + }; + + priority--; + + args.Verbs.Add(verb); + } + } + + /// + /// OnStackAlternativeInteract() was moved to shared in order to faciliate prediction of stack splitting verbs. + /// However, prediction of interacitons with spawned entities is non-functional (or so i'm told) + /// So, UserSplit() and Split() should remain on the server for the time being. + /// This empty virtual method allows for UserSplit() to be called on the server from the client. + /// When prediction is improved, those two methods should be moved to shared, in order to predict the splitting itself (not just the verbs) + /// + protected virtual void UserSplit(EntityUid uid, EntityUid userUid, int amount, + StackComponent? stack = null, + TransformComponent? userTransform = null) + { + + } } /// diff --git a/Content.Shared/Standing/StandingStateSystem.cs b/Content.Shared/Standing/StandingStateSystem.cs index 7f3b8c9aac..e7bd9e5f58 100644 --- a/Content.Shared/Standing/StandingStateSystem.cs +++ b/Content.Shared/Standing/StandingStateSystem.cs @@ -1,5 +1,6 @@ using Content.Shared.Climbing.Events; using Content.Shared.Hands.Components; +using Content.Shared.Inventory; using Content.Shared.Movement.Events; using Content.Shared.Movement.Systems; using Content.Shared.Physics; @@ -69,12 +70,17 @@ public sealed class StandingStateSystem : EntitySystem ChangeLayers(entity); } - public bool IsDown(EntityUid uid, StandingStateComponent? standingState = null) + public bool IsMatchingState(Entity entity, bool standing) { - if (!Resolve(uid, ref standingState, false)) + return standing != IsDown(entity); + } + + public bool IsDown(Entity entity) + { + if (!Resolve(entity, ref entity.Comp, false)) return false; - return !standingState.Standing; + return !entity.Comp.Standing; } public bool Down(EntityUid uid, @@ -213,48 +219,32 @@ public record struct DropHandItemsEvent(); /// /// Subscribe if you can potentially block a down attempt. /// -public sealed class DownAttemptEvent : CancellableEntityEventArgs -{ -} +public sealed class DownAttemptEvent : CancellableEntityEventArgs; /// /// Subscribe if you can potentially block a stand attempt. /// -public sealed class StandAttemptEvent : CancellableEntityEventArgs -{ -} +public sealed class StandAttemptEvent : CancellableEntityEventArgs; /// /// Raised when an entity becomes standing /// -public sealed class StoodEvent : EntityEventArgs +public sealed class StoodEvent : EntityEventArgs, IInventoryRelayEvent { -} + public SlotFlags TargetSlots { get; } = SlotFlags.FEET; +}; /// /// Raised when an entity is not standing /// -public sealed class DownedEvent : EntityEventArgs +public sealed class DownedEvent : EntityEventArgs, IInventoryRelayEvent { + public SlotFlags TargetSlots { get; } = SlotFlags.FEET; } /// -/// Raised after an entity falls down. -/// -public sealed class FellDownEvent : EntityEventArgs -{ - public EntityUid Uid { get; } - - public FellDownEvent(EntityUid uid) - { - Uid = uid; - } -} - -/// -/// Raised on the entity being thrown due to the holder falling down. +/// Raised on an inhand entity being held by an entity who is dropping items as part of an attempted state change to down. +/// If cancelled the inhand entity will not be dropped. /// [ByRefEvent] public record struct FellDownThrowAttemptEvent(EntityUid Thrower, bool Cancelled = false); - - diff --git a/Content.Shared/StatusEffectNew/Components/StatusEffectComponent.cs b/Content.Shared/StatusEffectNew/Components/StatusEffectComponent.cs index 25f40718e9..67ff8b3e61 100644 --- a/Content.Shared/StatusEffectNew/Components/StatusEffectComponent.cs +++ b/Content.Shared/StatusEffectNew/Components/StatusEffectComponent.cs @@ -1,4 +1,3 @@ -using Content.Shared.Alert; using Content.Shared.Whitelist; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; diff --git a/Content.Shared/StatusEffectNew/StatusEffectSystem.Relay.cs b/Content.Shared/StatusEffectNew/StatusEffectSystem.Relay.cs index f7fd771a54..1f977c141e 100644 --- a/Content.Shared/StatusEffectNew/StatusEffectSystem.Relay.cs +++ b/Content.Shared/StatusEffectNew/StatusEffectSystem.Relay.cs @@ -3,6 +3,7 @@ using Content.Shared.Movement.Systems; using Content.Shared.Rejuvenate; using Content.Shared.Damage; using Content.Shared.Damage.Events; +using Content.Shared.Speech; using Content.Shared.StatusEffectNew.Components; using Content.Shared.Stunnable; using Robust.Shared.Player; @@ -29,6 +30,8 @@ public sealed partial class StatusEffectsSystem SubscribeLocalEvent(RefRelayStatusEffectEvent); SubscribeLocalEvent(RefRelayStatusEffectEvent); + + SubscribeLocalEvent(RelayStatusEffectEvent); } private void RefRelayStatusEffectEvent(EntityUid uid, StatusEffectContainerComponent component, ref T args) where T : struct diff --git a/Content.Shared/StepTrigger/Systems/StepTriggerSystem.cs b/Content.Shared/StepTrigger/Systems/StepTriggerSystem.cs index 14703f3177..d1443e5da2 100644 --- a/Content.Shared/StepTrigger/Systems/StepTriggerSystem.cs +++ b/Content.Shared/StepTrigger/Systems/StepTriggerSystem.cs @@ -139,7 +139,7 @@ public sealed class StepTriggerSystem : EntitySystem // and the entity is flying or currently weightless // Makes sense simulation wise to have this be part of steptrigger directly IMO if (!component.IgnoreWeightless && TryComp(otherUid, out var physics) && - (physics.BodyStatus == BodyStatus.InAir || _gravity.IsWeightless(otherUid, physics))) + (physics.BodyStatus == BodyStatus.InAir || _gravity.IsWeightless(otherUid))) return false; var msg = new StepTriggerAttemptEvent { Source = uid, Tripper = otherUid }; diff --git a/Content.Shared/Storage/Components/SharedEntityStorageComponent.cs b/Content.Shared/Storage/Components/EntityStorageComponent.cs similarity index 85% rename from Content.Shared/Storage/Components/SharedEntityStorageComponent.cs rename to Content.Shared/Storage/Components/EntityStorageComponent.cs index 614a9314c7..436d131680 100644 --- a/Content.Shared/Storage/Components/SharedEntityStorageComponent.cs +++ b/Content.Shared/Storage/Components/EntityStorageComponent.cs @@ -1,4 +1,5 @@ using System.Numerics; +using Content.Shared.Atmos; using Content.Shared.Physics; using Content.Shared.Whitelist; using Robust.Shared.Audio; @@ -8,8 +9,8 @@ using Robust.Shared.Serialization; namespace Content.Shared.Storage.Components; -[NetworkedComponent] -public abstract partial class SharedEntityStorageComponent : Component +[RegisterComponent, NetworkedComponent] +public sealed partial class EntityStorageComponent : Component, IGasMixtureHolder { public readonly float MaxSize = 1.0f; // maximum width or height of an entity allowed inside the storage. @@ -19,7 +20,7 @@ public abstract partial class SharedEntityStorageComponent : Component /// /// Collision masks that get removed when the storage gets opened. /// - public readonly int MasksToRemove = (int) ( + public readonly int MasksToRemove = (int)( CollisionGroup.MidImpassable | CollisionGroup.HighImpassable | CollisionGroup.LowImpassable); @@ -33,13 +34,13 @@ public abstract partial class SharedEntityStorageComponent : Component /// /// The total amount of items that can fit in one entitystorage /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public int Capacity = 30; /// /// Whether or not the entity still has collision when open /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public bool IsCollidableWhenOpen; /// @@ -47,45 +48,45 @@ public abstract partial class SharedEntityStorageComponent : Component /// If false, it prevents the storage from opening when the entity inside of it moves. /// This is for objects that you want the player to move while inside, like large cardboard boxes, without opening the storage. /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public bool OpenOnMove = true; //The offset for where items are emptied/vacuumed for the EntityStorage. - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public Vector2 EnteringOffset = new(0, 0); //The collision groups checked, so that items are depositied or grabbed from inside walls. - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public CollisionGroup EnteringOffsetCollisionFlags = CollisionGroup.Impassable | CollisionGroup.MidImpassable; /// /// How close you have to be to the "entering" spot to be able to enter /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public float EnteringRange = 0.18f; /// /// Whether or not to show the contents when the storage is closed /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public bool ShowContents; /// /// Whether or not light is occluded by the storage /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public bool OccludesLight = true; /// /// Whether or not all the contents stored should be deleted with the entitystorage /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public bool DeleteContentsOnDestruction; /// /// Whether or not the container is sealed and traps air inside of it /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public bool Airtight = false; //CP14 false - bandaid fix: dont work with MapAtmosphere /// @@ -118,6 +119,13 @@ public abstract partial class SharedEntityStorageComponent : Component /// [ViewVariables] public Container Contents = default!; + + /// + /// Gas currently contained in this entity storage. + /// None while open. Grabs gas from the atmosphere when closed, and exposes any entities inside to it. + /// + [DataField] + public GasMixture Air { get; set; } = new(200); } [Serializable, NetSerializable] @@ -158,6 +166,13 @@ public record struct InsertIntoEntityStorageAttemptEvent(EntityUid ItemToInsert, [ByRefEvent] public record struct EntityStorageInsertedIntoAttemptEvent(EntityUid ItemToInsert, bool Cancelled = false); +/// +/// Raised on the Container's owner whenever an entity storage tries to dump its +/// contents while within a container. +/// +[ByRefEvent] +public record struct EntityStorageIntoContainerAttemptEvent(BaseContainer Container, bool Cancelled = false); + [ByRefEvent] public record struct StorageOpenAttemptEvent(EntityUid User, bool Silent, bool Cancelled = false); diff --git a/Content.Shared/Storage/EntitySystems/SecretStashSystem.cs b/Content.Shared/Storage/EntitySystems/SecretStashSystem.cs index 3691f6e2b6..7e83b50fba 100644 --- a/Content.Shared/Storage/EntitySystems/SecretStashSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SecretStashSystem.cs @@ -8,7 +8,6 @@ using Content.Shared.Interaction; using Content.Shared.Item; using Content.Shared.Materials; using Content.Shared.Nutrition; -using Content.Shared.Nutrition.EntitySystems; using Content.Shared.Popups; using Content.Shared.Storage.Components; using Content.Shared.Tools.EntitySystems; @@ -26,7 +25,6 @@ namespace Content.Shared.Storage.EntitySystems; /// public sealed class SecretStashSystem : EntitySystem { - [Dependency] private readonly IngestionSystem _ingestion = default!; [Dependency] private readonly SharedPopupSystem _popupSystem = default!; [Dependency] private readonly SharedHandsSystem _handsSystem = default!; [Dependency] private readonly SharedContainerSystem _containerSystem = default!; diff --git a/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs index fd7cb87b2a..066cd2d886 100644 --- a/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs @@ -48,12 +48,12 @@ public abstract class SharedEntityStorageSystem : EntitySystem public const string ContainerName = "entity_storage"; - protected void OnEntityUnpausedEvent(EntityUid uid, SharedEntityStorageComponent component, EntityUnpausedEvent args) + protected void OnEntityUnpausedEvent(EntityUid uid, EntityStorageComponent component, EntityUnpausedEvent args) { component.NextInternalOpenAttempt += args.PausedTime; } - protected void OnGetState(EntityUid uid, SharedEntityStorageComponent component, ref ComponentGetState args) + protected void OnGetState(EntityUid uid, EntityStorageComponent component, ref ComponentGetState args) { args.State = new EntityStorageComponentState(component.Open, component.Capacity, @@ -63,7 +63,7 @@ public abstract class SharedEntityStorageSystem : EntitySystem component.NextInternalOpenAttempt); } - protected void OnHandleState(EntityUid uid, SharedEntityStorageComponent component, ref ComponentHandleState args) + protected void OnHandleState(EntityUid uid, EntityStorageComponent component, ref ComponentHandleState args) { if (args.Current is not EntityStorageComponentState state) return; @@ -75,19 +75,19 @@ public abstract class SharedEntityStorageSystem : EntitySystem component.NextInternalOpenAttempt = state.NextInternalOpenAttempt; } - protected virtual void OnComponentInit(EntityUid uid, SharedEntityStorageComponent component, ComponentInit args) + protected virtual void OnComponentInit(EntityUid uid, EntityStorageComponent component, ComponentInit args) { component.Contents = _container.EnsureContainer(uid, ContainerName); component.Contents.ShowContents = component.ShowContents; component.Contents.OccludesLight = component.OccludesLight; } - protected virtual void OnComponentStartup(EntityUid uid, SharedEntityStorageComponent component, ComponentStartup args) + protected virtual void OnComponentStartup(EntityUid uid, EntityStorageComponent component, ComponentStartup args) { _appearance.SetData(uid, StorageVisuals.Open, component.Open); } - protected void OnInteract(EntityUid uid, SharedEntityStorageComponent component, ActivateInWorldEvent args) + protected void OnInteract(EntityUid uid, EntityStorageComponent component, ActivateInWorldEvent args) { if (args.Handled || !args.Complex) return; @@ -96,9 +96,9 @@ public abstract class SharedEntityStorageSystem : EntitySystem ToggleOpen(args.User, uid, component); } - public abstract bool ResolveStorage(EntityUid uid, [NotNullWhen(true)] ref SharedEntityStorageComponent? component); + public abstract bool ResolveStorage(EntityUid uid, [NotNullWhen(true)] ref EntityStorageComponent? component); - protected void OnLockToggleAttempt(EntityUid uid, SharedEntityStorageComponent target, ref LockToggleAttemptEvent args) + protected void OnLockToggleAttempt(EntityUid uid, EntityStorageComponent target, ref LockToggleAttemptEvent args) { // Cannot (un)lock open lockers. if (target.Open) @@ -109,7 +109,7 @@ public abstract class SharedEntityStorageSystem : EntitySystem args.Cancelled = true; } - protected void OnDestruction(EntityUid uid, SharedEntityStorageComponent component, DestructionEventArgs args) + protected void OnDestruction(EntityUid uid, EntityStorageComponent component, DestructionEventArgs args) { component.Open = true; Dirty(uid, component); @@ -125,7 +125,7 @@ public abstract class SharedEntityStorageSystem : EntitySystem } } - protected void OnRelayMovement(EntityUid uid, SharedEntityStorageComponent component, ref ContainerRelayMovementEntityEvent args) + protected void OnRelayMovement(EntityUid uid, EntityStorageComponent component, ref ContainerRelayMovementEntityEvent args) { if (!HasComp(args.Entity)) return; @@ -136,21 +136,21 @@ public abstract class SharedEntityStorageSystem : EntitySystem if (_timing.CurTime < component.NextInternalOpenAttempt) return; - component.NextInternalOpenAttempt = _timing.CurTime + SharedEntityStorageComponent.InternalOpenAttemptDelay; + component.NextInternalOpenAttempt = _timing.CurTime + EntityStorageComponent.InternalOpenAttemptDelay; Dirty(uid, component); if (component.OpenOnMove) TryOpenStorage(args.Entity, uid); } - protected void OnFoldAttempt(EntityUid uid, SharedEntityStorageComponent component, ref FoldAttemptEvent args) + protected void OnFoldAttempt(EntityUid uid, EntityStorageComponent component, ref FoldAttemptEvent args) { if (args.Cancelled) return; args.Cancelled = component.Open || component.Contents.ContainedEntities.Count != 0; } - protected void AddToggleOpenVerb(EntityUid uid, SharedEntityStorageComponent component, GetVerbsEvent args) + protected void AddToggleOpenVerb(EntityUid uid, EntityStorageComponent component, GetVerbsEvent args) { if (!args.CanAccess || !args.CanInteract) return; @@ -175,7 +175,7 @@ public abstract class SharedEntityStorageSystem : EntitySystem } - public void ToggleOpen(EntityUid user, EntityUid target, SharedEntityStorageComponent? component = null) + public void ToggleOpen(EntityUid user, EntityUid target, EntityStorageComponent? component = null) { if (!ResolveStorage(target, ref component)) return; @@ -190,7 +190,7 @@ public abstract class SharedEntityStorageSystem : EntitySystem } } - public void EmptyContents(EntityUid uid, SharedEntityStorageComponent? component = null) + public void EmptyContents(EntityUid uid, EntityStorageComponent? component = null) { if (!ResolveStorage(uid, ref component)) return; @@ -203,7 +203,7 @@ public abstract class SharedEntityStorageSystem : EntitySystem } } - public void OpenStorage(EntityUid uid, SharedEntityStorageComponent? component = null) + public void OpenStorage(EntityUid uid, EntityStorageComponent? component = null) { if (!ResolveStorage(uid, ref component)) return; @@ -224,7 +224,7 @@ public abstract class SharedEntityStorageSystem : EntitySystem RaiseLocalEvent(uid, ref afterev); } - public void CloseStorage(EntityUid uid, SharedEntityStorageComponent? component = null) + public void CloseStorage(EntityUid uid, EntityStorageComponent? component = null) { if (!ResolveStorage(uid, ref component)) return; @@ -275,7 +275,7 @@ public abstract class SharedEntityStorageSystem : EntitySystem RaiseLocalEvent(uid, ref afterev); } - public bool Insert(EntityUid toInsert, EntityUid container, SharedEntityStorageComponent? component = null) + public bool Insert(EntityUid toInsert, EntityUid container, EntityStorageComponent? component = null) { if (!ResolveStorage(container, ref component)) return false; @@ -295,7 +295,7 @@ public abstract class SharedEntityStorageSystem : EntitySystem return true; } - public bool Remove(EntityUid toRemove, EntityUid container, SharedEntityStorageComponent? component = null, TransformComponent? xform = null) + public bool Remove(EntityUid toRemove, EntityUid container, EntityStorageComponent? component = null, TransformComponent? xform = null) { if (!Resolve(container, ref xform, false)) return false; @@ -305,10 +305,13 @@ public abstract class SharedEntityStorageSystem : EntitySystem _container.Remove(toRemove, component.Contents); - if (_container.IsEntityInContainer(container)) + if (_container.IsEntityInContainer(container) + && _container.TryGetOuterContainer(container, Transform(container), out var outerContainer)) { - if (_container.TryGetOuterContainer(container, Transform(container), out var outerContainer) && - !HasComp(outerContainer.Owner)) + + var attemptEvent = new EntityStorageIntoContainerAttemptEvent(outerContainer); + RaiseLocalEvent(outerContainer.Owner, ref attemptEvent); + if (!attemptEvent.Cancelled) { _container.Insert(toRemove, outerContainer); return true; @@ -322,7 +325,7 @@ public abstract class SharedEntityStorageSystem : EntitySystem return true; } - public bool CanInsert(EntityUid toInsert, EntityUid container, SharedEntityStorageComponent? component = null) + public bool CanInsert(EntityUid toInsert, EntityUid container, EntityStorageComponent? component = null) { if (!ResolveStorage(container, ref component)) return false; @@ -379,7 +382,7 @@ public abstract class SharedEntityStorageSystem : EntitySystem return true; } - public bool IsOpen(EntityUid target, SharedEntityStorageComponent? component = null) + public bool IsOpen(EntityUid target, EntityStorageComponent? component = null) { if (!ResolveStorage(target, ref component)) return false; @@ -387,7 +390,7 @@ public abstract class SharedEntityStorageSystem : EntitySystem return component.Open; } - public bool CanOpen(EntityUid user, EntityUid target, bool silent = false, SharedEntityStorageComponent? component = null) + public bool CanOpen(EntityUid user, EntityUid target, bool silent = false, EntityStorageComponent? component = null) { if (!ResolveStorage(target, ref component)) return false; @@ -429,7 +432,7 @@ public abstract class SharedEntityStorageSystem : EntitySystem return !ev.Cancelled; } - public bool AddToContents(EntityUid toAdd, EntityUid container, SharedEntityStorageComponent? component = null) + public bool AddToContents(EntityUid toAdd, EntityUid container, EntityStorageComponent? component = null) { if (!ResolveStorage(container, ref component)) return false; @@ -440,7 +443,7 @@ public abstract class SharedEntityStorageSystem : EntitySystem return Insert(toAdd, container, component); } - private void ModifyComponents(EntityUid uid, SharedEntityStorageComponent? component = null) + private void ModifyComponents(EntityUid uid, EntityStorageComponent? component = null) { if (!ResolveStorage(uid, ref component)) return; @@ -472,12 +475,12 @@ public abstract class SharedEntityStorageSystem : EntitySystem _appearance.SetData(uid, StorageVisuals.HasContents, component.Contents.ContainedEntities.Count > 0); } - protected virtual void TakeGas(EntityUid uid, SharedEntityStorageComponent component) + protected virtual void TakeGas(EntityUid uid, EntityStorageComponent component) { } - public virtual void ReleaseGas(EntityUid uid, SharedEntityStorageComponent component) + public virtual void ReleaseGas(EntityUid uid, EntityStorageComponent component) { } diff --git a/Content.Shared/Stunnable/SharedStunSystem.Knockdown.cs b/Content.Shared/Stunnable/SharedStunSystem.Knockdown.cs index 7917f10bd5..3ab4791269 100644 --- a/Content.Shared/Stunnable/SharedStunSystem.Knockdown.cs +++ b/Content.Shared/Stunnable/SharedStunSystem.Knockdown.cs @@ -1,9 +1,11 @@ -using Content.Shared.Alert; +using Content.Shared.Alert; using Content.Shared.Buckle.Components; +using Content.Shared.CCVar; using Content.Shared.Damage; using Content.Shared.Damage.Components; using Content.Shared.Database; using Content.Shared.DoAfter; +using Content.Shared.Gravity; using Content.Shared.Hands.EntitySystems; using Content.Shared.Input; using Content.Shared.Movement.Events; @@ -12,6 +14,7 @@ using Content.Shared.Popups; using Content.Shared.Rejuvenate; using Content.Shared.Standing; using Robust.Shared.Audio; +using Robust.Shared.Configuration; using Robust.Shared.Input.Binding; using Robust.Shared.Physics; using Robust.Shared.Physics.Systems; @@ -32,6 +35,7 @@ public abstract partial class SharedStunSystem [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly SharedPhysicsSystem _physics = default!; [Dependency] private readonly StandingStateSystem _standingState = default!; + [Dependency] private readonly IConfigurationManager _cfgManager = default!; public static readonly ProtoId KnockdownAlert = "Knockdown"; @@ -60,6 +64,9 @@ public abstract partial class SharedStunSystem // Crawling SubscribeLocalEvent(OnKnockdownRefresh); SubscribeLocalEvent(OnDamaged); + SubscribeLocalEvent(OnWeightlessnessChanged); + SubscribeLocalEvent(OnKnockdownAttempt); + SubscribeLocalEvent(OnGetStandUpTime); // Handling Alternative Inputs SubscribeAllEvent(OnForceStandup); @@ -234,7 +241,7 @@ public abstract partial class SharedStunSystem private void ToggleKnockdown(Entity entity) { // We resolve here instead of using TryCrawling to be extra sure someone without crawler can't stand up early. - if (!Resolve(entity, ref entity.Comp1, false)) + if (!Resolve(entity, ref entity.Comp1, false) || !_cfgManager.GetCVar(CCVars.MovementCrawling)) return; if (!Resolve(entity, ref entity.Comp2, false)) @@ -259,7 +266,7 @@ public abstract partial class SharedStunSystem if (!KnockdownOver((entity, entity.Comp))) return false; - if (!_crawlerQuery.TryComp(entity, out var crawler)) + if (!_crawlerQuery.TryComp(entity, out var crawler) || !_cfgManager.GetCVar(CCVars.MovementCrawling)) { // If we can't crawl then just have us sit back up... // In case you're wondering, the KnockdownOverCheck, returns if we're able to move, so if next update is null. @@ -488,6 +495,32 @@ public abstract partial class SharedStunSystem args.SpeedModifier *= entity.Comp.SpeedModifier; } + private void OnWeightlessnessChanged(Entity entity, ref WeightlessnessChangedEvent args) + { + // I probably don't need this check since weightless -> non-weightless you shouldn't be knocked down + // But you never know. + if (!args.Weightless) + return; + + // Targeted moth attack + CancelKnockdownDoAfter((entity, entity.Comp)); + RemCompDeferred(entity); + } + + private void OnKnockdownAttempt(Entity entity, ref KnockDownAttemptEvent args) + { + // Directed, targeted moth attack. + if (entity.Comp.Weightless) + args.Cancelled = true; + } + + private void OnGetStandUpTime(Entity entity, ref GetStandUpTimeEvent args) + { + // Get up instantly if weightless + if (entity.Comp.Weightless) + args.DoAfterTime = TimeSpan.Zero; + } + #endregion #region Action Blockers diff --git a/Content.Shared/Throwing/CatchableSystem.cs b/Content.Shared/Throwing/CatchableSystem.cs index 8f2fd355ba..586397f58b 100644 --- a/Content.Shared/Throwing/CatchableSystem.cs +++ b/Content.Shared/Throwing/CatchableSystem.cs @@ -3,6 +3,7 @@ using Content.Shared.Hands.Components; using Content.Shared.Hands.EntitySystems; using Content.Shared.IdentityManagement; using Content.Shared.Popups; +using Content.Shared.Random.Helpers; using Content.Shared.Whitelist; using Robust.Shared.Audio.Systems; using Robust.Shared.Network; @@ -55,7 +56,7 @@ public sealed partial class CatchableSystem : EntitySystem return; // TODO: Replace with RandomPredicted once the engine PR is merged - var seed = HashCode.Combine((int)_timing.CurTick.Value, GetNetEntity(ent).Id); + var seed = SharedRandomExtensions.HashCodeCombine(new() { (int)_timing.CurTick.Value, GetNetEntity(ent).Id }); var rand = new System.Random(seed); if (!rand.Prob(ent.Comp.CatchChance)) return; diff --git a/Content.Shared/Throwing/ThrowEvents.cs b/Content.Shared/Throwing/ThrowEvents.cs index fbda80b8ca..8b60a7b4b1 100644 --- a/Content.Shared/Throwing/ThrowEvents.cs +++ b/Content.Shared/Throwing/ThrowEvents.cs @@ -1,39 +1,25 @@ -namespace Content.Shared.Throwing -{ - /// - /// Base class for all throw events. - /// - public abstract class ThrowEvent : HandledEntityEventArgs - { - public readonly EntityUid Thrown; - public readonly EntityUid Target; - public ThrownItemComponent Component; +namespace Content.Shared.Throwing; - public ThrowEvent(EntityUid thrown, EntityUid target, ThrownItemComponent component) - { - Thrown = thrown; - Target = target; - Component = component; - } - } +/// +/// Raised on an entity after it has thrown something. +/// +[ByRefEvent] +public readonly record struct ThrowEvent(EntityUid? User, EntityUid Thrown); - /// - /// Raised directed on the target entity being hit by the thrown entity. - /// - public sealed class ThrowHitByEvent : ThrowEvent - { - public ThrowHitByEvent(EntityUid thrown, EntityUid target, ThrownItemComponent component) : base(thrown, target, component) - { - } - } +/// +/// Raised on an entity after it has been thrown. +/// +[ByRefEvent] +public readonly record struct ThrownEvent(EntityUid? User, EntityUid Thrown); - /// - /// Raised directed on the thrown entity that hits another. - /// - public sealed class ThrowDoHitEvent : ThrowEvent - { - public ThrowDoHitEvent(EntityUid thrown, EntityUid target, ThrownItemComponent component) : base(thrown, target, component) - { - } - } -} +/// +/// Raised directed on the target entity being hit by the thrown entity. +/// +[ByRefEvent] +public readonly record struct ThrowHitByEvent(EntityUid Thrown, EntityUid Target, ThrownItemComponent Component); + +/// +/// Raised directed on the thrown entity that hits another. +/// +[ByRefEvent] +public readonly record struct ThrowDoHitEvent(EntityUid Thrown, EntityUid Target, ThrownItemComponent Component); diff --git a/Content.Shared/Throwing/ThrowingSystem.cs b/Content.Shared/Throwing/ThrowingSystem.cs index ceb9cf8bfb..db68c3517c 100644 --- a/Content.Shared/Throwing/ThrowingSystem.cs +++ b/Content.Shared/Throwing/ThrowingSystem.cs @@ -192,8 +192,6 @@ public sealed class ThrowingSystem : EntitySystem } } - var throwEvent = new ThrownEvent(user, uid); - RaiseLocalEvent(uid, ref throwEvent, true); if (user != null) _adminLogger.Add(LogType.Throw, LogImpact.Low, $"{ToPrettyString(user.Value):user} threw {ToPrettyString(uid):entity}"); @@ -206,6 +204,14 @@ public sealed class ThrowingSystem : EntitySystem var impulseVector = direction.Normalized() * throwSpeed * physics.Mass; _physics.ApplyLinearImpulse(uid, impulseVector, body: physics); + var thrownEvent = new ThrownEvent(user, uid); + RaiseLocalEvent(uid, ref thrownEvent, true); + if (user != null) + { + var throwEvent = new ThrowEvent(user, uid); + RaiseLocalEvent(user.Value, ref throwEvent, true); + } + if (comp.LandTime == null || comp.LandTime <= TimeSpan.Zero) { _thrownSystem.LandComponent(uid, comp, physics, playSound); @@ -236,7 +242,7 @@ public sealed class ThrowingSystem : EntitySystem RaiseLocalEvent(user.Value, ref pushEv); const float massLimit = 5f; - if (pushEv.Push || _gravity.IsWeightless(user.Value)) + if (pushEv.Push) _physics.ApplyLinearImpulse(user.Value, -impulseVector / physics.Mass * pushbackRatio * MathF.Min(massLimit, physics.Mass), body: userPhysics); } } diff --git a/Content.Shared/Throwing/ThrownEvent.cs b/Content.Shared/Throwing/ThrownEvent.cs deleted file mode 100644 index 70cb6ee43d..0000000000 --- a/Content.Shared/Throwing/ThrownEvent.cs +++ /dev/null @@ -1,10 +0,0 @@ -using JetBrains.Annotations; - -namespace Content.Shared.Throwing; - -/// -/// Raised on thrown entity. -/// -[PublicAPI] -[ByRefEvent] -public readonly record struct ThrownEvent(EntityUid? User, EntityUid Thrown); diff --git a/Content.Shared/Throwing/ThrownItemSystem.cs b/Content.Shared/Throwing/ThrownItemSystem.cs index 65c5a0f13e..5adad359e5 100644 --- a/Content.Shared/Throwing/ThrownItemSystem.cs +++ b/Content.Shared/Throwing/ThrownItemSystem.cs @@ -140,8 +140,10 @@ namespace Content.Shared.Throwing _adminLogger.Add(LogType.ThrowHit, LogImpact.Low, $"{ToPrettyString(thrown):thrown} thrown by {ToPrettyString(component.Thrower.Value):thrower} hit {ToPrettyString(target):target}."); - RaiseLocalEvent(target, new ThrowHitByEvent(thrown, target, component), true); - RaiseLocalEvent(thrown, new ThrowDoHitEvent(thrown, target, component), true); + var hitByEv = new ThrowHitByEvent(thrown, target, component); + var doHitEv = new ThrowDoHitEvent(thrown, target, component); + RaiseLocalEvent(target, ref hitByEv, true); + RaiseLocalEvent(thrown, ref doHitEv, true); } public override void Update(float frameTime) diff --git a/Content.Shared/Tools/Components/SimpleToolUsageComponent.cs b/Content.Shared/Tools/Components/SimpleToolUsageComponent.cs index 1f1e9c65f8..a425073ce8 100644 --- a/Content.Shared/Tools/Components/SimpleToolUsageComponent.cs +++ b/Content.Shared/Tools/Components/SimpleToolUsageComponent.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Tools.Components; /// /// Component responsible for simple tool interactions. -/// Using a tool with the correct quality on an entity with this component will start a doAfter and raise events. +/// Using a tool with the correct quality on an entity with this component will start a DoAfter and raise the other systems can subscribe to. /// [RegisterComponent, NetworkedComponent] [Access(typeof(SimpleToolUsageSystem))] @@ -40,8 +40,15 @@ public sealed partial class SimpleToolUsageComponent : Component public LocId BlockedMessage = "simple-tool-usage-blocked-message"; } +/// +/// Cancelable event that can be used to prevent tool interaction. +/// [ByRefEvent] public record struct AttemptSimpleToolUseEvent(EntityUid User, bool Cancelled = false); +/// +/// Raised after the right tool is used on an entity with +/// and the DoAfter has finished. +/// [Serializable, NetSerializable] public sealed partial class SimpleToolDoAfterEvent : SimpleDoAfterEvent; diff --git a/Content.Shared/Traits/Assorted/HemophiliaComponent.cs b/Content.Shared/Traits/Assorted/HemophiliaComponent.cs new file mode 100644 index 0000000000..208883f11c --- /dev/null +++ b/Content.Shared/Traits/Assorted/HemophiliaComponent.cs @@ -0,0 +1,16 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Traits.Assorted; + +/// +/// This component is used for the Hemophilia Trait, it reduces the passive bleed stack reduction amount so entities with it bleed for longer. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class HemophiliaComponent : Component +{ + /// + /// What multiplier should be applied to the BleedReduction when an entity bleeds? + /// + [DataField, AutoNetworkedField] + public float HemophiliaBleedReductionMultiplier = 0.33f; +} diff --git a/Content.Shared/Traits/Assorted/HemophiliaSystem.cs b/Content.Shared/Traits/Assorted/HemophiliaSystem.cs new file mode 100644 index 0000000000..53f6609575 --- /dev/null +++ b/Content.Shared/Traits/Assorted/HemophiliaSystem.cs @@ -0,0 +1,16 @@ +using Content.Shared.Body.Events; + +namespace Content.Shared.Traits.Assorted; + +public sealed class HemophiliaSystem : EntitySystem +{ + public override void Initialize() + { + SubscribeLocalEvent(OnBleedModifier); + } + + private void OnBleedModifier(Entity ent, ref BleedModifierEvent args) + { + args.BleedReductionAmount *= ent.Comp.HemophiliaBleedReductionMultiplier; + } +} diff --git a/Content.Shared/Traits/Assorted/ImpairedMobilityComponent.cs b/Content.Shared/Traits/Assorted/ImpairedMobilityComponent.cs new file mode 100644 index 0000000000..50f7281ff8 --- /dev/null +++ b/Content.Shared/Traits/Assorted/ImpairedMobilityComponent.cs @@ -0,0 +1,25 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Traits.Assorted; + +/// +/// Used for the Impaired Mobility disability trait. +/// Applies a base movement speed reduction as determined by the SpeedModifier field. +/// Also increases the time it takes to stand up after falling, as determined by the StandUpTimeModifier field. +/// When an entity holds an item with the MobilityAidComponent, the speed penalty is nullified. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class ImpairedMobilityComponent : Component +{ + /// + /// The movement speed modifier applied to the player (0.4 is 40% slower) + /// + [DataField, AutoNetworkedField] + public float SpeedModifier = 0.4f; + + /// + /// The doAfter modifier when getting up after falling (1.4 is 40% slower) + /// + [DataField, AutoNetworkedField] + public float StandUpTimeModifier = 1.4f; +} diff --git a/Content.Shared/Traits/Assorted/ImpairedMobilitySystem.cs b/Content.Shared/Traits/Assorted/ImpairedMobilitySystem.cs new file mode 100644 index 0000000000..678fc85344 --- /dev/null +++ b/Content.Shared/Traits/Assorted/ImpairedMobilitySystem.cs @@ -0,0 +1,70 @@ +using Content.Shared.Movement.Systems; +using Content.Shared.Stunnable; +using Content.Shared.Hands.EntitySystems; +using Content.Shared.Hands.Components; +using Content.Shared.Wieldable.Components; + +namespace Content.Shared.Traits.Assorted; + +/// +/// Handles +/// +public sealed class ImpairedMobilitySystem : EntitySystem +{ + [Dependency] private readonly SharedHandsSystem _hands = default!; + [Dependency] private readonly MovementSpeedModifierSystem _speedModifier = default!; + public override void Initialize() + { + SubscribeLocalEvent(OnInit); + SubscribeLocalEvent(OnShutdown); + SubscribeLocalEvent(OnRefreshMovementSpeed); + SubscribeLocalEvent(OnGetStandUpTime); + } + + private void OnInit(Entity ent, ref ComponentInit args) + { + _speedModifier.RefreshMovementSpeedModifiers(ent); + } + + private void OnShutdown(Entity ent, ref ComponentShutdown args) + { + _speedModifier.RefreshMovementSpeedModifiers(ent); + } + + // Handles movement speed for entities with impaired mobility. + // Applies a speed penalty, but counteracts it if the entity is holding a non-wielded mobility aid. + private void OnRefreshMovementSpeed(Entity ent, ref RefreshMovementSpeedModifiersEvent args) + { + if (HasMobilityAid(ent.Owner)) + return; + + args.ModifySpeed(ent.Comp.SpeedModifier); + } + + // Increases the time it takes for entities to stand up from being knocked down. + private void OnGetStandUpTime(Entity ent, ref GetStandUpTimeEvent args) + { + args.DoAfterTime *= ent.Comp.StandUpTimeModifier; + } + + // Checks if the entity is holding any non-wielded mobility aids. + private bool HasMobilityAid(Entity entity) + { + if (!Resolve(entity, ref entity.Comp, false)) + return false; + + foreach (var held in _hands.EnumerateHeld(entity)) + { + if (!HasComp(held)) + continue; + + // Makes sure it's not wielded yet + if (TryComp(held, out var wieldable) && wieldable.Wielded) + continue; + + return true; + } + + return false; + } +} diff --git a/Content.Shared/Traits/Assorted/MobilityAidComponent.cs b/Content.Shared/Traits/Assorted/MobilityAidComponent.cs new file mode 100644 index 0000000000..6623c8217a --- /dev/null +++ b/Content.Shared/Traits/Assorted/MobilityAidComponent.cs @@ -0,0 +1,11 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Traits.Assorted; + +/// +/// Component to mark items that restore normal movement speed when held in-hand for entities with the impaired mobility trait. +/// The speed is automatically calculated to nullify the entity's speed penalty. +/// Should be used on items that act as mobility aids, such as canes. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class MobilityAidComponent : Component; diff --git a/Content.Shared/Traits/Assorted/MobilityAidSystem.cs b/Content.Shared/Traits/Assorted/MobilityAidSystem.cs new file mode 100644 index 0000000000..7df47ca750 --- /dev/null +++ b/Content.Shared/Traits/Assorted/MobilityAidSystem.cs @@ -0,0 +1,42 @@ +using Content.Shared.Hands; +using Content.Shared.Movement.Systems; +using Content.Shared.Wieldable; + +namespace Content.Shared.Traits.Assorted; + +/// +/// Handles +/// +public sealed class MobilityAidSystem : EntitySystem +{ + [Dependency] private readonly MovementSpeedModifierSystem _movementSpeedModifier = default!; + + /// + public override void Initialize() + { + SubscribeLocalEvent(OnGotEquippedHand); + SubscribeLocalEvent(OnGotUnequippedHand); + SubscribeLocalEvent(OnMobilityAidWielded); + SubscribeLocalEvent(OnMobilityAidUnwielded); + } + + private void OnGotEquippedHand(Entity ent, ref GotEquippedHandEvent args) + { + _movementSpeedModifier.RefreshMovementSpeedModifiers(args.User); + } + + private void OnGotUnequippedHand(Entity ent, ref GotUnequippedHandEvent args) + { + _movementSpeedModifier.RefreshMovementSpeedModifiers(args.User); + } + + private void OnMobilityAidWielded(Entity ent, ref ItemWieldedEvent args) + { + _movementSpeedModifier.RefreshMovementSpeedModifiers(args.User); + } + + private void OnMobilityAidUnwielded(Entity ent, ref ItemUnwieldedEvent args) + { + _movementSpeedModifier.RefreshMovementSpeedModifiers(args.User); + } +} diff --git a/Content.Shared/Trigger/Components/Effects/AddGameRuleOnTriggerComponent.cs b/Content.Shared/Trigger/Components/Effects/AddGameRuleOnTriggerComponent.cs new file mode 100644 index 0000000000..474272694c --- /dev/null +++ b/Content.Shared/Trigger/Components/Effects/AddGameRuleOnTriggerComponent.cs @@ -0,0 +1,26 @@ +using Content.Shared.GameTicking.Components; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Trigger.Components.Effects; + +/// +/// Adds and starts a new game rule on a trigger. +/// The user is always logged alongside the game rule and this entity. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class AddGameRuleOnTriggerComponent : BaseXOnTriggerComponent +{ + /// + /// The game rule that will be added. Entity requires . + /// + [DataField(required: true), AutoNetworkedField] + public EntProtoId GameRule; + + /// + /// Whether to also start the game rule when adding it. + /// You almost always want this to be true. + /// + [DataField, AutoNetworkedField] + public bool StartRule = true; +} diff --git a/Content.Shared/Trigger/Components/Effects/LockOnTriggerComponent.cs b/Content.Shared/Trigger/Components/Effects/LockOnTriggerComponent.cs index 38eea0a461..6dbec86c5d 100644 --- a/Content.Shared/Trigger/Components/Effects/LockOnTriggerComponent.cs +++ b/Content.Shared/Trigger/Components/Effects/LockOnTriggerComponent.cs @@ -1,19 +1,27 @@ +using Content.Shared.Lock; using Robust.Shared.GameStates; using Robust.Shared.Serialization; namespace Content.Shared.Trigger.Components.Effects; +/// +/// Will lock, unlock or toggle an entity with the . +/// If TargetUser is true then they will be (un)locked instead. +/// [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class LockOnTriggerComponent : BaseXOnTriggerComponent { + /// + /// If the trigger will lock, unlock or toggle the lock. + /// [DataField, AutoNetworkedField] - public LockAction LockOnTrigger = LockAction.Toggle; + public LockAction LockMode = LockAction.Toggle; } [Serializable, NetSerializable] public enum LockAction { - Lock = 0, + Lock = 0, Unlock = 1, Toggle = 2, } diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnDidEquipComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnDidEquipComponent.cs new file mode 100644 index 0000000000..3c970eb855 --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnDidEquipComponent.cs @@ -0,0 +1,18 @@ +using Content.Shared.Inventory; +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers when an entity equips another entity. +/// The user is the entity being equipped. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnDidEquipComponent : BaseTriggerOnXComponent +{ + /// + /// The slots entities being equipped to will trigger the entity. + /// + [DataField, AutoNetworkedField] + public SlotFlags SlotFlags; +} diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnDidEquipHandComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnDidEquipHandComponent.cs new file mode 100644 index 0000000000..d598db6d93 --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnDidEquipHandComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers an entity when it is equips an item into one of its hand slots. +/// The user is the entity that was equipped. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnDidEquipHandComponent : BaseTriggerOnXComponent; diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnDidUnequipComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnDidUnequipComponent.cs new file mode 100644 index 0000000000..c6ec3821b1 --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnDidUnequipComponent.cs @@ -0,0 +1,18 @@ +using Content.Shared.Inventory; +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers when an entity unequips another entity. +/// The user is the entity being unequipped. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnDidUnequipComponent : BaseTriggerOnXComponent +{ + /// + /// The slots that entities being unequipped from will trigger the entity. + /// + [DataField, AutoNetworkedField] + public SlotFlags SlotFlags; +} diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnDidUnequipHandComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnDidUnequipHandComponent.cs new file mode 100644 index 0000000000..5c3d2da018 --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnDidUnequipHandComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers an entity when it is drops an item from one of its hand slots. +/// The user is the entity that was dropped. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnDidUnequipHandComponent : BaseTriggerOnXComponent; diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnDroppedComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnDroppedComponent.cs new file mode 100644 index 0000000000..6e06216a2c --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnDroppedComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers an entity when it is dropped from a users hands, or directly removed from a users inventory, but not when moved between hands & inventory. +/// The user is the player that was holding or wearing the item. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnDroppedComponent : BaseTriggerOnXComponent; diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnGotEquippedComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnGotEquippedComponent.cs new file mode 100644 index 0000000000..c3bb62fa80 --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnGotEquippedComponent.cs @@ -0,0 +1,18 @@ +using Content.Shared.Inventory; +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers when an entity is equipped to another entity. +/// The user is the entity being equipped to (i.e. the equipee). +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnGotEquippedComponent : BaseTriggerOnXComponent +{ + /// + /// The slots that being equipped to will trigger the entity. + /// + [DataField, AutoNetworkedField] + public SlotFlags SlotFlags; +} diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnGotEquippedHandComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnGotEquippedHandComponent.cs new file mode 100644 index 0000000000..24c2d4231c --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnGotEquippedHandComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers an item when it is equipped into a hand slot. +/// The user is the entity that picked the item up. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnGotEquippedHandComponent : BaseTriggerOnXComponent; diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnGotInsertedIntoContainerComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnGotInsertedIntoContainerComponent.cs new file mode 100644 index 0000000000..132167a747 --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnGotInsertedIntoContainerComponent.cs @@ -0,0 +1,18 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers an entity when it gets inserted into a container. +/// The user is the owner of the container the entity is being inserted into. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnGotInsertedIntoContainerComponent : BaseTriggerOnXComponent +{ + /// + /// The container to the entity has to be inserted into. + /// Null will allow all containers. + /// + [DataField, AutoNetworkedField] + public string? ContainerId; +} diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnGotRemovedFromContainerComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnGotRemovedFromContainerComponent.cs new file mode 100644 index 0000000000..8c66bf4e81 --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnGotRemovedFromContainerComponent.cs @@ -0,0 +1,18 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers an entity when it gets removed from a container. +/// The user is the owner of the container the entity is being removed from. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnGotRemovedFromContainerComponent : BaseTriggerOnXComponent +{ + /// + /// The container to the entity has to be removed from. + /// Null will allow all containers. + /// + [DataField, AutoNetworkedField] + public string? ContainerId; +} diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnGotUnequippedComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnGotUnequippedComponent.cs new file mode 100644 index 0000000000..2b6663e1f0 --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnGotUnequippedComponent.cs @@ -0,0 +1,18 @@ +using Content.Shared.Inventory; +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers when an entity is unequipped from another entity. +/// The user is the entity being unequipped from (i.e. the (un)equipee). +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnGotUnequippedComponent : BaseTriggerOnXComponent +{ + /// + /// The slots that being unequipped from will trigger the entity. + /// + [DataField, AutoNetworkedField] + public SlotFlags SlotFlags; +} diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnGotUnequippedHandComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnGotUnequippedHandComponent.cs new file mode 100644 index 0000000000..624c1a141b --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnGotUnequippedHandComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers an item when it is dropped from a hand slot. +/// The user is the entity that dropped the item. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnGotUnequippedHandComponent : BaseTriggerOnXComponent; diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnInsertedIntoContainerComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnInsertedIntoContainerComponent.cs new file mode 100644 index 0000000000..d5616dfd85 --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnInsertedIntoContainerComponent.cs @@ -0,0 +1,18 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers an entity when something is inserted into it. +/// The user is the entity being inserted into the container. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnInsertedIntoContainerComponent : BaseTriggerOnXComponent +{ + /// + /// The container to the entity has to be inserted into. + /// Null will allow all containers. + /// + [DataField, AutoNetworkedField] + public string? ContainerId; +} diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnInteractUsingComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnInteractUsingComponent.cs new file mode 100644 index 0000000000..0a5844338e --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnInteractUsingComponent.cs @@ -0,0 +1,34 @@ +using Content.Shared.Interaction; +using Content.Shared.Whitelist; +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers when an entity is used to interact with another entity (). +/// The user is the player initiating the interaction or the item used, depending on the TargetUsed datafield. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnInteractUsingComponent : BaseTriggerOnXComponent +{ + /// + /// Whitelist of entities that can be used to trigger this component. + /// + /// No whitelist check when null. + [DataField, AutoNetworkedField] + public EntityWhitelist? Whitelist; + + /// + /// Blacklist of entities that cannot be used to trigger this component. + /// + /// No blacklist check when null. + [DataField, AutoNetworkedField] + public EntityWhitelist? Blacklist; + + /// + /// If false, the trigger user will be the user that initiated the interaction. + /// If true, the trigger user will the entity that was used to interact. + /// + [DataField, AutoNetworkedField] + public bool TargetUsed = false; +} diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnRemovedFromContainerComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnRemovedFromContainerComponent.cs new file mode 100644 index 0000000000..095b040834 --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnRemovedFromContainerComponent.cs @@ -0,0 +1,18 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers an entity when something is removed from it. +/// The user is the entity being removed from the container. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnRemovedFromContainerComponent : BaseTriggerOnXComponent +{ + /// + /// The container to the entity has to be removed from. + /// Null will allow all containers. + /// + [DataField, AutoNetworkedField] + public string? ContainerId; +} diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnSimpleToolUsage.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnSimpleToolUsage.cs new file mode 100644 index 0000000000..ffa60c35ee --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnSimpleToolUsage.cs @@ -0,0 +1,12 @@ +using Content.Shared.Tools.Components; +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers an entity with when the correct tool +/// is used on it and the DoAfter has finished. +/// The user is the player using the tool. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnSimpleToolUsageComponent : BaseTriggerOnXComponent; diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnThrowComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnThrowComponent.cs new file mode 100644 index 0000000000..e9249a8f2a --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnThrowComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers when after an entity has thrown something. +/// The user is the thrown item. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnThrowComponent : BaseTriggerOnXComponent; diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnThrownComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnThrownComponent.cs new file mode 100644 index 0000000000..e309261711 --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnThrownComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers when an entity was thrown. +/// The user is the thrower. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnThrownComponent : BaseTriggerOnXComponent; diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnVoiceComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnVoiceComponent.cs index 1fc3c1b966..974d5322e0 100644 --- a/Content.Shared/Trigger/Components/Triggers/TriggerOnVoiceComponent.cs +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnVoiceComponent.cs @@ -60,36 +60,36 @@ public sealed partial class TriggerOnVoiceComponent : BaseTriggerOnXComponent /// /// The verb text that is shown when you can start recording a message. /// - [DataField] + [DataField, AutoNetworkedField] public LocId StartRecordingVerb = "trigger-on-voice-record"; /// /// The verb text that is shown when you can stop recording a message. /// - [DataField] + [DataField, AutoNetworkedField] public LocId StopRecordingVerb = "trigger-on-voice-stop"; /// /// Tooltip that appears when hovering over the stop or start recording verbs. /// - [DataField] + [DataField, AutoNetworkedField] public LocId? RecordingVerbMessage; /// /// The verb text that is shown when you can clear a recording. /// - [DataField] + [DataField, AutoNetworkedField] public LocId ClearRecordingVerb = "trigger-on-voice-clear"; /// /// The loc string that is shown when inspecting an uninitialized voice trigger. /// - [DataField] + [DataField, AutoNetworkedField] public LocId? InspectUninitializedLoc = "trigger-on-voice-uninitialized"; /// /// The loc string to use when inspecting voice trigger. Will also include the triggering phrase /// - [DataField] + [DataField, AutoNetworkedField] public LocId? InspectInitializedLoc = "trigger-on-voice-examine"; } diff --git a/Content.Shared/Trigger/Systems/HandTriggerSystem.cs b/Content.Shared/Trigger/Systems/HandTriggerSystem.cs new file mode 100644 index 0000000000..8001d5d92f --- /dev/null +++ b/Content.Shared/Trigger/Systems/HandTriggerSystem.cs @@ -0,0 +1,64 @@ +using Content.Shared.Hands; +using Content.Shared.Interaction.Events; +using Content.Shared.Trigger.Components.Triggers; +using Robust.Shared.Timing; + +namespace Content.Shared.Trigger.Systems; + +public sealed partial class HandTriggerSystem : EntitySystem +{ + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly TriggerSystem _trigger = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnGotEquipped); + SubscribeLocalEvent(OnGotUnequipped); + SubscribeLocalEvent(OnDidEquip); + SubscribeLocalEvent(OnDidUnequip); + SubscribeLocalEvent(OnDropped); + } + + private void OnGotEquipped(Entity ent, ref GotEquippedHandEvent args) + { + // If the entity was equipped on the server (without prediction) then the container change is networked to the client + // which will raise the same event, but the effect of the trigger is already networked on its own. So this guard statement + // prevents triggering twice on the client. + if (_timing.ApplyingState) + return; + + _trigger.Trigger(ent.Owner, args.User, ent.Comp.KeyOut); + } + + private void OnGotUnequipped(Entity ent, ref GotUnequippedHandEvent args) + { + if (_timing.ApplyingState) + return; + + _trigger.Trigger(ent.Owner, args.User, ent.Comp.KeyOut); + } + + private void OnDidEquip(Entity ent, ref DidEquipHandEvent args) + { + if (_timing.ApplyingState) + return; + + _trigger.Trigger(ent.Owner, args.Equipped, ent.Comp.KeyOut); + } + + private void OnDidUnequip(Entity ent, ref DidUnequipHandEvent args) + { + if (_timing.ApplyingState) + return; + + _trigger.Trigger(ent.Owner, args.Unequipped, ent.Comp.KeyOut); + } + + private void OnDropped(Entity ent, ref DroppedEvent args) + { + // We don't need the guard statement here because this one is not a container event, but raised directly when interacting. + _trigger.Trigger(ent.Owner, args.User, ent.Comp.KeyOut); + } +} diff --git a/Content.Shared/Trigger/Systems/LockOnTriggerSystem.cs b/Content.Shared/Trigger/Systems/LockOnTriggerSystem.cs index 8726ede899..2056d5fe51 100644 --- a/Content.Shared/Trigger/Systems/LockOnTriggerSystem.cs +++ b/Content.Shared/Trigger/Systems/LockOnTriggerSystem.cs @@ -19,16 +19,21 @@ public sealed class LockOnTriggerSystem : EntitySystem if (args.Key != null && !ent.Comp.KeysIn.Contains(args.Key)) return; - switch (ent.Comp.LockOnTrigger) + var target = ent.Comp.TargetUser ? args.User : ent.Owner; + + if (!TryComp(target, out var lockComp)) + return; // prevent the Resolve in Lock/Unlock/ToggleLock from logging errors in case the user does not have the component + + switch (ent.Comp.LockMode) { case LockAction.Lock: - _lock.Lock(ent.Owner, args.User); + _lock.Lock(target.Value, args.User, lockComp); break; case LockAction.Unlock: - _lock.Unlock(ent, args.User); + _lock.Unlock(target.Value, args.User, lockComp); break; case LockAction.Toggle: - _lock.ToggleLock(ent, args.User); + _lock.ToggleLock(target.Value, args.User, lockComp); break; } } diff --git a/Content.Shared/Trigger/Systems/TriggerOnContainerInteractionSystem.cs b/Content.Shared/Trigger/Systems/TriggerOnContainerInteractionSystem.cs new file mode 100644 index 0000000000..8fa9308f70 --- /dev/null +++ b/Content.Shared/Trigger/Systems/TriggerOnContainerInteractionSystem.cs @@ -0,0 +1,70 @@ +using Content.Shared.Trigger.Components.Triggers; +using Robust.Shared.Containers; +using Robust.Shared.Timing; + +namespace Content.Shared.Trigger.Systems; + +/// +/// System for creating triggers when entities are inserted into or removed from containers. +/// +public sealed class TriggerOnContainerInteractionSystem : EntitySystem +{ + [Dependency] private readonly TriggerSystem _trigger = default!; + [Dependency] private readonly IGameTiming _timing = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnInsertedIntoContainer); + SubscribeLocalEvent(OnRemovedFromContainer); + SubscribeLocalEvent(OnGotInsertedIntoContainer); + SubscribeLocalEvent(OnGotRemovedFromContainer); + } + + // Used by containers to trigger when entities are inserted into or removed from them + private void OnInsertedIntoContainer(Entity ent, ref EntInsertedIntoContainerMessage args) + { + if (_timing.ApplyingState) + return; + + if (ent.Comp.ContainerId != null && ent.Comp.ContainerId != args.Container.ID) + return; + + _trigger.Trigger(ent.Owner, args.Entity, ent.Comp.KeyOut); + } + + private void OnRemovedFromContainer(Entity ent, ref EntRemovedFromContainerMessage args) + { + if (_timing.ApplyingState) + return; + + if (ent.Comp.ContainerId != null && ent.Comp.ContainerId != args.Container.ID) + return; + + _trigger.Trigger(ent.Owner, args.Entity, ent.Comp.KeyOut); + } + + // Used by entities to trigger when they are inserted into or removed from a container + private void OnGotInsertedIntoContainer(Entity ent, ref EntGotInsertedIntoContainerMessage args) + { + if (_timing.ApplyingState) + return; + + if (ent.Comp.ContainerId != null && ent.Comp.ContainerId != args.Container.ID) + return; + + _trigger.Trigger(ent.Owner, args.Container.Owner, ent.Comp.KeyOut); + } + + private void OnGotRemovedFromContainer(Entity ent, ref EntGotRemovedFromContainerMessage args) + { + if (_timing.ApplyingState) + return; + + if (ent.Comp.ContainerId != null && ent.Comp.ContainerId != args.Container.ID) + return; + + _trigger.Trigger(ent.Owner, args.Container.Owner, ent.Comp.KeyOut); + } +} diff --git a/Content.Shared/Trigger/Systems/TriggerOnEquipmentSystem.cs b/Content.Shared/Trigger/Systems/TriggerOnEquipmentSystem.cs new file mode 100644 index 0000000000..bc097ae831 --- /dev/null +++ b/Content.Shared/Trigger/Systems/TriggerOnEquipmentSystem.cs @@ -0,0 +1,70 @@ +using Content.Shared.Trigger.Components.Triggers; +using Robust.Shared.Timing; +using Content.Shared.Inventory.Events; + +namespace Content.Shared.Trigger.Systems; + +/// +/// System for creating triggers when entities are equipped or unequipped from inventory slots. +/// +public sealed class TriggerOnEquipmentSystem : EntitySystem +{ + [Dependency] private readonly TriggerSystem _trigger = default!; + [Dependency] private readonly IGameTiming _timing = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnDidEquip); + SubscribeLocalEvent(OnDidUnequip); + SubscribeLocalEvent(OnGotEquipped); + SubscribeLocalEvent(OnGotUnequipped); + } + + // Used by entities when equipping or unequipping other entities + private void OnDidEquip(Entity ent, ref DidEquipEvent args) + { + if (_timing.ApplyingState) + return; + + if ((ent.Comp.SlotFlags & args.SlotFlags) == 0) + return; + + _trigger.Trigger(ent.Owner, args.Equipment, ent.Comp.KeyOut); + } + + private void OnDidUnequip(Entity ent, ref DidUnequipEvent args) + { + if (_timing.ApplyingState) + return; + + if ((ent.Comp.SlotFlags & args.SlotFlags) == 0) + return; + + _trigger.Trigger(ent.Owner, args.Equipment, ent.Comp.KeyOut); + } + + // Used by entities when they get equipped or unequipped + private void OnGotEquipped(Entity ent, ref GotEquippedEvent args) + { + if (_timing.ApplyingState) + return; + + if ((ent.Comp.SlotFlags & args.SlotFlags) == 0) + return; + + _trigger.Trigger(ent.Owner, args.Equipee, ent.Comp.KeyOut); + } + + private void OnGotUnequipped(Entity ent, ref GotUnequippedEvent args) + { + if (_timing.ApplyingState) + return; + + if ((ent.Comp.SlotFlags & args.SlotFlags) == 0) + return; + + _trigger.Trigger(ent.Owner, args.Equipee, ent.Comp.KeyOut); + } +} diff --git a/Content.Shared/Trigger/Systems/TriggerOnToolUseSystem.cs b/Content.Shared/Trigger/Systems/TriggerOnToolUseSystem.cs new file mode 100644 index 0000000000..01f612aadf --- /dev/null +++ b/Content.Shared/Trigger/Systems/TriggerOnToolUseSystem.cs @@ -0,0 +1,21 @@ +using Content.Shared.Tools.Components; +using Content.Shared.Trigger.Components.Triggers; + +namespace Content.Shared.Trigger.Systems; + +public sealed class TriggerOnToolUseSystem : EntitySystem +{ + [Dependency] private readonly TriggerSystem _trigger = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnToolUse); + } + + private void OnToolUse(Entity ent, ref SimpleToolDoAfterEvent args) + { + _trigger.Trigger(ent.Owner, args.User, ent.Comp.KeyOut); + } +} diff --git a/Content.Shared/Trigger/Systems/TriggerSystem.Interaction.cs b/Content.Shared/Trigger/Systems/TriggerSystem.Interaction.cs index 230b628663..62f483e876 100644 --- a/Content.Shared/Trigger/Systems/TriggerSystem.Interaction.cs +++ b/Content.Shared/Trigger/Systems/TriggerSystem.Interaction.cs @@ -1,7 +1,8 @@ -using Content.Shared.Examine; +using Content.Shared.Examine; using Content.Shared.Interaction; using Content.Shared.Interaction.Events; using Content.Shared.Item.ItemToggle.Components; +using Content.Shared.Throwing; using Content.Shared.Trigger.Components.Triggers; using Content.Shared.Trigger.Components.Effects; @@ -12,10 +13,13 @@ public sealed partial class TriggerSystem private void InitializeInteraction() { SubscribeLocalEvent(OnExamined); - SubscribeLocalEvent(OnActivate); SubscribeLocalEvent(OnUse); SubscribeLocalEvent(OnInteractHand); + SubscribeLocalEvent(OnInteractUsing); + + SubscribeLocalEvent(OnThrow); + SubscribeLocalEvent(OnThrown); SubscribeLocalEvent(HandleItemToggleOnTrigger); SubscribeLocalEvent(HandleAnchorOnTrigger); @@ -57,6 +61,28 @@ public sealed partial class TriggerSystem args.Handled = true; } + private void OnInteractUsing(Entity ent, ref InteractUsingEvent args) + { + if (args.Handled) + return; + + if (!_whitelist.CheckBoth(args.Used, ent.Comp.Blacklist, ent.Comp.Whitelist)) + return; + + Trigger(ent.Owner, ent.Comp.TargetUsed ? args.Used : args.User, ent.Comp.KeyOut); + args.Handled = true; + } + + private void OnThrow(Entity ent, ref ThrowEvent args) + { + Trigger(ent.Owner, args.Thrown, ent.Comp.KeyOut); + } + + private void OnThrown(Entity ent, ref ThrownEvent args) + { + Trigger(ent.Owner, args.User, ent.Comp.KeyOut); + } + private void HandleItemToggleOnTrigger(Entity ent, ref TriggerEvent args) { if (args.Key != null && !ent.Comp.KeysIn.Contains(args.Key)) diff --git a/Content.Server/Weapons/Melee/Balloon/BalloonPopperComponent.cs b/Content.Shared/Weapons/Melee/Balloon/BalloonPopperComponent.cs similarity index 94% rename from Content.Server/Weapons/Melee/Balloon/BalloonPopperComponent.cs rename to Content.Shared/Weapons/Melee/Balloon/BalloonPopperComponent.cs index e7f318d61c..7e90b2b4ea 100644 --- a/Content.Server/Weapons/Melee/Balloon/BalloonPopperComponent.cs +++ b/Content.Shared/Weapons/Melee/Balloon/BalloonPopperComponent.cs @@ -2,7 +2,7 @@ using Robust.Shared.Audio; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; -namespace Content.Server.Weapons.Melee.Balloon; +namespace Content.Shared.Weapons.Melee.Balloon; /// /// This is used for weapons that pop balloons on attack. diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs index 61ee8cdada..32da51f8bb 100644 --- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs +++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs @@ -8,7 +8,6 @@ using Content.Shared.CombatMode; using Content.Shared.Containers.ItemSlots; using Content.Shared.Damage; using Content.Shared.Examine; -using Content.Shared.Gravity; using Content.Shared.Hands; using Content.Shared.Hands.EntitySystems; using Content.Shared.Popups; @@ -27,7 +26,6 @@ using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.Map; using Robust.Shared.Network; -using Robust.Shared.Physics; using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Systems; using Robust.Shared.Prototypes; @@ -57,7 +55,6 @@ public abstract partial class SharedGunSystem : EntitySystem [Dependency] protected readonly SharedAudioSystem Audio = default!; [Dependency] private readonly SharedCombatModeSystem _combatMode = default!; [Dependency] protected readonly SharedContainerSystem Containers = default!; - [Dependency] private readonly SharedGravitySystem _gravity = default!; [Dependency] protected readonly SharedPointLightSystem Lights = default!; [Dependency] protected readonly SharedPopupSystem PopupSystem = default!; [Dependency] protected readonly SharedPhysicsSystem Physics = default!; @@ -391,7 +388,7 @@ public abstract partial class SharedGunSystem : EntitySystem var shooterEv = new ShooterImpulseEvent(); RaiseLocalEvent(user, ref shooterEv); - if (shooterEv.Push || _gravity.IsWeightless(user, userPhysics)) + if (shooterEv.Push) CauseImpulse(fromCoordinates, toCoordinates.Value, user, userPhysics); } diff --git a/Content.Server/Zombies/ZombieImmuneComponent.cs b/Content.Shared/Zombies/ZombieImmuneComponent.cs similarity index 73% rename from Content.Server/Zombies/ZombieImmuneComponent.cs rename to Content.Shared/Zombies/ZombieImmuneComponent.cs index 76a8ab9e67..483b1810f2 100644 --- a/Content.Server/Zombies/ZombieImmuneComponent.cs +++ b/Content.Shared/Zombies/ZombieImmuneComponent.cs @@ -1,4 +1,6 @@ -namespace Content.Server.Zombies; +using Robust.Shared.GameStates; + +namespace Content.Shared.Zombies; /// /// Entities with this component cannot be zombified. diff --git a/Content.Shared/Zombies/ZombifyOnDeathComponent.cs b/Content.Shared/Zombies/ZombifyOnDeathComponent.cs new file mode 100644 index 0000000000..60029aca6f --- /dev/null +++ b/Content.Shared/Zombies/ZombifyOnDeathComponent.cs @@ -0,0 +1,12 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Zombies; + +/// +/// Entities with this component zombify on death. +/// +[RegisterComponent] +public sealed partial class ZombifyOnDeathComponent : Component +{ + //this is not the component you are looking for +} diff --git a/Directory.Packages.props b/Directory.Packages.props index b2f8d0d844..643b105b76 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -15,7 +15,7 @@ - + diff --git a/Resources/Audio/Effects/attributions.yml b/Resources/Audio/Effects/attributions.yml index 9f85c4fb05..efac498a3b 100644 --- a/Resources/Audio/Effects/attributions.yml +++ b/Resources/Audio/Effects/attributions.yml @@ -258,11 +258,6 @@ source: "https://freesound.org/people/CheChoDj/sounds/609353/" - files: [card_drag.ogg] - copyright: 'created by Tao7891' + copyright: 'created by Tao7891; perryprog (GitHub) downmixed to mono' license: CC0-1.0 source: https://github.com/space-wizards/space-station-14/pull/37363 - -- files: [card_tube_bonk.ogg] - copyright: 'created by Crinkem on Freesound' - license: "CC0-1.0" - source: https://freesound.org/people/Crinkem/sounds/492027/ diff --git a/Resources/Audio/Effects/card_drag.ogg b/Resources/Audio/Effects/card_drag.ogg index 8ecf632e8a..d79309953e 100644 Binary files a/Resources/Audio/Effects/card_drag.ogg and b/Resources/Audio/Effects/card_drag.ogg differ diff --git a/Resources/Audio/Items/Toys/attributions.yml b/Resources/Audio/Items/Toys/attributions.yml index 23caefc0d0..504e5b7ac6 100644 --- a/Resources/Audio/Items/Toys/attributions.yml +++ b/Resources/Audio/Items/Toys/attributions.yml @@ -107,3 +107,9 @@ license: "CC0-1.0" copyright: "Created by Orsoniks, from the game Casualties Unknown" source: "https://orsonik.itch.io/scav-prototype" + +- files: [card_tube_bonk.ogg] + copyright: 'created by Crinkem on Freesound; perryprog (GitHub) downmixed to mono' + license: "CC0-1.0" + source: https://freesound.org/people/Crinkem/sounds/492027/ + diff --git a/Resources/Audio/Items/Toys/card_tube_bonk.ogg b/Resources/Audio/Items/Toys/card_tube_bonk.ogg index b300702c25..de84b852a8 100644 Binary files a/Resources/Audio/Items/Toys/card_tube_bonk.ogg and b/Resources/Audio/Items/Toys/card_tube_bonk.ogg differ diff --git a/Resources/Audio/Voice/Xenoborg/xenoborg_scream.ogg b/Resources/Audio/Voice/Xenoborg/xenoborg_scream.ogg index bc83ec46ff..9ac12637fb 100644 Binary files a/Resources/Audio/Voice/Xenoborg/xenoborg_scream.ogg and b/Resources/Audio/Voice/Xenoborg/xenoborg_scream.ogg differ diff --git a/Resources/Changelog/Admin.yml b/Resources/Changelog/Admin.yml index 988b9038a7..48ce37b2bb 100644 --- a/Resources/Changelog/Admin.yml +++ b/Resources/Changelog/Admin.yml @@ -1330,5 +1330,43 @@ Entries: id: 162 time: '2025-08-08T19:00:41.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/35531 +- author: EmoGarbage404, soutbridge-fur + changes: + - message: A new experimental gamemode "Dynamic" has been added to the voting options + and admin seletion. + type: Add + id: 163 + time: '2025-08-15T14:06:51.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37783 +- author: Samuka + changes: + - message: edited law boards now work correctly + type: Fix + id: 164 + time: '2025-08-19T23:04:24.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39756 +- author: Southbridge + changes: + - message: Added dropdown to every log entry in the admin log viewer with additional + information. + type: Add + - message: Added color-highlighting in the log search to find results. + type: Add + - message: Modified player list searches and the log search to utilize regex instead + of regular string searches. + type: Tweak + id: 165 + time: '2025-08-21T20:12:16.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39130 +- author: slarticodefast + changes: + - message: The 'Delete' button in the objects tab is now a confirm button. + type: Tweak + - message: Fixed the 'Teleport' button in the objects tab not working for stations + and maps. + type: Fix + id: 166 + time: '2025-08-22T22:37:52.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39832 Name: Admin Order: 2 diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 1c96d95537..8ec9854035 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,371 +1,4 @@ Entries: -- author: Blackern5000 - changes: - - message: The mining hardsuit has had it's armor tweaked to be more effective against - fish and less effective against bullets and/or bombs - type: Tweak - id: 8341 - time: '2025-04-25T04:05:29.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31450 -- author: Krzeszny - changes: - - message: Rewrote the controls guide. - type: Tweak - id: 8342 - time: '2025-04-25T04:49:35.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36363 -- author: ScarKy0 - changes: - - message: Interdyne cigs now cost 1TC instead of 2TC. - type: Tweak - id: 8343 - time: '2025-04-25T04:52:20.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36841 -- author: lzk228 - changes: - - message: Seashell is small size. - type: Tweak - id: 8344 - time: '2025-04-25T05:54:49.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32262 -- author: Blackern5000 - changes: - - message: Inaprovaline now heals slower, but lingers in the bloodstream for much - longer, making it much more useful for stabilizing critical patients for an - extended duration rather than outright treating damage. - type: Tweak - id: 8345 - time: '2025-04-25T06:03:04.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32293 -- author: kosticia - changes: - - message: Moths can no longer eat rubber toys. - type: Fix - id: 8346 - time: '2025-04-25T07:20:09.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34543 -- author: chromiumboy - changes: - - message: Gas vent under-pressure lockout releases are now performed using the - right-click menu - a screwdriver is no longer required - type: Tweak - id: 8347 - time: '2025-04-25T07:21:00.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36910 -- author: chromiumboy - changes: - - message: Ghosts will now follow the AI when it activates a holopad or answers - a holo-call - type: Fix - id: 8348 - time: '2025-04-25T10:30:40.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36355 -- author: Radezolid - changes: - - message: Fixed some donuts not counting towards the donuts bounty for cargo. - type: Fix - id: 8349 - time: '2025-04-25T15:07:50.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36903 -- author: Kiri-Yoshikage - changes: - - message: Atomic Bomb cocktail is now mixed in 10u instead of 11. - type: Tweak - id: 8350 - time: '2025-04-25T15:33:14.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36921 -- author: EmoGarbage404 - changes: - - message: Added 3 modkits for the proto-kinetic accelerator, granting increased - damage, range, and fire rate. They can be researched via the new "Kinetic Modifications" - arsenal tech. - type: Add - - message: Reduced damage and range on the proto-kinetic accelerator. - type: Tweak - id: 8351 - time: '2025-04-25T18:18:24.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31247 -- author: Wolfkey-SomeoneElseTookMyUsername - changes: - - message: Added cotton buns, which can be be used for the creation of custom burgers - that can be eaten by moths. - type: Add - id: 8352 - time: '2025-04-26T01:54:14.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36405 -- author: Booblesnoot42 - changes: - - message: Due to a lack of functionality, light-switches have temporarily been - removed from the construction menu. - type: Remove - id: 8353 - time: '2025-04-26T01:54:23.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34664 -- author: OnyxTheBrave - changes: - - message: Cloth is now able to be made in the Sheet-Meister 2000 - type: Add - id: 8354 - time: '2025-04-26T03:22:52.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32676 -- author: SyaoranFox - changes: - - message: Pulse Pistol, Pulse Carbine, and Pulse Rifle now share the same sound - file. - type: Tweak - id: 8355 - time: '2025-04-26T13:36:51.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36952 -- author: RedBookcase - changes: - - message: Various changes to edged weapons, including new storage sprites and new - storage options. - type: Add - id: 8356 - time: '2025-04-26T20:45:08.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36564 -- author: archee1, Beck - changes: - - message: Inflatable walls no longer instantly deconstruct if canceled. - type: Fix - id: 8357 - time: '2025-04-26T20:56:18.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36937 -- author: ScarKy0 - changes: - - message: Deliveries now have a random multiplier added to them, slightly modifying - their earnings. - type: Add - - message: Deliveries now show how many spesos they grant on examine. - type: Tweak - id: 8358 - time: '2025-04-26T21:42:27.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36918 -- author: sowelipililimute - changes: - - message: Medical and security techfab will no longer announce more than five recipes - at once, avoiding chat flooding - type: Tweak - id: 8359 - time: '2025-04-26T21:45:53.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36945 -- author: Nox38 - changes: - - message: Added descriptions for the .30 caliber and weapons. - type: Add - id: 8360 - time: '2025-04-26T21:48:40.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36958 -- author: UpAndLeaves - changes: - - message: The CMO's hardsuit has been redesigned with extra durathread to withstand - zombie bites more effectively. - type: Tweak - id: 8361 - time: '2025-04-26T21:49:01.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36957 -- author: Centronias - changes: - - message: Parcel wrap, purchasable from cargo, which allows you to wrap items in - paper so you can give people surprise gifts... like bombs. - type: Add - id: 8362 - time: '2025-04-26T23:24:25.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34471 -- author: TiniestShark - changes: - - message: Inhand sprites for (most) ammo mags and speedloaders. - type: Add - id: 8363 - time: '2025-04-26T23:36:01.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34235 -- author: UpAndLeaves - changes: - - message: Due to recent budget improvements, science now gets custom bio suit lockers. - type: Add - id: 8364 - time: '2025-04-26T23:45:10.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36929 -- author: ScarKy0 - changes: - - message: Deliveries can now spawn as priority-type! Deliver them within their - time limit to earn a nice speso bonus. - type: Add - id: 8365 - time: '2025-04-27T09:13:52.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36968 -- author: PJB3005 - changes: - - message: SMES and substations now have an (extremely fancy) interface to control - them with. - type: Add - id: 8366 - time: '2025-04-27T11:08:34.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36386 -- author: metalgearsloth - changes: - - message: Tweak mob collision values in line with RMC14. - type: Tweak - id: 8367 - time: '2025-04-27T14:47:18.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36851 -- author: Fildrance - changes: - - message: node scanner now dislplays live artifact info (while in range) after - linking to artifact - type: Tweak - id: 8368 - time: '2025-04-27T15:11:13.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36635 -- author: ArtisticRoomba - changes: - - message: A new Mapping changelog has been added. You can find it in a different - "Mapping" tab under the changelog menu. - type: Add - id: 8369 - time: '2025-04-27T20:15:17.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34848 -- author: ScarKy0 - changes: - - message: Deliveries can now spawn as fragile-type! Deliver them intact to earn - a minor speso bonus. - type: Add - id: 8370 - time: '2025-04-27T23:04:40.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36980 -- author: Bokser815 - changes: - - message: Cargo buy and sell pallets aboard the ATS can no longer be destroyed, - so cargo workers will no longer be unable to perform their job entirely for - the rest of the round. - type: Tweak - id: 8371 - time: '2025-04-28T00:59:54.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34195 -- author: lzk228 - changes: - - message: Shelves don't have whitelists. But still max item size you can fit is - Normal. - type: Tweak - id: 8372 - time: '2025-04-28T01:00:49.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36986 -- author: KingFroozy - changes: - - message: Mime's suits were resprited. - type: Tweak - id: 8373 - time: '2025-04-28T02:40:21.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36702 -- author: Southbridge - changes: - - message: Amber Station - Added Genpop - type: Add - - message: Amber Station - Ensured a lot of doorways had tiles and decals under - them. - type: Tweak - id: 8374 - time: '2025-04-28T06:56:39.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36997 -- author: lzk228 - changes: - - message: Scrubber now will turn on widenet in panic mode. - type: Tweak - id: 8375 - time: '2025-04-28T19:22:05.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37013 -- author: KingFroozy - changes: - - message: Changed the shoulder-length and shoulder-length over eye hairstyles. - type: Tweak - id: 8376 - time: '2025-04-28T21:00:10.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37000 -- author: ScarKy0 - changes: - - message: Cutting mail now correctly cancels when someone drags it away. - type: Fix - id: 8377 - time: '2025-04-28T21:16:14.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37019 -- author: themias - changes: - - message: cable terminals are now visually layered below floors, like other cables - type: Fix - id: 8378 - time: '2025-04-28T23:43:40.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37018 -- author: Vexerot - changes: - - message: Entities that are weightless or in the air are no longer slowed by puddles. - type: Tweak - id: 8379 - time: '2025-04-29T00:24:12.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33299 -- author: themias - changes: - - message: Theatre workers (clown/mime/musician) now have access to the Service - Request Computer - type: Tweak - id: 8380 - time: '2025-04-29T00:26:23.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37003 -- author: Thatonestomf - changes: - - message: Added slugs to both the bulldog and ammo bundle. - type: Add - - message: Slugs are alot more powerful than they were before, now dealing 40 pierce - and 15 structural - type: Tweak - - message: Basic shells now deal structural damage - type: Tweak - id: 8381 - time: '2025-04-29T03:13:01.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33517 -- author: EmoGarbage404 - changes: - - message: Space debris now have a chance for landmines to spawn on them. - type: Add - - message: Adjusted the loot table on space debris to have more useful equipment - and items. - type: Tweak - - message: Round-start space debris now better mimics what the salvage magnet can - pull in. - type: Tweak - - message: Removed round-start space asteroids. - type: Remove - id: 8382 - time: '2025-04-29T03:37:39.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37025 -- author: drakewill-CRL - changes: - - message: You can now see mutations on plants and produce. - type: Tweak - id: 8383 - time: '2025-04-29T04:45:11.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32650 -- author: lzk228 - changes: - - message: When an entity becomes SSD, it will be forced to sleep after 10 minutes. - It can be awakened if no more SSD. - type: Tweak - id: 8384 - time: '2025-04-29T05:24:34.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34039 -- author: TytosB - changes: - - message: adjusted pka damage and range - type: Tweak - id: 8385 - time: '2025-04-29T10:00:56.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37012 -- author: abadaba695 - changes: - - message: Added 15u, 20u, and 30u transfer buttons in the chem master. - type: Add - id: 8386 - time: '2025-04-29T10:24:57.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36995 - author: Thinbug0 changes: - message: Science developed the Push-Horn, capable of pushing people away with @@ -3948,3 +3581,370 @@ id: 8853 time: '2025-08-14T17:32:22.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/39472 +- author: ScholarNZL + changes: + - message: Added IC visibility of "animal organs", e.g "animal lungs" etc, to facilitate + recipe creation. + type: Tweak + id: 8854 + time: '2025-08-15T04:21:51.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39228 +- author: FlipBrooke + changes: + - message: Banana peels and their variants can now be worn as headgear + type: Add + - message: Banana peels will correctly render when selected using chameleon headgear + type: Fix + - message: Banana peels will no longer render as headgear when off a player's head + type: Fix + - message: Banana peels as headgear now correctly displays in the change log + type: Fix + id: 8855 + time: '2025-08-15T05:56:19.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39457 +- author: CoolioDudio + changes: + - message: Added baby and cube hair + type: Add + id: 8856 + time: '2025-08-16T01:50:13.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39680 +- author: CaramelOrdnance + changes: + - message: Lye reagent + type: Add + - message: Recipes for all soap bars + type: Add + id: 8857 + time: '2025-08-16T06:59:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39303 +- author: youtissoum + changes: + - message: The usage delay of the bananium horn is now 3 seconds. + type: Tweak + id: 8858 + time: '2025-08-16T23:04:12.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39674 +- author: august-sun + changes: + - message: Pacifists can now use the practice disabler, practice laser rifle, disabler, + and disabler SMG. + type: Tweak + id: 8859 + time: '2025-08-17T19:25:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37164 +- author: Velcroboy + changes: + - message: Changed hamster crates are now able to be placed on top of tables. + type: Tweak + id: 8860 + time: '2025-08-17T19:30:41.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37953 +- author: psykana + changes: + - message: Ninja now spawns breathing from his gas tank instead of jetpack + type: Fix + id: 8861 + time: '2025-08-18T00:25:26.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35067 +- author: ScarKy0 + changes: + - message: Jump boots can no longer be used when knocked down. + type: Fix + id: 8862 + time: '2025-08-18T12:22:36.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39710 +- author: SlamBamActionman + changes: + - message: Stamina resistance has been removed from cardboard armor and gorillas. + type: Tweak + id: 8863 + time: '2025-08-18T14:33:16.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39727 +- author: SlamBamActionman + changes: + - message: Aiming with the Hristov is now working correctly when using the Separated + Chat HUD mode. + type: Fix + - message: Cursor targetting with the Hristov now correctly selects the target underneath + the cursor. + type: Fix + id: 8864 + time: '2025-08-18T18:22:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35087 +- author: Zokkie + changes: + - message: Lone Operative is now assigned the Solo Antagonist role ingame instead + of the Team Antagonist role. + type: Fix + id: 8865 + time: '2025-08-18T18:57:30.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/36521 +- author: beck-thompson, slarticodefast + changes: + - message: Fixed rebinding keys crashing the client. + type: Fix + id: 8866 + time: '2025-08-18T18:58:30.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39732 +- author: Princess-Cheeseballs + changes: + - message: Being a Lightweight drunk no longer extends your bloodloss + type: Fix + id: 8867 + time: '2025-08-18T20:26:29.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/38678 +- author: SlamBamActionman + changes: + - message: Auto-injector/medipen pop-ups now show the correct identity when injecting + someone else. + type: Fix + id: 8868 + time: '2025-08-18T20:42:41.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39735 +- author: Winkarst-cpu + changes: + - message: Meat spikes got an overhaul. + type: Tweak + id: 8869 + time: '2025-08-19T17:56:36.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/38723 +- author: Princess-Cheeseballs + changes: + - message: You can no longer crawl while weightless. + type: Fix + id: 8870 + time: '2025-08-19T19:18:06.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39099 +- author: Nox38 + changes: + - message: Buffed the Librarian cane sword's damage and price to be more competitive. + Damage 15 -> 17 slash, TC cost 5 -> 3 + type: Tweak + id: 8871 + time: '2025-08-19T20:31:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39586 +- author: Princess-Cheeseballs + changes: + - message: Speed boots no longer affect crawling speed. + type: Remove + - message: Moon boots don't work unless you're standing + type: Tweak + id: 8872 + time: '2025-08-20T11:08:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39648 +- author: Kowlin + changes: + - message: Fixed Syndicate tricky grenades not playing sounds on explosion. + type: Fix + id: 8873 + time: '2025-08-20T23:34:40.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39792 +- author: TrixxedHeart + changes: + - message: Added the Impaired Mobility disability trait which reduces movement speed + unless using a mobility aid such as a cane and increases stand-up time. + type: Add + id: 8874 + time: '2025-08-21T00:43:06.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39398 +- author: TheFlyingSentry + changes: + - message: 'Added a new trait: Hemophilia!' + type: Add + id: 8875 + time: '2025-08-21T01:02:54.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/38224 +- author: DinnerCalzone + changes: + - message: Fixed more grenades not playing sounds on explosion. + type: Fix + id: 8876 + time: '2025-08-22T10:04:29.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39815 +- author: Alkheemist + changes: + - message: Added stencil lettering decals to the spraypainter. + type: Add + id: 8877 + time: '2025-08-22T10:11:07.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39701 +- author: Kittygyat + changes: + - message: Made moths less susceptible to flames and heat. (4x Fire Damage -> 2x + Fire damage) (1.3x heat -> 1.2x heat). + type: Tweak + id: 8878 + time: '2025-08-22T22:08:35.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39672 +- author: JimmyToor + changes: + - message: Fixed only being able to vape with a blocked mouth. + type: Fix + id: 8879 + time: '2025-08-22T22:26:48.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39834 +- author: _miket, RedBookcase + changes: + - message: Added new Derelict Cyborg ghost roles, including the Derelict Engineer, + Janitor, Salvage, Medical, and Assault Cyborg! + type: Add + id: 8880 + time: '2025-08-23T20:32:15.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/38159 +- author: FungiFellow + changes: + - message: Added the Inflatable Module for borgs. + type: Add + id: 8881 + time: '2025-08-23T22:15:28.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35100 +- author: whatston3 + changes: + - message: Lathes now batch items into jobs, which can be moved around in priority + or deleted. + type: Add + id: 8882 + time: '2025-08-24T15:02:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/38624 +- author: Princess-Cheeseballs + changes: + - message: Topicals now correctly scale their self heal time with the damage you + have taken. + type: Fix + id: 8883 + time: '2025-08-25T18:05:55.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39883 +- author: ToastEnjoyer + changes: + - message: Pacifists can no longer use the laser rifle + type: Fix + id: 8884 + time: '2025-08-26T00:44:01.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39891 +- author: GR1231 + changes: + - message: hats on Smile the slime should be correctly displaced + type: Fix + id: 8885 + time: '2025-08-26T00:48:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39824 +- author: perryprog + changes: + - message: Items and borgs can no longer become stuck in mechs. + type: Fix + id: 8886 + time: '2025-08-26T10:29:13.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37942 +- author: beck-thompson + changes: + - message: You can now select no lock when locking syndicate items + type: Tweak + id: 8887 + time: '2025-08-26T14:18:10.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39532 +- author: slarticodefast + changes: + - message: Removed the dynamic game mode from player votes. + type: Tweak + id: 8888 + time: '2025-08-26T19:42:18.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39902 +- author: FungiFellow + changes: + - message: Engiborg can no longer pickup AI lawboards + type: Fix + id: 8889 + time: '2025-08-26T20:59:23.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39730 +- author: beck-thompson + changes: + - message: Locked chameleon storage items can now still be used as storage even + when locked. + type: Fix + id: 8890 + time: '2025-08-26T21:50:19.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39784 +- author: StormyDragon + changes: + - message: Modular Grenades with a chemical payload now correctly wait out their + delay before activating. + type: Tweak + id: 8891 + time: '2025-08-26T22:26:13.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39905 +- author: ToastEnjoyer + changes: + - message: Wizards can no longer teleport to the arrivals terminal + type: Fix + id: 8892 + time: '2025-08-26T23:43:50.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39901 +- author: Hitlinemoss + changes: + - message: Clipboards can now be printed by autolathes. + type: Add + - message: Plastic clipboards have been added for aspiring paperwork enthusiasts. + They can be printed by autolathes or dispensed from the Head of Personnel's + PTech machine. + type: Add + - message: Bureaucracy crates no longer have their folders/clipboards contain paper. + The amount of paper in the crate itself has been increased to compensate. + type: Tweak + - message: Filing cabinets can now contain green folders. + type: Fix + - message: Roles that spawn with a clipboard always have that clipboard contain + exactly three sheets of paper, rather than a random quantity. + type: Fix + - message: CentComm Officials now spawn with a proper CentComm clipboard instead + of a generic black folder. + type: Tweak + id: 8893 + time: '2025-08-27T07:07:33.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37705 +- author: slarticodefast + changes: + - message: Syndicate stealth items now have a selection of tool locks you can choose + from to hide their activation from others. + type: Add + id: 8894 + time: '2025-08-27T14:45:59.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39900 +- author: chromiumboy + changes: + - message: Many station structures and fixtures, such as walls and airlocks, can + now be re-anchored to the floor if they happen to be dislodged by an explosion + or other shenanigans + type: Tweak + id: 8895 + time: '2025-08-27T15:04:39.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39542 +- author: PavlockBlaine03 + changes: + - message: Fixed bug where items would not drop if a dispenser was deconstructed. + type: Fix + id: 8896 + time: '2025-08-27T21:06:51.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39676 +- author: Winkarst-cpu + changes: + - message: Living beings are now vomiting from being irradiated. Also, irradiated + players will see a popup about tasting something metallic. + type: Add + id: 8897 + time: '2025-08-27T21:56:10.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39805 +- author: aada + changes: + - message: Fixed audio mispredict when quick inserting. + type: Fix + id: 8898 + time: '2025-08-28T16:54:06.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39930 +- author: Hitlinemoss + changes: + - message: Descriptions for cardboard weapons have been adjusted. + type: Tweak + id: 8899 + time: '2025-08-28T17:14:44.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39927 diff --git a/Resources/Changelog/Maps.yml b/Resources/Changelog/Maps.yml index 195d7b0e1a..a9b6223ec3 100644 --- a/Resources/Changelog/Maps.yml +++ b/Resources/Changelog/Maps.yml @@ -510,4 +510,75 @@ id: 63 time: '2025-08-11T15:43:47.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/39331 +- author: Steffo99 + changes: + - message: On many stations, fax machines have slightly more consistent names. + type: Tweak + id: 64 + time: '2025-08-17T18:50:57.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39455 +- author: Nox38, ArtisticRoomba + changes: + - message: On Packed, added Genpop and revamped security. + type: Add + - message: On Packed, revamped the north maints area above security. + type: Tweak + - message: On Packed, revamped Science. + type: Tweak + id: 65 + time: '2025-08-17T19:00:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/38339 +- author: beck-thompson + changes: + - message: Removed a lot of mapped gear on the nukie planet and replaced it with + random spawners. + type: Tweak + - message: Two new random spawners with loot for the nukie planet + type: Add + id: 66 + time: '2025-08-18T04:33:37.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39090 +- author: beck-thompson + changes: + - message: Replaced the guaranteed explosives on the infiltrator with a random grenade + spawner and ammo bundle. + type: Tweak + - message: Replaced the guaranteed med spawns on the infiltrator with random med + kit spawners. + type: Tweak + - message: Added a random loot spawner to the infiltrator. + type: Add + id: 67 + time: '2025-08-18T18:22:15.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39091 +- author: M4rchy-S + changes: + - message: On Marathon, fixed the reagent grinder in perma not having power. + type: Fix + id: 68 + time: '2025-08-23T22:48:39.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39801 +- author: F1restar4 + changes: + - message: On Exo, added an atmospherics network monitor console to atmos' front + room + type: Add + id: 69 + time: '2025-08-26T08:32:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39330 +- author: Vortebo + changes: + - message: On Relic, added the prison station. + type: Add + - message: On Relic, Cargo has been removed, along with the trade station. Botany, + the Janitor's closet, and the bar have also been removed. + type: Remove + - message: On Relic, Atmospherics has been relocated, with accompanying pipe adjustments. + The layouts and contents of Engineering, Science, Security, and many individual + rooms have been modified. The cargo shuttle is now a prison shuttle. The arrivals + shuttle now flies in the correct direction. + type: Tweak + id: 70 + time: '2025-08-28T17:40:36.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39215 Order: 1 diff --git a/Resources/Credits/GitHub.txt b/Resources/Credits/GitHub.txt index 814930806c..7c6bca9005 100644 --- a/Resources/Credits/GitHub.txt +++ b/Resources/Credits/GitHub.txt @@ -1 +1 @@ -0leshe, 0tito, 0x6273, 12rabbits, 1337dakota, 13spacemen, 154942, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 3nderall, 4310v343k, 4dplanner, 612git, 778b, 96flo, aaron, abadaba695, Ablankmann, abregado, Absolute-Potato, Absotively, achookh, Acruid, ActiveMammmoth, actually-reb, ada-please, adamsong, Adeinitas, adm2play, Admiral-Obvious-001, adrian, Adrian16199, Ady4ik, Aearo-Deepwater, Aerocrux, Aeshus, Aexolott, Aexxie, africalimedrop, afrokada, AftrLite, AgentSmithRadio, Agoichi, Ahion, aiden, Aidenkrz, Aisu9, ajcm, AJCM-git, AjexRose, Alekshhh, alexalexmax, alexkar598, AlexMorgan3817, alexum418, alexumandxgabriel08x, Alice4267, Alithsko, Alkheemist, alliephante, ALMv1, Alpaccalypse, Alpha-Two, AlphaQwerty, Altoids1, amatwiedle, amylizzle, ancientpower, Andre19926, AndrewEyeke, AndreyCamper, Anzarot121, ApolloVector, Appiah, ar4ill, Arcane-Waffle, archee1, ArchPigeon, ArchRBX, areitpog, Arendian, areyouconfused, arimah, Arkanic, ArkiveDev, armoks, Arteben, ArthurMousatov, ArtisticRoomba, artur, ArZarLordOfMango, as334, AsikKEsel, AsnDen, asperger-sind, aspiringLich, astriloqua, august-sun, AutoOtter, AverageNotDoingAnythingEnjoyer, avghdev, Awlod, AzzyIsNotHere, azzyisnothere, B-Kirill, B3CKDOOR, baa14453, BackeTako, Bakke, BananaFlambe, Baptr0b0t, BarryNorfolk, BasedUser, beck-thompson, beesterman, bellwetherlogic, ben, benbryant0, benev0, benjamin-burges, BGare, bhespiritu, bibbly, BigfootBravo, BIGZi0348, bingojohnson, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, blitzthesquishy, bloodrizer, Bloody2372, blueDev2, Boaz1111, BobdaBiscuit, BobTheSleder, boiled-water-tsar, Bokser815, bolantej, Booblesnoot42, Boolean-Buckeye, botanySupremist, brainfood1183, BramvanZijp, Brandon-Huu, BriBrooo, Bright0, brndd, bryce0110, BubblegumBlue, buletsponge, buntobaggins, bvelliquette, BWTCK, byondfuckery, c0rigin, c4llv07e, CaasGit, Caconym27, Calecute, Callmore, Camdot, capnsockless, CaptainMaru, captainsqrbeard, Carbonhell, Carolyn3114, Carou02, carteblanche4me, catdotjs, catlord, Catofquestionableethics, CatTheSystem, Centronias, Chaboricks, chairbender, Chaoticaa, Charlese2, charlie, chartman, ChaseFlorom, chavonadelal, Cheackraze, CheddaCheez, cheesePizza2, CheesePlated, Chief-Engineer, chillyconmor, christhirtle, chromiumboy, Chronophylos, Chubbicous, Chubbygummibear, Ciac32, ciaran, citrea, civilCornball, claustro305, Clement-O, clyf, Clyybber, CMDR-Piboy314, cnv41, coco, cohanna, Cohnway, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, Compilatron144, CookieMasterT, coolboy911, coolmankid12345, Coolsurf6, cooperwallace, corentt, CormosLemming, CrafterKolyan, crazybrain23, Crazydave91920, creadth, CrigCrag, CroilBird, Crotalus, CrudeWax, cryals, CrzyPotato, cubixthree, cutemoongod, Cyberboss, d34d10cc, DadeKuma, Daemon, daerSeebaer, dahnte, dakamakat, DamianX, dan, dangerrevolution, daniel-cr, DanSAussieITS, Daracke, Darkenson, DawBla, Daxxi3, dch-GH, de0rix, Deahaka, dean, DEATHB4DEFEAT, Deatherd, deathride58, DebugOk, Decappi, Decortex, Deeeeja, deepdarkdepths, DeepwaterCreations, Deerstop, degradka, Delete69, deltanedas, DenisShvalov, DerbyX, derek, dersheppard, Deserty0, Detintinto, DevilishMilk, devinschubert14, dexlerxd, dffdff2423, DieselMohawk, digitalic, Dimastra, DinnerCalzone, DinoWattz, Disp-Dev, DisposableCrewmember42, dissidentbullet, DjfjdfofdjfjD, doc-michael, docnite, Doctor-Cpu, DogZeroX, dolgovmi, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, DR-DOCTOR-EVIL-EVIL, Dragonjspider, dragonryan06, drakewill-CRL, Drayff, dreamlyjack, DrEnzyme, dribblydrone, DrMelon, drongood12, DrSingh, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, DuckManZach, Duddino, dukevanity, duskyjay, Dutch-VanDerLinde, dvir001, dylanstrategie, dylanwhittingham, Dynexust, Easypoller, echo, eclips_e, eden077, EEASAS, Efruit, efzapa, Ekkosangen, ElectroSR, elsie, elthundercloud, Elysium206, Emisse, emmafornash, EmoGarbage404, Endecc, EnrichedCaramel, Entvari, eoineoineoin, ephememory, eris, erohrs2, ERORR404V1, Errant-4, ertanic, esguard, estacaoespacialpirata, eugene, ewokswagger, exincore, exp111, f0x-n3rd, FacePluslll, Fahasor, FairlySadPanda, farrellka-dev, FATFSAAM2, Feluk6174, ficcialfaint, Fiftyllama, Fildrance, FillerVK, FinnishPaladin, firenamefn, Firewars763, FirinMaLazors, Fishfish458, fl-oz, Flareguy, flashgnash, FlipBrooke, FluffiestFloof, FluffMe, FluidRock, flymo5678, foboscheshir, FoLoKe, fooberticus, ForestNoises, forgotmyotheraccount, forkeyboards, forthbridge, Fortune117, foxhorn, freeman2651, freeze2222, frobnic8, Froffy025, Fromoriss, froozigiusz, FrostMando, FrostRibbon, Funce, FungiFellow, FunTust, Futuristic-OK, GalacticChimp, gamer3107, Gamewar360, gansulalan, GaussiArson, Gaxeer, gbasood, gcoremans, Geekyhobo, genderGeometries, GeneralGaws, Genkail, Gentleman-Bird, geraeumig, Ghagliiarghii, Git-Nivrak, githubuser508, gituhabu, GlassEclipse, GnarpGnarp, GNF54, godisdeadLOL, goet, GoldenCan, Goldminermac, Golinth, golubgik, GoodWheatley, Gorox221, gradientvera, graevy, GraniteSidewalk, GreaseMonk, greenrock64, GreyMario, GrownSamoyedDog, GTRsound, gusxyz, Gyrandola, h3half, hamurlik, Hanzdegloker, HappyRoach, Hardly3D, harikattar, he1acdvv, Hebi, Helix-ctrl, helm4142, Henry, HerCoyote23, HighTechPuddle, Hitlinemoss, hiucko, hivehum, Hmeister-fake, Hmeister-real, Hobbitmax, hobnob, HoidC, Holinka4ever, holyssss, HoofedEar, Hoolny, hord-brayden, Hoshizora, Hreno, Hrosts, htmlsystem, hubismal, Hugal31, Huxellberger, Hyenh, hyperb1, hyperDelegate, hyphenationc, i-justuser-i, iaada, iacore, IamVelcroboy, Ian321, icekot8, icesickleone, iczero, iglov, IgorAnt028, igorsaux, ike709, illersaver, Illiux, Ilushkins33, Ilya246, IlyaElDunaev, imatsoup, IMCB, impubbi, imrenq, imweax, indeano, Injazz, Insineer, insoPL, IntegerTempest, Interrobang01, Intoxicating-Innocence, IProduceWidgets, itsmethom, Itzbenz, iztokbajcar, Jackal298, Jackrost, jacksonzck, Jacktastic09, Jackw2As, jacob, jamessimo, janekvap, Jark255, Jarmer123, Jaskanbe, JasperJRoth, jbox144, JCGWE30, jerryimmouse, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JimGamemaster, jimmy12or, JIPDawg, jjtParadox, jkwookee, jmcb, JohnGinnane, johnku1, Jophire, joshepvodka, JpegOfAFrog, jproads, JrInventor05, Jrpl, jukereise, juliangiebel, JustArt1m, JustCone14, justdie12, justin, justintether, JustinTrotter, JustinWinningham, justtne, K-Dynamic, k3yw, Kadeo64, Kaga-404, kaiserbirch, KaiShibaa, kalane15, kalanosh, KamTheSythe, Kanashi-Panda, katzenminer, kbailey-git, Keelin, Keer-Sar, KEEYNy, keikiru, Kelrak, kerisargit, keronshb, KIBORG04, KieueCaprie, Killerqu00, Kimpes, KingFroozy, kira-er, kiri-yoshikage, Kirillcas, Kirus59, Kistras, Kit0vras, KittenColony, Kittygyat, klaypexx, Kmc2000, Ko4ergaPunk, kognise, kokoc9n, komunre, KonstantinAngelov, kontakt, kosticia, koteq, kotobdev, Kowlin, KrasnoshchekovPavel, Krosus777, Krunklehorn, Kupie, kxvvv, kyupolaris, kzhanik, LaCumbiaDelCoronavirus, lajolico, Lamrr, lanedon, LankLTE, laok233, lapatison, larryrussian, lawdog4817, Lazzi0706, leander-0, leonardo-dabepis, leonidussaks, leonsfriedrich, LeoSantich, lettern, LetterN, Level10Cybermancer, LEVELcat, lever1209, LevitatingTree, Lgibb18, lgruthes, LightVillet, liltenhead, linkbro1, linkuyx, Litraxx, little-meow-meow, LittleBuilderJane, LittleNorthStar, LittleNyanCat, lizelive, ljm862, lmsnoise, localcc, lokachop, lolman360, Lomcastar, LordCarve, LordEclipse, lucas, LucasTheDrgn, luckyshotpictures, LudwigVonChesterfield, luizwritescode, Lukasz825700516, luminight, lunarcomets, Lusatia, Luxeator, lvvova1, Lyndomen, lyroth001, lzimann, lzk228, M1tht1c, M3739, M87S, mac6na6na, MACMAN2003, Macoron, magicalus, magmodius, MagnusCrowe, maland1, malchanceux, MaloTV, manelnavola, ManelNavola, Mangohydra, marboww, Markek1, marlyn, matt, Matz05, max, MaxNox7, maylokana, MehimoNemo, MeltedPixel, memeproof, MendaxxDev, Menshin, Mephisto72, MerrytheManokit, Mervill, metalgearsloth, MetalSage, MFMessage, mhamsterr, michaelcu, micheel665, mifia, MilenVolf, MilonPL, Minemoder5000, Minty642, minus1over12, Mirino97, mirrorcult, misandrie, MishaUnity, MissKay1994, MisterImp, MisterMecky, Mith-randalf, Mixelz, mjarduk, MjrLandWhale, mkanke-real, MLGTASTICa, mnva0, moderatelyaware, modern-nm, mokiros, momo, Moneyl, monotheonist, Moomoobeef, moony, Morb0, MossyGreySlope, mr-bo-jangles, Mr0maks, MrFippik, mrrobdemo, muburu, MureixloI, murolem, musicmanvr, MWKane, Myakot, Myctai, N3X15, nabegator, nails-n-tape, Nairodian, Naive817, NakataRin, namespace-Memory, Nannek, NazrinNya, neutrino-laser, NickPowers43, nikitosych, nikthechampiongr, Nimfar11, ninruB, Nirnael, NIXC, nkokic, NkoKirkto, nmajask, noctyrnal, noelkathegod, noirogen, nok-ko, NonchalantNoob, NoobyLegion, Nopey, not-gavnaed, notafet, notquitehadouken, NotSoDana, noudoit, noverd, Nox38, NuclearWinter, nukashimika, nuke-haus, NULL882, nullarmo, nyeogmi, Nylux, Nyranu, Nyxilath, och-och, OctoRocket, OldDanceJacket, OliverOtter, onesch, OneZerooo0, OnyxTheBrave, Orange-Winds, OrangeMoronage9622, Orsoniks, osjarw, Ostaf, othymer, OttoMaticode, Owai-Seek, packmore, paige404, paigemaeforrest, pali6, Palladinium, Pangogie, panzer-iv1, partyaddict, patrikturi, PaulRitter, peccneck, Peptide90, peptron1, perryprog, PeterFuto, PetMudstone, pewter-wiz, pgraycs, Pgriha, Phantom-Lily, pheenty, philingham, Phill101, Phooooooooooooooooooooooooooooooosphate, phunnyguy, PicklOH, PilgrimViis, Pill-U, pinkbat5, Piras314, Pireax, Pissachu, pissdemon, PixeltheAertistContrib, PixelTheKermit, PJB3005, Plasmaguy, plinyvic, Plykiya, poeMota, pofitlo, pointer-to-null, pok27, poklj, PolterTzi, PoorMansDreams, PopGamer45, portfiend, potato1234x, PotentiallyTom, PotRoastPiggy, Princess-Cheeseballs, ProfanedBane, PROG-MohamedDwidar, Prole0, ProPandaBear, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykana, psykzz, PuceTint, pumkin69, PuroSlavKing, PursuitInAshes, Putnam3145, py01, Pyrovi, qrtDaniil, qrwas, Quantum-cross, quatre, QueerNB, QuietlyWhisper, qwerltaz, Radezolid, RadioMull, Radosvik, Radrark, Rainbeon, Rainfey, Raitononai, Ramlik, RamZ, randy10122, Rane, Ranger6012, Rapidgame7, ravage123321, rbertoche, RedBookcase, Redfire1331, Redict, RedlineTriad, redmushie, RednoWCirabrab, ReeZer2, RemberBM, RemieRichards, RemTim, rene-descartes2021, Renlou, retequizzle, rhsvenson, rich-dunne, RieBi, riggleprime, RIKELOLDABOSS, rinary1, Rinkashikachi, riolume, rlebell33, RobbyTheFish, robinthedragon, Rockdtben, Rohesie, rok-povsic, rokudara-sen, rolfero, RomanNovo, rosieposieeee, Roudenn, router, ruddygreat, rumaks, RumiTiger, Ruzihm, S1rFl0, S1ss3l, Saakra, Sadie-silly, saga3152, saintmuntzer, Salex08, sam, samgithubaccount, Samuka-C, SaphireLattice, SapphicOverload, sarahon, sativaleanne, SaveliyM360, sBasalto, ScalyChimp, ScarKy0, schrodinger71, scrato, Scribbles0, scrivoy, scruq445, scuffedjays, ScumbagDog, SeamLesss, Segonist, semensponge, sephtasm, ser1-1y, Serkket, sewerpig, SG6732, sh18rw, Shaddap1, ShadeAware, ShadowCommander, shadowtheprotogen546, shaeone, shampunj, shariathotpatrol, SharkSnake98, shibechef, Siginanto, SignalWalker, siigiil, silicon14wastaken, Simyon264, sirdragooon, Sirionaut, Sk1tch, SkaldetSkaeg, Skarletto, Skrauz, Skybailey-dev, Skyedra, SlamBamActionman, slarticodefast, Slava0135, sleepyyapril, slimmslamm, Slyfox333, Smugman, snebl, snicket, sniperchance, Snowni, snowsignal, SolidusSnek, solstar2, SonicHDC, SoulFN, SoulSloth, Soundwavesghost, soupkilove, southbridge-fur, sowelipililimute, Soydium, spacelizard, SpaceLizardSky, SpaceManiac, SpaceRox1244, SpaceyLady, Spangs04, spanky-spanky, Sparlight, spartak, SpartanKadence, spderman3333, SpeltIncorrectyl, Spessmann, SphiraI, SplinterGP, spoogemonster, sporekto, sporkyz, ssdaniel24, stalengd, stanberytrask, Stanislav4ix, StanTheCarpenter, starbuckss14, Stealthbomber16, stellar-novas, stewie523, stomf, Stop-Signs, stopbreaking, stopka-html, StrawberryMoses, Stray-Pyramid, strO0pwafel, Strol20, StStevens, Subversionary, sunbear-dev, supergdpwyl, superjj18, Supernorn, SweptWasTaken, SyaoranFox, Sybil, SYNCHRONIC, Szunti, t, Tainakov, takemysoult, taonewt, tap, TaralGit, Taran, taurie, Tayrtahn, tday93, teamaki, TeenSarlacc, TekuNut, telyonok, TemporalOroboros, tentekal, terezi4real, Terraspark4941, texcruize, Tezzaide, TGODiamond, TGRCdev, tgrkzus, ThatGuyUSA, ThatOneGoblin25, thatrandomcanadianguy, TheArturZh, TheBlueYowie, thecopbennet, TheCze, TheDarkElites, thedraccx, TheEmber, TheFlyingSentry, TheIntoxicatedCat, thekilk, themias, theomund, TheProNoob678, TherapyGoth, ThereDrD0, TheShuEd, thetolbean, thevinter, TheWaffleJesus, thinbug0, ThunderBear2006, timothyteakettle, TimrodDX, timurjavid, tin-man-tim, TiniestShark, Titian3, tk-a369, tkdrg, tmtmtl30, ToastEnjoyer, Toby222, TokenStyle, Tollhouse, Toly65, tom-leys, tomasalves8, Tomeno, Tonydatguy, topy, tornado-technology, TornadoTechnology, tosatur, TotallyLemon, ToxicSonicFan04, Tr1bute, treytipton, trixxedbit, TrixxedHeart, tropicalhibi, truepaintgit, Truoizys, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, tyashley, Tyler-IN, TytosB, Tyzemol, UbaserB, ubis1, UBlueberry, uhbg, UKNOWH, UltimateJester, Unbelievable-Salmon, underscorex5, UnicornOnLSD, Unisol, unusualcrow, Uriende, UristMcDorf, user424242420, Utmanarn, Vaaankas, valentfingerov, valquaint, Varen, Vasilis, VasilisThePikachu, veliebm, Velken, VelonacepsCalyxEggs, veprolet, VerinSenpai, veritable-calamity, Veritius, Vermidia, vero5123, verslebas, vexerot, viceemargo, VigersRay, violet754, Visne, vitusveit, vlad, vlados1408, VMSolidus, vmzd, voidnull000, volotomite, volundr-, Voomra, Vordenburg, vorkathbruh, Vortebo, vulppine, wafehling, walksanatora, Warentan, WarMechanic, Watermelon914, weaversam8, wertanchik, whateverusername0, whatston3, widgetbeck, Will-Oliver-Br, Willhelm53, WilliamECrew, willicassi, Winkarst-cpu, wirdal, wixoaGit, WlarusFromDaSpace, Wolfkey-SomeoneElseTookMyUsername, wrexbe, WTCWR68, xeri7, xkreksx, xprospero, xRiriq, xsainteer, YanehCheck, yathxyz, Ygg01, YotaXP, youarereadingthis, YoungThugSS14, Yousifb26, youtissoum, yunii, yuriykiss, YuriyKiss, zach-hill, Zadeon, Zalycon, zamp, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zero, ZeroDiamond, ZeWaka, zHonys, zionnBE, ZNixian, Zokkie, ZoldorfTheWizard, zonespace27, Zylofan, Zymem, zzylex +0leshe, 0tito, 0x6273, 12rabbits, 1337dakota, 13spacemen, 154942, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 3nderall, 4310v343k, 4dplanner, 612git, 778b, 96flo, aaron, abadaba695, Ablankmann, abregado, Absolute-Potato, Absotively, achookh, Acruid, ActiveMammmoth, actually-reb, ada-please, adamsong, Adeinitas, adm2play, Admiral-Obvious-001, adrian, Adrian16199, Ady4ik, Aearo-Deepwater, Aerocrux, Aeshus, Aexolott, Aexxie, africalimedrop, afrokada, AftrLite, AgentSmithRadio, Agoichi, Ahion, aiden, Aidenkrz, Aisu9, ajcm, AJCM-git, AjexRose, Alekshhh, alex, alexalexmax, alexkar598, AlexMorgan3817, alexum418, alexumandxgabriel08x, Alice4267, Alithsko, Alkheemist, alliephante, ALMv1, Alpaccalypse, Alpha-Two, AlphaQwerty, Altoids1, amatwiedle, amylizzle, ancientpower, Andre19926, AndrewEyeke, AndreyCamper, Anzarot121, ApolloVector, Appiah, ar4ill, Arcane-Waffle, archee1, ArchPigeon, ArchRBX, areitpog, Arendian, areyouconfused, arimah, Arkanic, ArkiveDev, armoks, Arteben, ArthurMousatov, ArtisticRoomba, artur, Artxmisery, ArZarLordOfMango, as334, AsikKEsel, AsnDen, asperger-sind, aspiringLich, astriloqua, august-sun, AutoOtter, AverageNotDoingAnythingEnjoyer, avghdev, Awlod, azzyisnothere, AzzyIsNotHere, B-Kirill, B3CKDOOR, baa14453, BackeTako, BadaBoomie, Bakke, BananaFlambe, Baptr0b0t, BarryNorfolk, BasedUser, beck-thompson, beesterman, bellwetherlogic, ben, benbryant0, benev0, benjamin-burges, BGare, bhespiritu, bibbly, BigfootBravo, BIGZi0348, bingojohnson, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, blitzthesquishy, bloodrizer, Bloody2372, blueDev2, Boaz1111, BobdaBiscuit, BobTheSleder, boiled-water-tsar, Bokser815, bolantej, Booblesnoot42, Boolean-Buckeye, botanySupremist, brainfood1183, BramvanZijp, Brandon-Huu, BriBrooo, Bright0, brndd, bryce0110, BubblegumBlue, buletsponge, buntobaggins, bvelliquette, BWTCK, byondfuckery, c0rigin, c4llv07e, CaasGit, Caconym27, Calecute, Callmore, Camdot, capnsockless, CaptainMaru, captainsqrbeard, Carbonhell, Carolyn3114, Carou02, carteblanche4me, catdotjs, catlord, Catofquestionableethics, CatTheSystem, Centronias, Chaboricks, chairbender, Chaoticaa, Charlese2, charlie, chartman, ChaseFlorom, chavonadelal, Cheackraze, CheddaCheez, cheesePizza2, CheesePlated, Chief-Engineer, chillyconmor, christhirtle, chromiumboy, Chronophylos, Chubbicous, Chubbygummibear, Ciac32, ciaran, citrea, civilCornball, claustro305, Clement-O, clyf, Clyybber, CMDR-Piboy314, cnv41, coco, cohanna, Cohnway, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, Compilatron144, CookieMasterT, coolboy911, CoolioDudio, coolmankid12345, Coolsurf6, cooperwallace, corentt, CormosLemming, CrafterKolyan, crazybrain23, Crazydave91920, creadth, CrigCrag, CroilBird, Crotalus, CrudeWax, cryals, CrzyPotato, cubixthree, cutemoongod, Cyberboss, d34d10cc, DadeKuma, Daemon, daerSeebaer, dahnte, dakamakat, DamianX, dan, dangerrevolution, daniel-cr, DanSAussieITS, Daracke, Darkenson, DawBla, Daxxi3, dch-GH, de0rix, Deahaka, dean, DEATHB4DEFEAT, Deatherd, deathride58, DebugOk, Decappi, Decortex, Deeeeja, deepdarkdepths, DeepwaterCreations, Deerstop, degradka, Delete69, deltanedas, DenisShvalov, DerbyX, derek, dersheppard, Deserty0, Detintinto, DevilishMilk, devinschubert14, dexlerxd, dffdff2423, DieselMohawk, digitalic, Dimastra, DinnerCalzone, DinoWattz, Disp-Dev, DisposableCrewmember42, dissidentbullet, DjfjdfofdjfjD, doc-michael, docnite, Doctor-Cpu, DogZeroX, dolgovmi, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, DR-DOCTOR-EVIL-EVIL, Dragonjspider, dragonryan06, drakewill-CRL, Drayff, dreamlyjack, DrEnzyme, dribblydrone, DrMelon, drongood12, DrSingh, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, DuckManZach, Duddino, dukevanity, duskyjay, Dutch-VanDerLinde, dvir001, dylanstrategie, dylanwhittingham, Dynexust, Easypoller, echo, eclips_e, eden077, EEASAS, Efruit, efzapa, Ekkosangen, ElectroSR, elsie, elthundercloud, Elysium206, Emisse, emmafornash, EmoGarbage404, Endecc, EnrichedCaramel, Entvari, eoineoineoin, ephememory, eris, erohrs2, ERORR404V1, Errant-4, ertanic, esguard, estacaoespacialpirata, eugene, ewokswagger, exincore, exp111, f0x-n3rd, FacePluslll, Fahasor, FairlySadPanda, farrellka-dev, FATFSAAM2, Feluk6174, ficcialfaint, Fiftyllama, Fildrance, FillerVK, FinnishPaladin, firenamefn, Firewars763, FirinMaLazors, Fishfish458, fl-oz, Flareguy, flashgnash, FlipBrooke, FluffiestFloof, FluffMe, FluidRock, flymo5678, foboscheshir, FoLoKe, fooberticus, ForestNoises, forgotmyotheraccount, forkeyboards, forthbridge, Fortune117, foxhorn, freeman2651, freeze2222, frobnic8, Froffy025, Fromoriss, froozigiusz, FrostMando, FrostRibbon, Funce, FungiFellow, FunTust, Futuristic-OK, GalacticChimp, gamer3107, Gamewar360, gansulalan, GaussiArson, Gaxeer, gbasood, gcoremans, Geekyhobo, genderGeometries, GeneralGaws, Genkail, Gentleman-Bird, geraeumig, Ghagliiarghii, Git-Nivrak, githubuser508, gituhabu, GlassEclipse, GnarpGnarp, GNF54, godisdeadLOL, goet, GoldenCan, Goldminermac, Golinth, golubgik, GoodWheatley, Gorox221, gradientvera, graevy, GraniteSidewalk, GreaseMonk, greenrock64, GreyMario, GrownSamoyedDog, GTRsound, gusxyz, Gyrandola, h3half, hamurlik, Hanzdegloker, HappyRoach, Hardly3D, harikattar, he1acdvv, Hebi, Helix-ctrl, helm4142, Henry, HerCoyote23, HighTechPuddle, Hitlinemoss, hiucko, hivehum, Hmeister-fake, Hmeister-real, Hobbitmax, hobnob, HoidC, Holinka4ever, holyssss, HoofedEar, Hoolny, hord-brayden, Hoshizora, Hreno, Hrosts, htmlsystem, hubismal, Hugal31, Huxellberger, Hyenh, hyperb1, hyperDelegate, hyphenationc, i-justuser-i, iaada, iacore, IamVelcroboy, Ian321, icekot8, icesickleone, iczero, iglov, IgorAnt028, igorsaux, ike709, illersaver, Illiux, Ilushkins33, Ilya246, IlyaElDunaev, imatsoup, IMCB, impubbi, imrenq, imweax, indeano, Injazz, Insineer, insoPL, IntegerTempest, Interrobang01, Intoxicating-Innocence, IProduceWidgets, itsmethom, Itzbenz, iztokbajcar, Jackal298, Jackrost, jacksonzck, Jacktastic09, Jackw2As, jacob, jamessimo, janekvap, Jark255, Jarmer123, Jaskanbe, JasperJRoth, jbox144, JCGWE30, JerryImMouse, jerryimmouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JimGamemaster, jimmy12or, JIPDawg, jjtParadox, jkwookee, jmcb, JohnGinnane, johnku1, Jophire, joshepvodka, JpegOfAFrog, jproads, JrInventor05, Jrpl, jukereise, juliangiebel, JustArt1m, JustCone14, justdie12, justin, justintether, JustinTrotter, JustinWinningham, justtne, K-Dynamic, k3yw, Kadeo64, Kaga-404, kaiserbirch, KaiShibaa, kalane15, kalanosh, KamTheSythe, Kanashi-Panda, katzenminer, kbailey-git, Keelin, Keer-Sar, KEEYNy, keikiru, Kelrak, kerisargit, keronshb, KIBORG04, KieueCaprie, Killerqu00, Kimpes, KingFroozy, kira-er, kiri-yoshikage, Kirillcas, Kirus59, Kistras, Kit0vras, KittenColony, Kittygyat, klaypexx, Kmc2000, Ko4ergaPunk, kognise, kokoc9n, komunre, KonstantinAngelov, kontakt, kosticia, koteq, kotobdev, Kowlin, KrasnoshchekovPavel, Krosus777, Krunklehorn, Kupie, kxvvv, kyupolaris, kzhanik, LaCumbiaDelCoronavirus, lajolico, Lamrr, lanedon, LankLTE, laok233, lapatison, larryrussian, lawdog4817, Lazzi0706, leander-0, leonardo-dabepis, leonidussaks, leonsfriedrich, LeoSantich, lettern, LetterN, Level10Cybermancer, LEVELcat, lever1209, LevitatingTree, Lgibb18, lgruthes, LightVillet, liltenhead, linkbro1, LinkUyx, Litraxx, little-meow-meow, LittleBuilderJane, LittleNorthStar, LittleNyanCat, lizelive, ljm862, lmsnoise, localcc, lokachop, lolman360, Lomcastar, LordCarve, LordEclipse, lucas, LucasTheDrgn, luckyshotpictures, LudwigVonChesterfield, luizwritescode, Lukasz825700516, luminight, lunarcomets, Lusatia, Luxeator, lvvova1, Lyndomen, lyroth001, lzimann, lzk228, M1tht1c, M3739, M4rchy-S, M87S, mac6na6na, MACMAN2003, Macoron, magicalus, magmodius, MagnusCrowe, maland1, malchanceux, MaloTV, manelnavola, ManelNavola, Mangohydra, marboww, Markek1, MarkerWicker, marlyn, matt, Matz05, max, MaxNox7, maylokana, MehimoNemo, MeltedPixel, memeproof, MendaxxDev, Menshin, Mephisto72, MerrytheManokit, Mervill, metalgearsloth, MetalSage, MFMessage, mhamsterr, michaelcu, micheel665, mifia, MilenVolf, MilonPL, Minemoder5000, Minty642, minus1over12, Mirino97, mirrorcult, misandrie, MishaUnity, MissKay1994, MisterImp, MisterMecky, Mith-randalf, Mixelz, mjarduk, MjrLandWhale, mkanke-real, MLGTASTICa, mnva0, moderatelyaware, modern-nm, mokiros, momo, Moneyl, monotheonist, Moomoobeef, moony, Morb0, MossyGreySlope, mr-bo-jangles, Mr0maks, MrFippik, mrrobdemo, muburu, MureixloI, murolem, musicmanvr, MWKane, Myakot, Myctai, N3X15, nabegator, nails-n-tape, Nairodian, Naive817, NakataRin, namespace-Memory, Nannek, NazrinNya, neutrino-laser, NickPowers43, nikitosych, nikthechampiongr, Nimfar11, ninruB, Nirnael, NIXC, nkokic, NkoKirkto, nmajask, noctyrnal, noelkathegod, noirogen, nok-ko, NonchalantNoob, NoobyLegion, Nopey, not-gavnaed, notafet, notquitehadouken, NotSoDana, noudoit, noverd, Nox38, NuclearWinter, nukashimika, nuke-haus, NULL882, nullarmo, nyeogmi, Nylux, Nyranu, Nyxilath, och-och, OctoRocket, OldDanceJacket, OliverOtter, onesch, OneZerooo0, OnyxTheBrave, Orange-Winds, OrangeMoronage9622, Orsoniks, osjarw, Ostaf, othymer, OttoMaticode, Owai-Seek, packmore, paige404, paigemaeforrest, pali6, Palladinium, Pangogie, panzer-iv1, partyaddict, patrikturi, PaulRitter, pavlockblaine03, peccneck, Peptide90, peptron1, perryprog, PeterFuto, PetMudstone, pewter-wiz, pgraycs, PGrayCS, Pgriha, Phantom-Lily, pheenty, philingham, Phill101, Phooooooooooooooooooooooooooooooosphate, phunnyguy, PicklOH, PilgrimViis, Pill-U, pinkbat5, Piras314, Pireax, Pissachu, pissdemon, PixeltheAertistContrib, PixelTheKermit, PJB3005, Plasmaguy, plinyvic, Plykiya, poeMota, pofitlo, pointer-to-null, pok27, poklj, PolterTzi, PoorMansDreams, PopGamer45, portfiend, potato1234x, PotentiallyTom, PotRoastPiggy, Princess-Cheeseballs, ProfanedBane, PROG-MohamedDwidar, Prole0, ProPandaBear, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykana, psykzz, PuceTint, pumkin69, PuroSlavKing, PursuitInAshes, Putnam3145, py01, Pyrovi, qrtDaniil, qrwas, Quantum-cross, quatre, QueerNB, QuietlyWhisper, qwerltaz, Radezolid, RadioMull, Radosvik, Radrark, Rainbeon, Rainfey, Raitononai, Ramlik, RamZ, randy10122, Rane, Ranger6012, Rapidgame7, ravage123321, rbertoche, RedBookcase, Redfire1331, Redict, RedlineTriad, redmushie, RednoWCirabrab, ReeZer2, RemberBM, RemieRichards, RemTim, rene-descartes2021, Renlou, retequizzle, rhsvenson, rich-dunne, RieBi, riggleprime, RIKELOLDABOSS, rinary1, Rinkashikachi, riolume, rlebell33, RobbyTheFish, robinthedragon, Rockdtben, Rohesie, rok-povsic, rokudara-sen, rolfero, RomanNovo, rosieposieeee, Roudenn, router, ruddygreat, rumaks, RumiTiger, Ruzihm, S1rFl0, S1ss3l, Saakra, Sadie-silly, saga3152, saintmuntzer, Salex08, sam, samgithubaccount, Samuka-C, SaphireLattice, SapphicOverload, sarahon, sativaleanne, SaveliyM360, sBasalto, ScalyChimp, ScarKy0, ScholarNZL, schrodinger71, scrato, Scribbles0, scrivoy, scruq445, scuffedjays, ScumbagDog, SeamLesss, Segonist, semensponge, sephtasm, ser1-1y, Serkket, sewerpig, SG6732, sh18rw, Shaddap1, ShadeAware, ShadowCommander, shadowtheprotogen546, shaeone, shampunj, shariathotpatrol, SharkSnake98, shibechef, Siginanto, SignalWalker, siigiil, silicon14wastaken, Simyon264, sirdragooon, Sirionaut, Sk1tch, SkaldetSkaeg, Skarletto, Skrauz, Skybailey-dev, Skyedra, SlamBamActionman, slarticodefast, Slava0135, sleepyyapril, slimmslamm, Slyfox333, Smugman, snebl, snicket, sniperchance, Snowni, snowsignal, SolidSyn, SolidusSnek, solstar2, SonicHDC, SoulFN, SoulSloth, Soundwavesghost, soupkilove, southbridge-fur, sowelipililimute, Soydium, spacelizard, SpaceLizardSky, SpaceManiac, SpaceRox1244, SpaceyLady, Spangs04, spanky-spanky, Sparlight, spartak, SpartanKadence, spderman3333, SpeltIncorrectyl, Spessmann, SphiraI, SplinterGP, spoogemonster, sporekto, sporkyz, ssdaniel24, stalengd, stanberytrask, Stanislav4ix, StanTheCarpenter, starbuckss14, Stealthbomber16, stellar-novas, stewie523, stomf, Stop-Signs, stopbreaking, stopka-html, StrawberryMoses, Stray-Pyramid, strO0pwafel, Strol20, StStevens, Subversionary, sunbear-dev, supergdpwyl, superjj18, Supernorn, SweptWasTaken, SyaoranFox, Sybil, SYNCHRONIC, Szunti, t, Tainakov, takemysoult, taonewt, tap, TaralGit, Taran, taurie, Tayrtahn, tday93, teamaki, TeenSarlacc, TekuNut, telyonok, TemporalOroboros, tentekal, terezi4real, Terraspark4941, texcruize, Tezzaide, TGODiamond, TGRCdev, tgrkzus, ThatGuyUSA, ThatOneGoblin25, thatrandomcanadianguy, TheArturZh, TheBlueYowie, thecopbennet, TheCze, TheDarkElites, thedraccx, TheEmber, TheFlyingSentry, TheIntoxicatedCat, thekilk, themias, theomund, TheProNoob678, TherapyGoth, ThereDrD0, TheShuEd, thetolbean, thevinter, TheWaffleJesus, thinbug0, ThunderBear2006, timothyteakettle, TimrodDX, timurjavid, tin-man-tim, TiniestShark, Titian3, tk-a369, tkdrg, tmtmtl30, ToastEnjoyer, Toby222, TokenStyle, Tollhouse, Toly65, tom-leys, tomasalves8, Tomeno, Tonydatguy, topy, tornado-technology, TornadoTechnology, tosatur, TotallyLemon, ToxicSonicFan04, Tr1bute, treytipton, trixxedbit, TrixxedHeart, tropicalhibi, truepaintgit, Truoizys, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, tyashley, Tyler-IN, TytosB, Tyzemol, UbaserB, ubis1, UBlueberry, uhbg, UKNOWH, UltimateJester, Unbelievable-Salmon, underscorex5, UnicornOnLSD, Unisol, unusualcrow, Uriende, UristMcDorf, user424242420, Utmanarn, Vaaankas, valentfingerov, valquaint, Varen, Vasilis, VasilisThePikachu, veliebm, Velken, VelonacepsCalyxEggs, veprolet, VerinSenpai, veritable-calamity, Veritius, Vermidia, vero5123, verslebas, vexerot, viceemargo, VigersRay, violet754, Visne, vitusveit, vlad, vlados1408, VMSolidus, vmzd, voidnull000, volotomite, volundr-, Voomra, Vordenburg, vorkathbruh, Vortebo, vulppine, wafehling, walksanatora, Warentan, WarMechanic, Watermelon914, weaversam8, wertanchik, whateverusername0, whatston3, widgetbeck, Will-Oliver-Br, Willhelm53, WilliamECrew, willicassi, Winkarst-cpu, wirdal, wixoaGit, WlarusFromDaSpace, Wolfkey-SomeoneElseTookMyUsername, wrexbe, wtcwr68, xeri7, xkreksx, xprospero, xRiriq, xsainteer, YanehCheck, yathxyz, Ygg01, YotaXP, youarereadingthis, YoungThugSS14, Yousifb26, youtissoum, yunii, yuriykiss, YuriyKiss, zach-hill, Zadeon, Zalycon, zamp, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zero, ZeroDiamond, ZeWaka, zHonys, zionnBE, ZNixian, Zokkie, ZoldorfTheWizard, zonespace27, Zylofan, Zymem, zzylex diff --git a/Resources/Locale/en-US/accessories/human-hair.ftl b/Resources/Locale/en-US/accessories/human-hair.ftl index 7754d772a5..50d2b2790e 100644 --- a/Resources/Locale/en-US/accessories/human-hair.ftl +++ b/Resources/Locale/en-US/accessories/human-hair.ftl @@ -2,6 +2,7 @@ marking-HumanHairAfro = Afro marking-HumanHairAfro2 = Afro 2 marking-HumanHairBigafro = Afro (Large) marking-HumanHairAntenna = Ahoge +marking-HumanHairBaby = Baby marking-HumanHairBalding = Balding Hair marking-HumanHairBedhead = Bedhead marking-HumanHairBedheadv2 = Bedhead 2 @@ -59,6 +60,7 @@ marking-HumanHairCornrowbraid = Cornrow Braid marking-HumanHairCornrowtail = Cornrow Tail marking-HumanHairCrewcut = Crewcut marking-HumanHairCrewcut2 = Crewcut 2 +marking-HumanHairCube = Cube marking-HumanHairCurls = Curls marking-HumanHairC = Cut Hair marking-HumanHairDandypompadour = Dandy Pompadour diff --git a/Resources/Locale/en-US/changeling/changeling.ftl b/Resources/Locale/en-US/changeling/changeling.ftl index d304385848..57ad3550bf 100644 --- a/Resources/Locale/en-US/changeling/changeling.ftl +++ b/Resources/Locale/en-US/changeling/changeling.ftl @@ -2,7 +2,7 @@ roles-antag-changeling-objective = A intelligent predator that assumes the identities of its victims. changeling-devour-attempt-failed-rotting = This corpse has only rotted biomass. -changeling-devour-attempt-failed-protected = This victim's biomass is protected. +changeling-devour-attempt-failed-protected = This victim's biomass is protected by armor! changeling-devour-begin-windup-self = Our uncanny mouth reveals itself with otherworldly hunger. changeling-devour-begin-windup-others = { CAPITALIZE(POSS-ADJ($user)) } uncanny mouth reveals itself with otherworldly hunger. diff --git a/Resources/Locale/en-US/chemistry/components/hypospray-component.ftl b/Resources/Locale/en-US/chemistry/components/hypospray-component.ftl index 96ebaa3ed0..36d229e78f 100644 --- a/Resources/Locale/en-US/chemistry/components/hypospray-component.ftl +++ b/Resources/Locale/en-US/chemistry/components/hypospray-component.ftl @@ -8,7 +8,7 @@ hypospray-volume-label = Volume: [color=white]{$currentVolume}/{$totalVolume}u[/ ## Entity -hypospray-component-inject-other-message = You inject {$other}. +hypospray-component-inject-other-message = You inject {THE($other)}. hypospray-component-inject-self-message = You inject yourself. hypospray-component-empty-message = Nothing to inject. hypospray-component-feel-prick-message = You feel a tiny prick! diff --git a/Resources/Locale/en-US/commands/toolshed-commands.ftl b/Resources/Locale/en-US/commands/toolshed-commands.ftl index cc5c03d52b..33bf53f9e3 100644 --- a/Resources/Locale/en-US/commands/toolshed-commands.ftl +++ b/Resources/Locale/en-US/commands/toolshed-commands.ftl @@ -106,3 +106,19 @@ command-description-scale-multiplyvector = Multiply an entity's sprite size with a certain 2d vector (without changing its fixture). command-description-scale-multiplywithfixture = Multiply an entity's sprite size with a certain factor (including its fixture). +command-description-dynamicrule-list = + Lists all currently active dynamic rules, usually this is just one. +command-description-dynamicrule-get = + Gets the currently active dynamic rule. +command-description-dynamicrule-budget = + Gets the current budget of the piped dynamic rule(s). +command-description-dynamicrule-adjust = + Adjusts the budget of the piped dynamic rule(s) by the specified amount. +command-description-dynamicrule-set = + Sets the budget of the piped dynamic rule(s) to the specified amount. +command-description-dynamicrule-dryrun = + Returns a list of rules that could be activated if the rule ran at this moment with all current context. This is not a complete list of every single rule that could be run, just a sample of the current valid ones. +command-description-dynamicrule-executenow = + Executes the piped dynamic rule as if it had reached its regular update time. +command-description-dynamicrule-rules = + Gets a list of all the rules spawned by the piped dynamic rule. diff --git a/Resources/Locale/en-US/damage/radiation.ftl b/Resources/Locale/en-US/damage/radiation.ftl new file mode 100644 index 0000000000..bfe32fa9bb --- /dev/null +++ b/Resources/Locale/en-US/damage/radiation.ftl @@ -0,0 +1 @@ +mouth-taste-metal = You taste something metallic in your mouth! diff --git a/Resources/Locale/en-US/engineering/inflatables.ftl b/Resources/Locale/en-US/engineering/inflatables.ftl new file mode 100644 index 0000000000..0c4a2d44c0 --- /dev/null +++ b/Resources/Locale/en-US/engineering/inflatables.ftl @@ -0,0 +1 @@ +inflatable-safe-disassembly = You expertly use { THE($item) } to open the valve on { THE($target) }, and start deflating { OBJECT($target) } without causing damage. diff --git a/Resources/Locale/en-US/game-ticking/game-presets/preset-secret.ftl b/Resources/Locale/en-US/game-ticking/game-presets/preset-secret.ftl index 892e5c3994..2551b0073d 100644 --- a/Resources/Locale/en-US/game-ticking/game-presets/preset-secret.ftl +++ b/Resources/Locale/en-US/game-ticking/game-presets/preset-secret.ftl @@ -1,2 +1,5 @@ secret-title = Secret secret-description = It's a secret to everyone. The threats you encounter are randomized. + +dynamic-title = Dynamic +dynamic-description = No one knows what's coming. You can encounter any number of threats. diff --git a/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl b/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl index ce52b88655..a578adf82b 100644 --- a/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl +++ b/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl @@ -244,9 +244,24 @@ ghost-role-information-syndicate-cyborg-assault-name = Syndicate Assault Cyborg ghost-role-information-syndicate-cyborg-saboteur-name = Syndicate Saboteur Cyborg ghost-role-information-syndicate-cyborg-description = The Syndicate needs reinforcements. You, a cold silicon killing machine, will help them. -ghost-role-information-derelict-cyborg-name = Derelict Cyborg +ghost-role-information-derelict-engineering-cyborg-name = Derelict Engineer Cyborg +ghost-role-information-derelict-engineering-cyborg-description = You are an engineer cyborg that got lost in space. After years of exposure to ion storms you find yourself near a space station. + +ghost-role-information-derelict-cyborg-name = Derelict Generic Cyborg ghost-role-information-derelict-cyborg-description = You are a regular cyborg that got lost in space. After years of exposure to ion storms you find yourself near a space station. +ghost-role-information-derelict-janitor-cyborg-name = Derelict Janitor Cyborg +ghost-role-information-derelict-janitor-cyborg-description = You are a janitor cyborg that got lost in space. After years of exposure to ion storms you find yourself near a space station. + +ghost-role-information-derelict-medical-cyborg-name = Derelict Medical Cyborg +ghost-role-information-derelict-medical-cyborg-description = You are a medical cyborg that got lost in space. After years of exposure to ion storms you find yourself near a space station. + +ghost-role-information-derelict-mining-cyborg-name = Derelict Salvage Cyborg +ghost-role-information-derelict-mining-cyborg-description = You are a salvage cyborg that got lost in space. After years of exposure to ion storms you find yourself near a space station. + +ghost-role-information-derelict-syndicate-assault-cyborg-name = Derelict Syndicate Assault Cyborg +ghost-role-information-derelict-syndicate-assault-cyborg-description = You are an early model syndicate assault cyborg that got lost in space. After years of exposure to ion storms you find yourself near a space station. + ghost-role-information-security-name = Security ghost-role-information-security-description = You are part of a security task force, but seem to have found yourself in a strange situation... diff --git a/Resources/Locale/en-US/jump-ability/jump-ability.ftl b/Resources/Locale/en-US/jump-ability/jump-ability.ftl new file mode 100644 index 0000000000..a9737455a3 --- /dev/null +++ b/Resources/Locale/en-US/jump-ability/jump-ability.ftl @@ -0,0 +1 @@ +jump-ability-failure = You cannot jump right now. diff --git a/Resources/Locale/en-US/kitchen/components/kitchen-spike-component.ftl b/Resources/Locale/en-US/kitchen/components/kitchen-spike-component.ftl index aa555b24ae..b620fdff8c 100644 --- a/Resources/Locale/en-US/kitchen/components/kitchen-spike-component.ftl +++ b/Resources/Locale/en-US/kitchen/components/kitchen-spike-component.ftl @@ -1,18 +1,37 @@ -comp-kitchen-spike-deny-collect = { CAPITALIZE(THE($this)) } already has something on it, finish collecting its meat first! -comp-kitchen-spike-deny-butcher = { CAPITALIZE(THE($victim)) } can't be butchered on { THE($this) }. -comp-kitchen-spike-deny-butcher-knife = { CAPITALIZE(THE($victim)) } can't be butchered on { THE($this) }, you need to butcher it using a knife. -comp-kitchen-spike-deny-not-dead = { CAPITALIZE(THE($victim)) } can't be butchered. { CAPITALIZE(SUBJECT($victim)) } { CONJUGATE-BE($victim) } is not dead! +comp-kitchen-spike-begin-hook-self = You begin dragging yourself onto { THE($hook) }! +comp-kitchen-spike-begin-hook-self-other = { CAPITALIZE(THE($victim)) } begins dragging { REFLEXIVE($victim) } onto { THE($hook) }! -comp-kitchen-spike-begin-hook-victim = { CAPITALIZE(THE($user)) } begins dragging you onto { THE($this) }! -comp-kitchen-spike-begin-hook-self = You begin dragging yourself onto { THE($this) }! +comp-kitchen-spike-begin-hook-other-self = You begin dragging { CAPITALIZE(THE($victim)) } onto { THE($hook) }! +comp-kitchen-spike-begin-hook-other = { CAPITALIZE(THE($user)) } begins dragging { CAPITALIZE(THE($victim)) } onto { THE($hook) }!a -comp-kitchen-spike-kill = { CAPITALIZE(THE($user)) } has forced { THE($victim) } onto { THE($this) }, killing { OBJECT($victim) } instantly! +comp-kitchen-spike-hook-self = You threw yourself on { THE($hook) }! +comp-kitchen-spike-hook-self-other = { CAPITALIZE(THE($victim)) } threw { REFLEXIVE($victim) } on { THE($hook) }! -comp-kitchen-spike-suicide-other = { CAPITALIZE(THE($victim)) } threw { REFLEXIVE($victim) } on { THE($this) }! -comp-kitchen-spike-suicide-self = You throw yourself on { THE($this) }! +comp-kitchen-spike-hook-other-self = You threw { CAPITALIZE(THE($victim)) } on { THE($hook) }! +comp-kitchen-spike-hook-other = { CAPITALIZE(THE($user)) } threw { CAPITALIZE(THE($victim)) } on { THE($hook) }! -comp-kitchen-spike-knife-needed = You need a knife to do this. -comp-kitchen-spike-remove-meat = You remove some meat from { THE($victim) }. -comp-kitchen-spike-remove-meat-last = You remove the last piece of meat from { THE($victim) }! +comp-kitchen-spike-begin-unhook-self = You begin dragging yourself off { THE($hook) }! +comp-kitchen-spike-begin-unhook-self-other = { CAPITALIZE(THE($victim)) } begins dragging { REFLEXIVE($victim) } off { THE($hook) }! + +comp-kitchen-spike-begin-unhook-other-self = You begin dragging { CAPITALIZE(THE($victim)) } off { THE($hook) }! +comp-kitchen-spike-begin-unhook-other = { CAPITALIZE(THE($user)) } begins dragging { CAPITALIZE(THE($victim)) } off { THE($hook) }! + +comp-kitchen-spike-unhook-self = You got yourself off { THE($hook) }! +comp-kitchen-spike-unhook-self-other = { CAPITALIZE(THE($victim)) } got { REFLEXIVE($victim) } off { THE($hook) }! + +comp-kitchen-spike-unhook-other-self = You got { CAPITALIZE(THE($victim)) } off { THE($hook) }! +comp-kitchen-spike-unhook-other = { CAPITALIZE(THE($user)) } got { CAPITALIZE(THE($victim)) } off { THE($hook) }! + +comp-kitchen-spike-begin-butcher-self = You begin butchering { THE($victim) }! +comp-kitchen-spike-begin-butcher = { CAPITALIZE(THE($user)) } begins to butcher { THE($victim) }! + +comp-kitchen-spike-butcher-self = You butchered { THE($victim) }! +comp-kitchen-spike-butcher = { CAPITALIZE(THE($user)) } butchered { THE($victim) }! + +comp-kitchen-spike-unhook-verb = Unhook + +comp-kitchen-spike-hooked = [color=red]{ CAPITALIZE(THE($victim)) } is on this spike![/color] comp-kitchen-spike-meat-name = { $name } ({ $victim }) + +comp-kitchen-spike-victim-examine = [color=orange]{ CAPITALIZE(SUBJECT($target)) } looks quite lean.[/color] diff --git a/Resources/Locale/en-US/lathe/ui/lathe-menu.ftl b/Resources/Locale/en-US/lathe/ui/lathe-menu.ftl index 076a70447c..c04c095162 100644 --- a/Resources/Locale/en-US/lathe/ui/lathe-menu.ftl +++ b/Resources/Locale/en-US/lathe/ui/lathe-menu.ftl @@ -29,3 +29,9 @@ lathe-menu-silo-linked-message = Silo Linked lathe-menu-fabricating-message = Fabricating... lathe-menu-materials-title = Materials lathe-menu-queue-title = Build Queue +lathe-menu-delete-fabricating-tooltip = Cancel printing the current item. +lathe-menu-delete-item-tooltip = Cancel printing this batch. +lathe-menu-move-up-tooltip = Move this batch ahead in the queue. +lathe-menu-move-down-tooltip = Move this batch back in the queue. +lathe-menu-item-single = {$index}. {$name} +lathe-menu-item-batch = {$index}. {$name} ({$printed}/{$total}) diff --git a/Resources/Locale/en-US/locks/selectable-locks.ftl b/Resources/Locale/en-US/locks/selectable-locks.ftl new file mode 100644 index 0000000000..574e784dd7 --- /dev/null +++ b/Resources/Locale/en-US/locks/selectable-locks.ftl @@ -0,0 +1,16 @@ +selectable-lock-verb-category-name = Add lock + +selectable-lock-no-lock-verb = No lock +selectable-lock-no-lock-popup = No lock has been added to {THE($target)}. + +selectable-lock-voice-verb = Voice Lock +selectable-lock-voice-popup = A voice lock has been added to {THE($target)}. + +selectable-lock-tool-prying-verb = Tool Lock (Crowbar) +selectable-lock-tool-prying-popup = A prying tool lock has been added to {THE($target)}. + +selectable-lock-tool-screwing-verb = Tool Lock (Screwdriver) +selectable-lock-tool-screwing-popup = A screwing tool lock has been added to {THE($target)}. + +selectable-lock-tool-cutting-verb = Tool Lock (Wirecutter) +selectable-lock-tool-cutting-popup = A cutting tool lock has been added to {THE($target)}. diff --git a/Resources/Locale/en-US/reagents/meta/chemicals.ftl b/Resources/Locale/en-US/reagents/meta/chemicals.ftl index f5dfec7d6a..eca057c9ac 100644 --- a/Resources/Locale/en-US/reagents/meta/chemicals.ftl +++ b/Resources/Locale/en-US/reagents/meta/chemicals.ftl @@ -33,3 +33,6 @@ reagent-desc-cellulose = A crystaline polydextrose polymer, plants swear by this reagent-name-rororium = rororium reagent-desc-rororium = A strange substance which fills the cores of the hivelords that roam the mining asteroid. Thought to be the source of their regenerative powers. + +reagent-name-lye = lye +reagent-desc-lye = A translucent, orange, alkaline solution used in traditional soap production. diff --git a/Resources/Locale/en-US/robotics/borg_modules.ftl b/Resources/Locale/en-US/robotics/borg_modules.ftl index b6c55447e7..ba5ee602a5 100644 --- a/Resources/Locale/en-US/robotics/borg_modules.ftl +++ b/Resources/Locale/en-US/robotics/borg_modules.ftl @@ -10,3 +10,5 @@ borg-slot-documents-empty = Books and papers borg-slot-soap-empty = Soap borg-slot-instruments-empty = Instruments borg-slot-beakers-empty = Beakers +borg-slot-inflatable-door-empty = Inflatable Door +borg-slot-inflatable-wall-empty = Inflatable Wall diff --git a/Resources/Locale/en-US/selectable-component/selectable-component.ftl b/Resources/Locale/en-US/selectable-component/selectable-component.ftl new file mode 100644 index 0000000000..f30c499f76 --- /dev/null +++ b/Resources/Locale/en-US/selectable-component/selectable-component.ftl @@ -0,0 +1 @@ +selectable-component-adder-category-name = Add feature diff --git a/Resources/Locale/en-US/stack/stacks.ftl b/Resources/Locale/en-US/stack/stacks.ftl index d83825b614..818ac954c5 100644 --- a/Resources/Locale/en-US/stack/stacks.ftl +++ b/Resources/Locale/en-US/stack/stacks.ftl @@ -234,6 +234,7 @@ stack-asteroid-astro-sand-floor = asteroid astro-sand floor stack-xeno-floor = xeno floor stack-xeno-steel = xeno steel tile stack-xeno-steel-corner = xeno steel corner tile +stack-xenoborg = xenoborg tile stack-xeno-maint = xeno techmaint stack-dark-squiggly = dark steel squiggly tile stack-white-marble-floor = white marble floor diff --git a/Resources/Locale/en-US/tiles/tiles.ftl b/Resources/Locale/en-US/tiles/tiles.ftl index dfb8ff8018..21c30f4300 100644 --- a/Resources/Locale/en-US/tiles/tiles.ftl +++ b/Resources/Locale/en-US/tiles/tiles.ftl @@ -139,6 +139,7 @@ tiles-xeno-floor = xeno floor tiles-xeno-steel = xeno steel tile tiles-xeno-steel-corner = xeno steel corner tile tiles-xeno-maint = xeno techmaint +tiles-xenoborg-floor = xenoborg tile tiles-dark-squiggly = dark steel squiggly tile tiles-white-marble = white marble tile tiles-dark-marble = dark marble tile diff --git a/Resources/Locale/en-US/traits/traits.ftl b/Resources/Locale/en-US/traits/traits.ftl index d7ab6ca76a..3895ce162d 100644 --- a/Resources/Locale/en-US/traits/traits.ftl +++ b/Resources/Locale/en-US/traits/traits.ftl @@ -65,3 +65,9 @@ trait-spanish-desc = Hola señor, donde esta la biblioteca. trait-painnumbness-name = Numb trait-painnumbness-desc = You lack any sense of feeling pain, being unaware of how hurt you may be. + +trait-hemophilia-name = Hemophilia +trait-hemophilia-desc = Your body fails to make blood clots. + +trait-impaired-mobility-name = Impaired Mobility +trait-impaired-mobility-desc = You have difficulty moving without a mobility aid. diff --git a/Resources/Maps/Misc/terminal.yml b/Resources/Maps/Misc/terminal.yml index 8ca17b4ebc..68897953f7 100644 --- a/Resources/Maps/Misc/terminal.yml +++ b/Resources/Maps/Misc/terminal.yml @@ -1,9 +1,21 @@ meta: - format: 6 - postmapinit: false + format: 7 + category: Grid + engineVersion: 266.0.0 + forkId: "" + forkVersion: "" + time: 08/31/2025 17:07:54 + entityCount: 935 +maps: [] +grids: +- 818 +orphans: +- 818 +nullspace: [] tilemap: 0: Space 7: FloorAsteroidSand + 1: FloorAstroAsteroidSandBorderless 29: FloorDark 38: FloorDarkPlastic 47: FloorGrass @@ -27,28 +39,28 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAeQAAAAAAHQAAAAAAWQAAAAAAHQAAAAADBwAAAAAAHQAAAAABWQAAAAACHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABWQAAAAADHQAAAAAABwAAAAAAHQAAAAAAWQAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABWQAAAAACHQAAAAADBwAAAAAAHQAAAAABWQAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACWQAAAAAAHQAAAAAABwAAAAAAHQAAAAABWQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADTAAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACTAAAAAAAWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAATAAAAAAAWQAAAAACWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAAATAAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAABAAAAAAAAeQAAAAAAHQAAAAABWQAAAAABWQAAAAABTAAAAAAAWQAAAAAATAAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAD - version: 6 + tiles: AAAAAAAAAHkAAAAAAAAdAAAAAAEAWQAAAAACAB0AAAAAAgABAAAAAAAAHQAAAAABAFkAAAAAAwAdAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAHQAAAAADAFkAAAAAAgAdAAAAAAMAAQAAAAAAAB0AAAAAAgBZAAAAAAEAHQAAAAACAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAB0AAAAAAgBZAAAAAAMAHQAAAAADAAEAAAAAAAAdAAAAAAAAWQAAAAADAB0AAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAdAAAAAAAAWQAAAAACAB0AAAAAAgABAAAAAAAAHQAAAAACAFkAAAAAAQAdAAAAAAIAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAEAWQAAAAABAFkAAAAAAQBZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABpAAAAAAAAeQAAAAAAAGkAAAAAAABZAAAAAAMAWQAAAAAAAEwAAAAAAgBZAAAAAAEAWQAAAAAAAGkAAAAAAAB5AAAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAIAWQAAAAADAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAIATAAAAAADAFkAAAAAAwBZAAAAAAMAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAgBMAAAAAAAAWQAAAAAAAFkAAAAAAwB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAEAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAdAAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAMAWQAAAAADAFkAAAAAAwBZAAAAAAIAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAHQAAAAACAFkAAAAAAABZAAAAAAMATAAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeQAAAAAAAB0AAAAAAgBZAAAAAAIAWQAAAAABAFkAAAAAAQBZAAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAgBZAAAAAAEAAAAAAAAAAHkAAAAAAAAdAAAAAAAAWQAAAAACAFkAAAAAAwBMAAAAAAMAWQAAAAABAEwAAAAAAQBZAAAAAAIAWQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAABZAAAAAAEAWQAAAAADAA== + version: 7 0,0: ind: 0,0 - tiles: WQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAATQAAAAAAaAAAAAAAaAAAAAAAaQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: WQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAADAFkAAAAAAQBZAAAAAAMAWQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAMAWQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAIAeQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAACAFkAAAAAAQBZAAAAAAMAWQAAAAADAFkAAAAAAwB5AAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAgBZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAAAC8AAAAAAAB5AAAAAAAAaQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAACAFkAAAAAAABZAAAAAAEAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC8AAAAAAAAvAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvAAAAAAAALwAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAATQAAAAAAAGgAAAAAAABoAAAAAAAAaQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADWQAAAAABHQAAAAAABwAAAAAAHQAAAAABWQAAAAACHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACWQAAAAACHQAAAAAABwAAAAAAHQAAAAACWQAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAWQAAAAABHQAAAAADBwAAAAAAHQAAAAABWQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADWQAAAAADHQAAAAACBwAAAAAAHQAAAAADWQAAAAACHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACTAAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAAATAAAAAAAWQAAAAABWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAATAAAAAAAWQAAAAADWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAHQAAAAAAAFkAAAAAAwAdAAAAAAIAAQAAAAAAAB0AAAAAAgBZAAAAAAMAHQAAAAADAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAB0AAAAAAgBZAAAAAAAAHQAAAAABAAEAAAAAAAAdAAAAAAIAWQAAAAACAB0AAAAAAQB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAdAAAAAAMAWQAAAAADAB0AAAAAAAABAAAAAAAAHQAAAAAAAFkAAAAAAQAdAAAAAAEAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAHQAAAAABAFkAAAAAAQAdAAAAAAEAAQAAAAAAAB0AAAAAAgBZAAAAAAMAHQAAAAABAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAQBZAAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAAHkAAAAAAABpAAAAAAAAWQAAAAAAAFkAAAAAAQBMAAAAAAAAWQAAAAADAFkAAAAAAQBpAAAAAAAAeQAAAAAAAGkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAwBZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAACAEwAAAAAAgBZAAAAAAAAWQAAAAACAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAgBZAAAAAAAAWQAAAAABAFkAAAAAAQB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAMATAAAAAAAAFkAAAAAAwBZAAAAAAMAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAABAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAgBZAAAAAAMAWQAAAAADAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAwB5AAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAADAFkAAAAAAQBZAAAAAAAAWQAAAAACAFkAAAAAAgBZAAAAAAIAeQAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACAFkAAAAAAQBZAAAAAAEAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAwBZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAABAHkAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,0: ind: -1,0 - tiles: AAAAAAAAeQAAAAAAHQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAADAAAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAADHQAAAAACHQAAAAABHQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAHkAAAAAAAAdAAAAAAMAWQAAAAADAFkAAAAAAQBZAAAAAAIAWQAAAAACAFkAAAAAAQBZAAAAAAIAWQAAAAACAFkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAABZAAAAAAMAWQAAAAABAAAAAAAAAAB5AAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAIAHQAAAAABAB0AAAAAAwAdAAAAAAAAHQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAACAFkAAAAAAQAAAAAAAAAAeQAAAAAAAHkAAAAAAAAmAAAAAAAAJgAAAAABACYAAAAAAwAmAAAAAAIAJgAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAAAAFkAAAAAAgBZAAAAAAMAAAAAAAAAAAAAAAAAAAAmAAAAAAMAJgAAAAAAACYAAAAAAgAmAAAAAAAAJgAAAAACACYAAAAAAAAmAAAAAAEAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAC8AAAAAAAAvAAAAAAAALwAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAACACYAAAAAAwAmAAAAAAEAJgAAAAAAACYAAAAAAQAmAAAAAAMAJgAAAAACAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAvAAAAAAAALwAAAAAAAC8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmAAAAAAEAJgAAAAADACYAAAAAAgAmAAAAAAEAJgAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAALwAAAAAAAC8AAAAAAAAvAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAAATAAAAAAAWQAAAAADWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADTAAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAADAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAAATAAAAAABAFkAAAAAAwBZAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAQBZAAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAAHkAAAAAAABpAAAAAAAAWQAAAAAAAFkAAAAAAgBMAAAAAAEAWQAAAAABAFkAAAAAAgBpAAAAAAAAeQAAAAAAAGkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAACAFkAAAAAAQBZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAA== + version: 7 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABTAAAAAAAWQAAAAADWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABTAAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAABMAAAAAAAAWQAAAAABAFkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAABAFkAAAAAAwBZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABpAAAAAAAAeQAAAAAAAGkAAAAAAABZAAAAAAEAWQAAAAAAAEwAAAAAAQBZAAAAAAIAWQAAAAACAGkAAAAAAAB5AAAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAIAWQAAAAACAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -62,6 +74,7 @@ entities: id: Empty - type: OccluderTree - type: Shuttle + dampingModifier: 0.25 - type: Gravity gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg @@ -788,130 +801,113 @@ entities: version: 2 data: tiles: - -1,-1: - 0: 65535 - 0,0: - 0: 65535 - 0,-1: - 0: 65535 - -1,0: - 0: 65535 -4,-3: - 0: 53247 + 0: 35064 -4,-4: - 0: 61166 - -4,-2: - 0: 60620 + 0: 52428 -4,-1: - 0: 61166 + 0: 52428 + -4,-2: + 0: 2184 + -4,0: + 0: 35020 + -4,-5: + 0: 36744 -3,-4: 0: 65535 -3,-3: 0: 65535 -3,-2: - 0: 65535 + 0: 32767 -3,-1: 0: 65535 + -3,-5: + 0: 65535 + -3,0: + 0: 65535 -2,-4: - 0: 13107 + 0: 4369 -2,-3: - 0: 6007 - -2,-2: - 0: 61713 + 0: 112 -2,-1: - 0: 65535 - -1,-2: - 0: 61440 + 0: 65297 + -2,0: + 0: 2271 + 1: 8192 + -1,-1: + 0: 65280 + -1,0: + 0: 61439 + 0,-1: + 0: 65280 + 0,0: + 0: 49151 0,1: - 0: 4095 - 1: 61440 + 0: 63675 + -1,1: + 0: 61678 + 0,2: + 0: 15 + 1: 3840 + -1,2: + 0: 15 + 1: 3840 1,0: - 0: 65535 + 0: 35039 + 1: 8192 + 1,2: + 0: 1 + 1: 802 + 1,-1: + 0: 65484 1,1: - 0: 959 - 1: 12288 + 1: 8738 2,0: 0: 65535 2,1: - 0: 255 - 3,0: - 0: 4915 - 3,1: - 0: 1 - 0,-2: - 0: 61440 - 1,-3: - 0: 53247 - 1,-2: - 0: 64716 - 1,-1: + 0: 7 + 2,-1: 0: 65535 + 3,0: + 0: 17 + 3,-1: + 0: 4369 + 1,-3: + 0: 35064 1,-4: - 0: 61166 + 0: 52428 + 1,-2: + 0: 2184 + 1,-5: + 0: 36744 2,-4: 0: 65535 2,-3: 0: 65535 2,-2: - 0: 65535 - 2,-1: - 0: 65535 - 3,-4: - 0: 13107 - 3,-3: - 0: 6007 - 3,-2: - 0: 12561 - 3,-1: - 0: 13107 - -4,0: - 0: 52974 - -4,1: - 0: 140 - -3,0: - 0: 65535 - -3,1: - 0: 255 - -2,0: - 0: 65535 - -2,1: - 0: 3823 - 1: 57344 - -1,1: - 0: 4095 - 1: 61440 - 1,-5: - 0: 65532 - 1,-6: - 0: 51200 - 2,-6: - 0: 65280 + 0: 32767 2,-5: 0: 65535 - 3,-6: - 0: 4096 - 3,-5: - 0: 30577 - -4,-5: - 0: 65532 - -4,-6: - 0: 51200 - -3,-6: - 0: 65280 - -3,-5: - 0: 65535 - -2,-6: - 0: 4096 - -2,-5: - 0: 30577 - 0,2: - 1: 4095 - 1,2: - 1: 819 + 3,-4: + 0: 4369 + 3,-3: + 0: 112 + -3,1: + 0: 7 + -2,1: + 1: 8738 + 0: 34952 -2,2: - 1: 3822 - -1,2: - 1: 4095 + 1: 3618 + 0: 8 + 2,-6: + 0: 28672 + 3,-5: + 0: 1792 + -3,-6: + 0: 28672 + -2,-5: + 0: 1792 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -929,7 +925,7 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.15 + immutable: True moles: - 0 - 0 @@ -949,18 +945,15 @@ entities: - type: SpreaderGrid - type: GridPathfinding - type: Godmode + - type: ImplicitRoof - proto: AirlockExternalGlass entities: - uid: 2 components: - type: Transform + rot: -1.5707963267948966 rad pos: 6.5,-10.5 parent: 818 - - type: Godmode - missingComponents: - - RCDDeconstructable - - Destructible - - Construction - uid: 3 components: - type: Transform @@ -1389,6 +1382,8 @@ entities: - type: BatterySelfRecharger autoRechargeRate: 50000 autoRecharge: True + - type: Fixtures + fixtures: {} missingComponents: - Construction - Destructible @@ -1404,6 +1399,8 @@ entities: - type: BatterySelfRecharger autoRechargeRate: 50000 autoRecharge: True + - type: Fixtures + fixtures: {} missingComponents: - Construction - Destructible @@ -1419,6 +1416,8 @@ entities: - type: BatterySelfRecharger autoRechargeRate: 50000 autoRecharge: True + - type: Fixtures + fixtures: {} missingComponents: - Construction - Destructible @@ -1434,6 +1433,8 @@ entities: - type: BatterySelfRecharger autoRechargeRate: 50000 autoRecharge: True + - type: Fixtures + fixtures: {} missingComponents: - Construction - Destructible @@ -1450,6 +1451,8 @@ entities: - type: BatterySelfRecharger autoRechargeRate: 50000 autoRecharge: True + - type: Fixtures + fixtures: {} missingComponents: - Construction - Destructible @@ -1465,6 +1468,8 @@ entities: - type: BatterySelfRecharger autoRechargeRate: 50000 autoRecharge: True + - type: Fixtures + fixtures: {} missingComponents: - Construction - Destructible @@ -1476,82 +1481,84 @@ entities: pos: -7.5,-5.5 parent: 818 - type: Godmode - missingComponents: - - Construction + - type: Fixtures + fixtures: {} - uid: 633 components: - type: Transform pos: 6.5,-5.5 parent: 818 - type: Godmode - missingComponents: - - Construction + - type: Fixtures + fixtures: {} - uid: 928 components: - type: Transform pos: -6.5,-14.5 parent: 818 - type: Godmode - missingComponents: - - Construction + - type: Fixtures + fixtures: {} - uid: 929 components: - type: Transform pos: 5.5,-14.5 parent: 818 - type: Godmode - missingComponents: - - Construction -- proto: AtmosDeviceFanTiny + - type: Fixtures + fixtures: {} +- proto: AtmosDeviceFanDirectional entities: - uid: 296 components: - type: Transform - pos: -6.5,-10.5 + rot: 1.5707963267948966 rad + pos: 14.5,-17.5 parent: 818 - - type: Godmode - uid: 297 components: - type: Transform - pos: -14.5,-10.5 + rot: 1.5707963267948966 rad + pos: 14.5,-10.5 parent: 818 - - type: Godmode - uid: 298 components: - type: Transform - pos: -14.5,-17.5 + rot: 1.5707963267948966 rad + pos: -5.5,-17.5 parent: 818 - - type: Godmode - uid: 299 components: - type: Transform - pos: -6.5,-17.5 + rot: 1.5707963267948966 rad + pos: -5.5,-10.5 parent: 818 - - type: Godmode - uid: 300 components: - type: Transform - pos: 5.5,-17.5 + rot: -1.5707963267948966 rad + pos: -15.5,-17.5 parent: 818 - - type: Godmode - - uid: 301 - components: - - type: Transform - pos: 5.5,-10.5 - parent: 818 - - type: Godmode - uid: 302 components: - type: Transform - pos: 13.5,-10.5 + rot: -1.5707963267948966 rad + pos: 4.5,-10.5 parent: 818 - - type: Godmode - uid: 303 components: - type: Transform - pos: 13.5,-17.5 + rot: -1.5707963267948966 rad + pos: 4.5,-17.5 parent: 818 - - type: Godmode + - uid: 638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-10.5 + parent: 818 +- proto: AtmosDeviceFanTiny + entities: - uid: 809 components: - type: Transform @@ -1566,9 +1573,11 @@ entities: pos: -10.5,5.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - - ApcPowerReceiver - Destructible + - ApcPowerReceiver - proto: BlockGameArcade entities: - uid: 727 @@ -3774,7 +3783,6 @@ entities: - uid: 417 components: - type: Transform - rot: 1.5707963267948966 rad pos: -3.5,8.5 parent: 818 - type: Godmode @@ -3784,6 +3792,12 @@ entities: - Construction - proto: Catwalk entities: + - uid: 301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-17.5 + parent: 818 - uid: 580 components: - type: Transform @@ -3894,6 +3908,48 @@ entities: - Construction - Destructible - RCDDeconstructable + - uid: 918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 818 + - uid: 930 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-10.5 + parent: 818 + - uid: 931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-17.5 + parent: 818 + - uid: 932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-17.5 + parent: 818 + - uid: 933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-10.5 + parent: 818 + - uid: 934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-10.5 + parent: 818 + - uid: 935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-17.5 + parent: 818 - proto: Chair entities: - uid: 592 @@ -4380,6 +4436,8 @@ entities: pos: -5.5,2.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - Construction @@ -4391,6 +4449,8 @@ entities: pos: 4.5,2.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - Construction @@ -5142,6 +5202,8 @@ entities: pos: -6.5,-2.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 816 @@ -5150,6 +5212,8 @@ entities: pos: 5.5,-2.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: FirelockEdge @@ -5477,6 +5541,15 @@ entities: missingComponents: - Anchorable - Destructible +- proto: GhostWarpPoint + entities: + - uid: 916 + components: + - type: MetaData + name: Terminal + - type: Transform + pos: -0.5,1.5 + parent: 818 - proto: GravityGeneratorMini entities: - uid: 808 @@ -5574,7 +5647,6 @@ entities: - uid: 125 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-19.5 parent: 818 - type: Godmode @@ -5585,7 +5657,6 @@ entities: - uid: 126 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-20.5 parent: 818 - type: Godmode @@ -5596,7 +5667,6 @@ entities: - uid: 127 components: - type: Transform - rot: 1.5707963267948966 rad pos: -8.5,-20.5 parent: 818 - type: Godmode @@ -5607,7 +5677,6 @@ entities: - uid: 128 components: - type: Transform - rot: 1.5707963267948966 rad pos: -8.5,-21.5 parent: 818 - type: Godmode @@ -5618,7 +5687,6 @@ entities: - uid: 129 components: - type: Transform - rot: 1.5707963267948966 rad pos: -9.5,-21.5 parent: 818 - type: Godmode @@ -5629,7 +5697,6 @@ entities: - uid: 130 components: - type: Transform - rot: 1.5707963267948966 rad pos: -11.5,-21.5 parent: 818 - type: Godmode @@ -5640,7 +5707,6 @@ entities: - uid: 131 components: - type: Transform - rot: 1.5707963267948966 rad pos: -12.5,-21.5 parent: 818 - type: Godmode @@ -5651,7 +5717,6 @@ entities: - uid: 132 components: - type: Transform - rot: 1.5707963267948966 rad pos: -12.5,-20.5 parent: 818 - type: Godmode @@ -5662,7 +5727,6 @@ entities: - uid: 133 components: - type: Transform - rot: 1.5707963267948966 rad pos: -13.5,-20.5 parent: 818 - type: Godmode @@ -5673,7 +5737,6 @@ entities: - uid: 134 components: - type: Transform - rot: 1.5707963267948966 rad pos: -13.5,-19.5 parent: 818 - type: Godmode @@ -5764,7 +5827,6 @@ entities: - uid: 143 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-8.5 parent: 818 - type: Godmode @@ -5775,7 +5837,6 @@ entities: - uid: 144 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-7.5 parent: 818 - type: Godmode @@ -5786,7 +5847,6 @@ entities: - uid: 145 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-6.5 parent: 818 - type: Godmode @@ -5797,7 +5857,6 @@ entities: - uid: 147 components: - type: Transform - rot: 1.5707963267948966 rad pos: -13.5,-8.5 parent: 818 - type: Godmode @@ -5808,7 +5867,6 @@ entities: - uid: 148 components: - type: Transform - rot: 1.5707963267948966 rad pos: -13.5,-7.5 parent: 818 - type: Godmode @@ -5819,7 +5877,6 @@ entities: - uid: 149 components: - type: Transform - rot: 1.5707963267948966 rad pos: -13.5,-6.5 parent: 818 - type: Godmode @@ -5830,7 +5887,6 @@ entities: - uid: 151 components: - type: Transform - rot: 1.5707963267948966 rad pos: 12.5,-8.5 parent: 818 - type: Godmode @@ -5841,7 +5897,6 @@ entities: - uid: 152 components: - type: Transform - rot: 1.5707963267948966 rad pos: 12.5,-7.5 parent: 818 - type: Godmode @@ -5852,7 +5907,6 @@ entities: - uid: 153 components: - type: Transform - rot: 1.5707963267948966 rad pos: 12.5,-6.5 parent: 818 - type: Godmode @@ -5863,7 +5917,6 @@ entities: - uid: 155 components: - type: Transform - rot: 1.5707963267948966 rad pos: 6.5,-8.5 parent: 818 - type: Godmode @@ -5874,7 +5927,6 @@ entities: - uid: 156 components: - type: Transform - rot: 1.5707963267948966 rad pos: 6.5,-7.5 parent: 818 - type: Godmode @@ -5885,7 +5937,6 @@ entities: - uid: 157 components: - type: Transform - rot: 1.5707963267948966 rad pos: 6.5,-6.5 parent: 818 - type: Godmode @@ -5896,7 +5947,6 @@ entities: - uid: 167 components: - type: Transform - rot: 1.5707963267948966 rad pos: 12.5,-19.5 parent: 818 - type: Godmode @@ -5907,7 +5957,6 @@ entities: - uid: 168 components: - type: Transform - rot: 1.5707963267948966 rad pos: 12.5,-20.5 parent: 818 - type: Godmode @@ -5918,7 +5967,6 @@ entities: - uid: 169 components: - type: Transform - rot: 1.5707963267948966 rad pos: 11.5,-20.5 parent: 818 - type: Godmode @@ -5929,7 +5977,6 @@ entities: - uid: 170 components: - type: Transform - rot: 1.5707963267948966 rad pos: 11.5,-21.5 parent: 818 - type: Godmode @@ -5940,7 +5987,6 @@ entities: - uid: 171 components: - type: Transform - rot: 1.5707963267948966 rad pos: 10.5,-21.5 parent: 818 - type: Godmode @@ -5951,7 +5997,6 @@ entities: - uid: 172 components: - type: Transform - rot: 1.5707963267948966 rad pos: 8.5,-21.5 parent: 818 - type: Godmode @@ -5962,7 +6007,6 @@ entities: - uid: 173 components: - type: Transform - rot: 1.5707963267948966 rad pos: 7.5,-21.5 parent: 818 - type: Godmode @@ -5973,7 +6017,6 @@ entities: - uid: 174 components: - type: Transform - rot: 1.5707963267948966 rad pos: 7.5,-20.5 parent: 818 - type: Godmode @@ -5984,7 +6027,6 @@ entities: - uid: 175 components: - type: Transform - rot: 1.5707963267948966 rad pos: 6.5,-20.5 parent: 818 - type: Godmode @@ -5995,7 +6037,6 @@ entities: - uid: 176 components: - type: Transform - rot: 1.5707963267948966 rad pos: 6.5,-19.5 parent: 818 - type: Godmode @@ -6418,6 +6459,8 @@ entities: pos: -6.5,1.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: PosterLegitEnlist @@ -6428,6 +6471,8 @@ entities: pos: -14.5,1.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: PosterLegitHighClassMartini @@ -6438,6 +6483,8 @@ entities: pos: -6.5,-3.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: PosterLegitJustAWeekAway @@ -6448,6 +6495,8 @@ entities: pos: 5.5,1.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: PosterLegitNanomichiAd @@ -6458,6 +6507,8 @@ entities: pos: -4.5,3.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: PosterLegitNanotrasenLogo @@ -6468,6 +6519,8 @@ entities: pos: -7.5,-11.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 247 @@ -6476,6 +6529,8 @@ entities: pos: -13.5,-4.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 248 @@ -6484,6 +6539,8 @@ entities: pos: 12.5,-4.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 249 @@ -6492,6 +6549,8 @@ entities: pos: 6.5,-16.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 250 @@ -6500,6 +6559,8 @@ entities: pos: -13.5,-16.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 251 @@ -6508,6 +6569,8 @@ entities: pos: 12.5,-11.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 922 @@ -6516,6 +6579,8 @@ entities: pos: -0.5,6.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: PosterLegitNTTGC @@ -6526,6 +6591,8 @@ entities: pos: 5.5,-3.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: PosterLegitPDAAd @@ -6536,6 +6603,8 @@ entities: pos: 12.5,-16.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: PosterLegitVacation @@ -6546,6 +6615,8 @@ entities: pos: -7.5,-16.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: PosterLegitWorkForAFuture @@ -6556,6 +6627,8 @@ entities: pos: 12.5,2.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: PottedPlantRandom @@ -6623,7 +6696,6 @@ entities: - uid: 19 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-20.5 parent: 818 - type: Godmode @@ -6634,7 +6706,6 @@ entities: - uid: 20 components: - type: Transform - rot: 1.5707963267948966 rad pos: -8.5,-20.5 parent: 818 - type: Godmode @@ -6645,7 +6716,6 @@ entities: - uid: 21 components: - type: Transform - rot: 1.5707963267948966 rad pos: -8.5,-21.5 parent: 818 - type: Godmode @@ -6656,7 +6726,6 @@ entities: - uid: 22 components: - type: Transform - rot: 1.5707963267948966 rad pos: -9.5,-21.5 parent: 818 - type: Godmode @@ -6667,7 +6736,6 @@ entities: - uid: 24 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-19.5 parent: 818 - type: Godmode @@ -6678,7 +6746,6 @@ entities: - uid: 25 components: - type: Transform - rot: 1.5707963267948966 rad pos: -11.5,-21.5 parent: 818 - type: Godmode @@ -6689,7 +6756,6 @@ entities: - uid: 26 components: - type: Transform - rot: 1.5707963267948966 rad pos: -12.5,-21.5 parent: 818 - type: Godmode @@ -6700,7 +6766,6 @@ entities: - uid: 27 components: - type: Transform - rot: 1.5707963267948966 rad pos: -12.5,-20.5 parent: 818 - type: Godmode @@ -6711,7 +6776,6 @@ entities: - uid: 28 components: - type: Transform - rot: 1.5707963267948966 rad pos: -13.5,-20.5 parent: 818 - type: Godmode @@ -6722,7 +6786,6 @@ entities: - uid: 29 components: - type: Transform - rot: 1.5707963267948966 rad pos: -13.5,-19.5 parent: 818 - type: Godmode @@ -6733,7 +6796,6 @@ entities: - uid: 30 components: - type: Transform - rot: 1.5707963267948966 rad pos: 8.5,-21.5 parent: 818 - type: Godmode @@ -6744,7 +6806,6 @@ entities: - uid: 31 components: - type: Transform - rot: 1.5707963267948966 rad pos: 7.5,-21.5 parent: 818 - type: Godmode @@ -6755,7 +6816,6 @@ entities: - uid: 32 components: - type: Transform - rot: 1.5707963267948966 rad pos: 7.5,-20.5 parent: 818 - type: Godmode @@ -6766,7 +6826,6 @@ entities: - uid: 33 components: - type: Transform - rot: 1.5707963267948966 rad pos: 6.5,-20.5 parent: 818 - type: Godmode @@ -6777,7 +6836,6 @@ entities: - uid: 34 components: - type: Transform - rot: 1.5707963267948966 rad pos: 6.5,-19.5 parent: 818 - type: Godmode @@ -6788,7 +6846,6 @@ entities: - uid: 35 components: - type: Transform - rot: 1.5707963267948966 rad pos: 10.5,-21.5 parent: 818 - type: Godmode @@ -6799,7 +6856,6 @@ entities: - uid: 36 components: - type: Transform - rot: 1.5707963267948966 rad pos: 11.5,-21.5 parent: 818 - type: Godmode @@ -6810,7 +6866,6 @@ entities: - uid: 37 components: - type: Transform - rot: 1.5707963267948966 rad pos: 11.5,-20.5 parent: 818 - type: Godmode @@ -6821,7 +6876,6 @@ entities: - uid: 38 components: - type: Transform - rot: 1.5707963267948966 rad pos: 12.5,-20.5 parent: 818 - type: Godmode @@ -6832,7 +6886,6 @@ entities: - uid: 39 components: - type: Transform - rot: 1.5707963267948966 rad pos: 12.5,-19.5 parent: 818 - type: Godmode @@ -6883,7 +6936,6 @@ entities: - uid: 100 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-8.5 parent: 818 - type: Godmode @@ -6934,7 +6986,6 @@ entities: - uid: 109 components: - type: Transform - rot: 1.5707963267948966 rad pos: 12.5,-8.5 parent: 818 - type: Godmode @@ -6945,7 +6996,6 @@ entities: - uid: 110 components: - type: Transform - rot: 1.5707963267948966 rad pos: 12.5,-7.5 parent: 818 - type: Godmode @@ -6956,7 +7006,6 @@ entities: - uid: 111 components: - type: Transform - rot: 1.5707963267948966 rad pos: 12.5,-6.5 parent: 818 - type: Godmode @@ -6967,7 +7016,6 @@ entities: - uid: 113 components: - type: Transform - rot: 1.5707963267948966 rad pos: 6.5,-6.5 parent: 818 - type: Godmode @@ -6978,7 +7026,6 @@ entities: - uid: 115 components: - type: Transform - rot: 1.5707963267948966 rad pos: 6.5,-7.5 parent: 818 - type: Godmode @@ -6989,7 +7036,6 @@ entities: - uid: 116 components: - type: Transform - rot: 1.5707963267948966 rad pos: 6.5,-8.5 parent: 818 - type: Godmode @@ -7000,7 +7046,6 @@ entities: - uid: 117 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-7.5 parent: 818 - type: Godmode @@ -7011,7 +7056,6 @@ entities: - uid: 118 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-6.5 parent: 818 - type: Godmode @@ -7022,7 +7066,6 @@ entities: - uid: 121 components: - type: Transform - rot: 1.5707963267948966 rad pos: -13.5,-8.5 parent: 818 - type: Godmode @@ -7033,7 +7076,6 @@ entities: - uid: 122 components: - type: Transform - rot: 1.5707963267948966 rad pos: -13.5,-7.5 parent: 818 - type: Godmode @@ -7044,7 +7086,6 @@ entities: - uid: 123 components: - type: Transform - rot: 1.5707963267948966 rad pos: -13.5,-6.5 parent: 818 - type: Godmode @@ -7540,6 +7581,8 @@ entities: pos: -2.5,-2.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: SignNanotrasen2 @@ -7550,6 +7593,8 @@ entities: pos: -1.5,-2.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: SignNanotrasen3 @@ -7560,6 +7605,8 @@ entities: pos: -0.5,-2.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: SignNanotrasen4 @@ -7570,6 +7617,8 @@ entities: pos: 0.5,-2.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: SignNanotrasen5 @@ -7580,6 +7629,8 @@ entities: pos: 1.5,-2.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: SignNosmoking @@ -7590,6 +7641,8 @@ entities: pos: -7.5,2.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: SignShipDock @@ -7600,6 +7653,8 @@ entities: pos: 6.5,-4.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 245 @@ -7608,6 +7663,8 @@ entities: pos: -7.5,-4.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: SignSpace @@ -7618,6 +7675,8 @@ entities: pos: 12.5,-18.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 640 @@ -7626,6 +7685,8 @@ entities: pos: -7.5,-18.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 688 @@ -7634,6 +7695,8 @@ entities: pos: -13.5,-18.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 689 @@ -7642,6 +7705,8 @@ entities: pos: -7.5,-9.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 691 @@ -7650,6 +7715,8 @@ entities: pos: -13.5,-9.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 705 @@ -7658,6 +7725,8 @@ entities: pos: 12.5,-9.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 709 @@ -7666,6 +7735,8 @@ entities: pos: 6.5,-9.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 817 @@ -7674,6 +7745,8 @@ entities: pos: 6.5,-18.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 819 @@ -7682,6 +7755,8 @@ entities: pos: 4.5,7.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: SinkWide @@ -8256,7 +8331,6 @@ entities: - uid: 585 components: - type: Transform - rot: 1.5707963267948966 rad pos: -9.5,2.5 parent: 818 - type: Godmode @@ -8266,7 +8340,6 @@ entities: - uid: 707 components: - type: Transform - rot: -1.5707963267948966 rad pos: -10.5,4.5 parent: 818 - type: Godmode @@ -8276,7 +8349,6 @@ entities: - uid: 751 components: - type: Transform - rot: -1.5707963267948966 rad pos: -11.5,4.5 parent: 818 - type: Godmode @@ -8286,7 +8358,6 @@ entities: - uid: 796 components: - type: Transform - rot: -1.5707963267948966 rad pos: -10.5,2.5 parent: 818 - type: Godmode @@ -8296,7 +8367,6 @@ entities: - uid: 797 components: - type: Transform - rot: -1.5707963267948966 rad pos: -12.5,2.5 parent: 818 - type: Godmode @@ -8306,7 +8376,6 @@ entities: - uid: 798 components: - type: Transform - rot: -1.5707963267948966 rad pos: -11.5,2.5 parent: 818 - type: Godmode @@ -8493,7 +8562,6 @@ entities: - uid: 10 components: - type: Transform - rot: 1.5707963267948966 rad pos: 6.5,-4.5 parent: 818 - type: Godmode @@ -8502,7 +8570,6 @@ entities: - uid: 23 components: - type: Transform - rot: 1.5707963267948966 rad pos: -10.5,-21.5 parent: 818 - type: Godmode @@ -8511,7 +8578,6 @@ entities: - uid: 40 components: - type: Transform - rot: 1.5707963267948966 rad pos: 9.5,-21.5 parent: 818 - type: Godmode @@ -8520,7 +8586,6 @@ entities: - uid: 41 components: - type: Transform - rot: 1.5707963267948966 rad pos: 6.5,-18.5 parent: 818 - type: Godmode @@ -8529,7 +8594,6 @@ entities: - uid: 42 components: - type: Transform - rot: 1.5707963267948966 rad pos: 5.5,-18.5 parent: 818 - type: Godmode @@ -8538,7 +8602,6 @@ entities: - uid: 43 components: - type: Transform - rot: 1.5707963267948966 rad pos: 4.5,-18.5 parent: 818 - type: Godmode @@ -8547,7 +8610,6 @@ entities: - uid: 44 components: - type: Transform - rot: 1.5707963267948966 rad pos: 12.5,-18.5 parent: 818 - type: Godmode @@ -8556,7 +8618,6 @@ entities: - uid: 45 components: - type: Transform - rot: 1.5707963267948966 rad pos: 13.5,-18.5 parent: 818 - type: Godmode @@ -8565,7 +8626,6 @@ entities: - uid: 46 components: - type: Transform - rot: 1.5707963267948966 rad pos: 14.5,-18.5 parent: 818 - type: Godmode @@ -8574,7 +8634,6 @@ entities: - uid: 47 components: - type: Transform - rot: 1.5707963267948966 rad pos: -5.5,-18.5 parent: 818 - type: Godmode @@ -8583,7 +8642,6 @@ entities: - uid: 48 components: - type: Transform - rot: 1.5707963267948966 rad pos: -6.5,-18.5 parent: 818 - type: Godmode @@ -8592,7 +8650,6 @@ entities: - uid: 49 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-18.5 parent: 818 - type: Godmode @@ -8601,7 +8658,6 @@ entities: - uid: 50 components: - type: Transform - rot: 1.5707963267948966 rad pos: -13.5,-18.5 parent: 818 - type: Godmode @@ -8610,7 +8666,6 @@ entities: - uid: 51 components: - type: Transform - rot: 1.5707963267948966 rad pos: -14.5,-18.5 parent: 818 - type: Godmode @@ -8619,7 +8674,6 @@ entities: - uid: 52 components: - type: Transform - rot: 1.5707963267948966 rad pos: -15.5,-18.5 parent: 818 - type: Godmode @@ -8628,7 +8682,6 @@ entities: - uid: 53 components: - type: Transform - rot: 1.5707963267948966 rad pos: -13.5,-9.5 parent: 818 - type: Godmode @@ -8637,7 +8690,6 @@ entities: - uid: 54 components: - type: Transform - rot: 1.5707963267948966 rad pos: -14.5,-9.5 parent: 818 - type: Godmode @@ -8646,7 +8698,6 @@ entities: - uid: 55 components: - type: Transform - rot: 1.5707963267948966 rad pos: -15.5,-9.5 parent: 818 - type: Godmode @@ -8655,7 +8706,6 @@ entities: - uid: 56 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-9.5 parent: 818 - type: Godmode @@ -8664,7 +8714,6 @@ entities: - uid: 57 components: - type: Transform - rot: 1.5707963267948966 rad pos: -6.5,-9.5 parent: 818 - type: Godmode @@ -8673,7 +8722,6 @@ entities: - uid: 58 components: - type: Transform - rot: 1.5707963267948966 rad pos: -5.5,-9.5 parent: 818 - type: Godmode @@ -8682,7 +8730,6 @@ entities: - uid: 59 components: - type: Transform - rot: 1.5707963267948966 rad pos: -5.5,-11.5 parent: 818 - type: Godmode @@ -8691,7 +8738,6 @@ entities: - uid: 60 components: - type: Transform - rot: 1.5707963267948966 rad pos: -6.5,-11.5 parent: 818 - type: Godmode @@ -8700,7 +8746,6 @@ entities: - uid: 61 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-11.5 parent: 818 - type: Godmode @@ -8709,7 +8754,6 @@ entities: - uid: 62 components: - type: Transform - rot: 1.5707963267948966 rad pos: -13.5,-11.5 parent: 818 - type: Godmode @@ -8718,7 +8762,6 @@ entities: - uid: 63 components: - type: Transform - rot: 1.5707963267948966 rad pos: -14.5,-11.5 parent: 818 - type: Godmode @@ -8727,7 +8770,6 @@ entities: - uid: 64 components: - type: Transform - rot: 1.5707963267948966 rad pos: -15.5,-11.5 parent: 818 - type: Godmode @@ -8736,7 +8778,6 @@ entities: - uid: 65 components: - type: Transform - rot: 1.5707963267948966 rad pos: -13.5,-16.5 parent: 818 - type: Godmode @@ -8745,7 +8786,6 @@ entities: - uid: 66 components: - type: Transform - rot: 1.5707963267948966 rad pos: -14.5,-16.5 parent: 818 - type: Godmode @@ -8754,7 +8794,6 @@ entities: - uid: 67 components: - type: Transform - rot: 1.5707963267948966 rad pos: -15.5,-16.5 parent: 818 - type: Godmode @@ -8763,7 +8802,6 @@ entities: - uid: 68 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-16.5 parent: 818 - type: Godmode @@ -8772,7 +8810,6 @@ entities: - uid: 69 components: - type: Transform - rot: 1.5707963267948966 rad pos: -6.5,-16.5 parent: 818 - type: Godmode @@ -8781,7 +8818,6 @@ entities: - uid: 70 components: - type: Transform - rot: 1.5707963267948966 rad pos: -5.5,-16.5 parent: 818 - type: Godmode @@ -8790,7 +8826,6 @@ entities: - uid: 71 components: - type: Transform - rot: 1.5707963267948966 rad pos: 12.5,-16.5 parent: 818 - type: Godmode @@ -8799,7 +8834,6 @@ entities: - uid: 72 components: - type: Transform - rot: 1.5707963267948966 rad pos: 13.5,-16.5 parent: 818 - type: Godmode @@ -8808,7 +8842,6 @@ entities: - uid: 73 components: - type: Transform - rot: 1.5707963267948966 rad pos: 14.5,-16.5 parent: 818 - type: Godmode @@ -8817,7 +8850,6 @@ entities: - uid: 74 components: - type: Transform - rot: 1.5707963267948966 rad pos: 14.5,-11.5 parent: 818 - type: Godmode @@ -8826,7 +8858,6 @@ entities: - uid: 75 components: - type: Transform - rot: 1.5707963267948966 rad pos: 13.5,-11.5 parent: 818 - type: Godmode @@ -8835,7 +8866,6 @@ entities: - uid: 76 components: - type: Transform - rot: 1.5707963267948966 rad pos: 12.5,-11.5 parent: 818 - type: Godmode @@ -8844,7 +8874,6 @@ entities: - uid: 77 components: - type: Transform - rot: 1.5707963267948966 rad pos: 14.5,-9.5 parent: 818 - type: Godmode @@ -8853,7 +8882,6 @@ entities: - uid: 78 components: - type: Transform - rot: 1.5707963267948966 rad pos: 13.5,-9.5 parent: 818 - type: Godmode @@ -8862,7 +8890,6 @@ entities: - uid: 79 components: - type: Transform - rot: 1.5707963267948966 rad pos: 12.5,-9.5 parent: 818 - type: Godmode @@ -8871,7 +8898,6 @@ entities: - uid: 80 components: - type: Transform - rot: 1.5707963267948966 rad pos: 6.5,-9.5 parent: 818 - type: Godmode @@ -8880,7 +8906,6 @@ entities: - uid: 81 components: - type: Transform - rot: 1.5707963267948966 rad pos: 5.5,-9.5 parent: 818 - type: Godmode @@ -8889,7 +8914,6 @@ entities: - uid: 82 components: - type: Transform - rot: 1.5707963267948966 rad pos: 4.5,-9.5 parent: 818 - type: Godmode @@ -8898,7 +8922,6 @@ entities: - uid: 83 components: - type: Transform - rot: 1.5707963267948966 rad pos: 6.5,-11.5 parent: 818 - type: Godmode @@ -8907,7 +8930,6 @@ entities: - uid: 84 components: - type: Transform - rot: 1.5707963267948966 rad pos: 5.5,-11.5 parent: 818 - type: Godmode @@ -8916,7 +8938,6 @@ entities: - uid: 85 components: - type: Transform - rot: 1.5707963267948966 rad pos: 4.5,-11.5 parent: 818 - type: Godmode @@ -8925,7 +8946,6 @@ entities: - uid: 86 components: - type: Transform - rot: 1.5707963267948966 rad pos: 6.5,-16.5 parent: 818 - type: Godmode @@ -8934,7 +8954,6 @@ entities: - uid: 87 components: - type: Transform - rot: 1.5707963267948966 rad pos: 5.5,-16.5 parent: 818 - type: Godmode @@ -8943,7 +8962,6 @@ entities: - uid: 88 components: - type: Transform - rot: 1.5707963267948966 rad pos: 4.5,-16.5 parent: 818 - type: Godmode @@ -8952,7 +8970,6 @@ entities: - uid: 89 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-4.5 parent: 818 - type: Godmode @@ -8961,7 +8978,6 @@ entities: - uid: 90 components: - type: Transform - rot: 1.5707963267948966 rad pos: -13.5,-4.5 parent: 818 - type: Godmode @@ -8970,7 +8986,6 @@ entities: - uid: 92 components: - type: Transform - rot: 1.5707963267948966 rad pos: 12.5,-4.5 parent: 818 - type: Godmode @@ -8979,7 +8994,6 @@ entities: - uid: 112 components: - type: Transform - rot: -1.5707963267948966 rad pos: 6.5,-5.5 parent: 818 - type: Godmode @@ -8988,7 +9002,6 @@ entities: - uid: 114 components: - type: Transform - rot: -1.5707963267948966 rad pos: -13.5,-5.5 parent: 818 - type: Godmode @@ -9005,7 +9018,6 @@ entities: - uid: 154 components: - type: Transform - rot: -1.5707963267948966 rad pos: 12.5,-5.5 parent: 818 - type: Godmode @@ -9014,7 +9026,6 @@ entities: - uid: 158 components: - type: Transform - rot: -1.5707963267948966 rad pos: -7.5,-5.5 parent: 818 - type: Godmode @@ -9532,16 +9543,6 @@ entities: - type: Godmode missingComponents: - Destructible -- proto: WarpPoint - entities: - - uid: 638 - components: - - type: Transform - pos: -0.5,1.5 - parent: 818 - - type: WarpPoint - location: Terminal - - type: Godmode - proto: Windoor entities: - uid: 806 diff --git a/Resources/Maps/Nonstations/nukieplanet.yml b/Resources/Maps/Nonstations/nukieplanet.yml index 554e242410..6bb6ed7f70 100644 --- a/Resources/Maps/Nonstations/nukieplanet.yml +++ b/Resources/Maps/Nonstations/nukieplanet.yml @@ -1,6 +1,17 @@ meta: - format: 6 - postmapinit: false + format: 7 + category: Map + engineVersion: 263.0.0 + forkId: "" + forkVersion: "" + time: 07/20/2025 06:14:13 + entityCount: 2547 +maps: +- 1295 +grids: +- 104 +orphans: [] +nullspace: [] tilemap: 0: Space 14: FloorBar @@ -33,96 +44,96 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAKWQAAAAAAfAAAAAAAHQAAAAACbgAAAAADbgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAHQAAAAABbgAAAAADWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAHQAAAAAAbgAAAAACbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAHQAAAAAAHQAAAAADHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAADWQAAAAAEWQAAAAAAWQAAAAAEfAAAAAAAeAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAeAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAADgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAADgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAADgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAADgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFWQAAAAAIfAAAAAAADgAAAAAB - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAFkAAAAACgBZAAAAAAAAfAAAAAAAAB0AAAAAAgBuAAAAAAMAbgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABZAAAAAAAAWQAAAAAAAHwAAAAAAAAdAAAAAAEAbgAAAAADAFsAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAAB8AAAAAAAAHQAAAAAAAG4AAAAAAgBuAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAFkAAAAAAABZAAAAAAAAfAAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABZAAAAAAAAWQAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAHwAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB8AAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABZAAAAAAMAWQAAAAAEAFkAAAAAAABZAAAAAAQAfAAAAAAAAHgAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAHwAAAAAAAB4AAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAeAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAA4AAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAAOAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAADgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAAOAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAFAFkAAAAACAB8AAAAAAAADgAAAAABAA== + version: 7 0,-1: ind: 0,-1 - tiles: bgAAAAAAbgAAAAADfAAAAAAAbgAAAAAAbgAAAAACbgAAAAACbgAAAAADbgAAAAABHQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAAAHQAAAAADHQAAAAACWwAAAAAAbgAAAAADbgAAAAADbgAAAAADbgAAAAACbgAAAAAAbgAAAAADbgAAAAADHQAAAAADVgAAAAAAHQAAAAACVgAAAAAAHQAAAAADVgAAAAAAHQAAAAADHQAAAAADbgAAAAAAbgAAAAACfAAAAAAAbgAAAAADbgAAAAACbgAAAAADbgAAAAACbgAAAAACHQAAAAADVgAAAAAAHQAAAAADVgAAAAAAHQAAAAABVgAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAWwAAAAADWwAAAAACWwAAAAADbgAAAAADbgAAAAACHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAAAHQAAAAADfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAABWwAAAAABWwAAAAACbgAAAAADbgAAAAACDgAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAADWQAAAAAAWQAAAAAAbgAAAAAAWwAAAAABWwAAAAAAWwAAAAAAbgAAAAACbgAAAAAAWQAAAAAAHQAAAAADHQAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAADgAAAAABDgAAAAADDgAAAAACDgAAAAAADgAAAAADfAAAAAAAHQAAAAABfAAAAAAADgAAAAADDgAAAAACDgAAAAAADgAAAAACDgAAAAAAHQAAAAABHQAAAAADHQAAAAABVgAAAAAAVgAAAAAAeAAAAAACeAAAAAACeAAAAAADHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAADHQAAAAACfAAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAABeAAAAAAAeAAAAAACeAAAAAACeAAAAAADeAAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAABeAAAAAAAeAAAAAABeAAAAAAAeAAAAAADeAAAAAADHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAADfAAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAACDgAAAAACDgAAAAAADgAAAAACDgAAAAADDgAAAAACDgAAAAABDgAAAAACDgAAAAAADgAAAAAADgAAAAACDgAAAAADDgAAAAAADgAAAAABHQAAAAAAHQAAAAACHQAAAAACDgAAAAAADgAAAAABDgAAAAACDgAAAAAADgAAAAABDgAAAAABDgAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAACeAAAAAAAeAAAAAADeAAAAAABDgAAAAACDgAAAAACDgAAAAAADgAAAAAADgAAAAADDgAAAAAADgAAAAAAVgAAAAAADgAAAAACLAAAAAAALAAAAAAALAAAAAAADgAAAAADeAAAAAABeAAAAAABeAAAAAADDgAAAAADDgAAAAABDgAAAAADDgAAAAACDgAAAAADDgAAAAAADgAAAAAAVgAAAAAADgAAAAAAUAAAAAAALAAAAAAADgAAAAAADgAAAAACHQAAAAAAHQAAAAACfAAAAAAADgAAAAACDgAAAAACDgAAAAACDgAAAAAADgAAAAADDgAAAAABDgAAAAACVgAAAAAADgAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAADgAAAAAADgAAAAADDgAAAAACDgAAAAACDgAAAAACDgAAAAABDgAAAAABDgAAAAAADgAAAAACUAAAAAAAUAAAAAAALAAAAAAAUAAAAAAAUAAAAAAAfAAAAAAAfAAAAAAA - version: 6 + tiles: bgAAAAAAAG4AAAAAAwB8AAAAAAAAbgAAAAAAAG4AAAAAAgBuAAAAAAIAbgAAAAADAG4AAAAAAQAdAAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAEAHQAAAAABAB0AAAAAAAAdAAAAAAMAHQAAAAACAFsAAAAAAABuAAAAAAMAbgAAAAADAG4AAAAAAwBuAAAAAAIAbgAAAAAAAG4AAAAAAwBuAAAAAAMAHQAAAAADAFYAAAAAAAAdAAAAAAIAVgAAAAAAAB0AAAAAAwBWAAAAAAAAHQAAAAADAB0AAAAAAwBuAAAAAAAAbgAAAAACAHwAAAAAAABuAAAAAAMAbgAAAAACAG4AAAAAAwBuAAAAAAIAbgAAAAACAB0AAAAAAwBWAAAAAAAAHQAAAAADAFYAAAAAAAAdAAAAAAEAVgAAAAAAAB0AAAAAAQAdAAAAAAAAHQAAAAABAB0AAAAAAwAdAAAAAAAAWwAAAAADAFsAAAAAAgBbAAAAAAMAbgAAAAADAG4AAAAAAgAdAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAABAB0AAAAAAQAdAAAAAAAAHQAAAAADAHwAAAAAAAB8AAAAAAAAfAAAAAAAAFsAAAAAAQBbAAAAAAEAWwAAAAACAG4AAAAAAwBuAAAAAAIADgAAAAACAB0AAAAAAwAdAAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAIAHQAAAAAAAB0AAAAAAwBZAAAAAAAAWQAAAAAAAG4AAAAAAABbAAAAAAEAWwAAAAAAAFsAAAAAAABuAAAAAAIAbgAAAAAAAFkAAAAAAAAdAAAAAAMAHQAAAAADAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAADgAAAAABAA4AAAAAAwAOAAAAAAIADgAAAAAAAA4AAAAAAwB8AAAAAAAAHQAAAAABAHwAAAAAAAAOAAAAAAMADgAAAAACAA4AAAAAAAAOAAAAAAIADgAAAAAAAB0AAAAAAQAdAAAAAAMAHQAAAAABAFYAAAAAAABWAAAAAAAAeAAAAAACAHgAAAAAAgB4AAAAAAMAHQAAAAAAAB0AAAAAAQAdAAAAAAEAHQAAAAAAAB0AAAAAAwAdAAAAAAIAfAAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAADAB0AAAAAAQB4AAAAAAAAeAAAAAACAHgAAAAAAgB4AAAAAAMAeAAAAAADAB0AAAAAAAAdAAAAAAAAHQAAAAACAB0AAAAAAAAdAAAAAAIAHQAAAAACAB0AAAAAAQAdAAAAAAMAHQAAAAABAB0AAAAAAgAdAAAAAAEAeAAAAAAAAHgAAAAAAQB4AAAAAAAAeAAAAAADAHgAAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAABAB0AAAAAAwB8AAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAEAHQAAAAACAA4AAAAAAgAOAAAAAAAADgAAAAACAA4AAAAAAwAOAAAAAAIADgAAAAABAA4AAAAAAgAOAAAAAAAADgAAAAAAAA4AAAAAAgAOAAAAAAMADgAAAAAAAA4AAAAAAQAdAAAAAAAAHQAAAAACAB0AAAAAAgAOAAAAAAAADgAAAAABAA4AAAAAAgAOAAAAAAAADgAAAAABAA4AAAAAAQAOAAAAAAMADgAAAAAAAA4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAIAeAAAAAAAAHgAAAAAAwB4AAAAAAEADgAAAAACAA4AAAAAAgAOAAAAAAAADgAAAAAAAA4AAAAAAwAOAAAAAAAADgAAAAAAAFYAAAAAAAAOAAAAAAIALAAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAADAHgAAAAAAQB4AAAAAAEAeAAAAAADAA4AAAAAAwAOAAAAAAEADgAAAAADAA4AAAAAAgAOAAAAAAMADgAAAAAAAA4AAAAAAABWAAAAAAAADgAAAAAAAFAAAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAgAdAAAAAAAAHQAAAAACAHwAAAAAAAAOAAAAAAIADgAAAAACAA4AAAAAAgAOAAAAAAAADgAAAAADAA4AAAAAAQAOAAAAAAIAVgAAAAAAAA4AAAAAAwBQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAADgAAAAAAAA4AAAAAAwAOAAAAAAIADgAAAAACAA4AAAAAAgAOAAAAAAEADgAAAAABAA4AAAAAAAAOAAAAAAIAUAAAAAAAAFAAAAAAAAAsAAAAAAAAUAAAAAAAAFAAAAAAAAB8AAAAAAAAfAAAAAAAAA== + version: 7 0,0: ind: 0,0 - tiles: HQAAAAADHQAAAAACHQAAAAACDgAAAAAADgAAAAABDgAAAAABDgAAAAABDgAAAAACDgAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfAAAAAAAWQAAAAAGfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAACfAAAAAAADgAAAAAADgAAAAABDgAAAAABDgAAAAACDgAAAAABDgAAAAAADgAAAAACDgAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAATwAAAAAAfAAAAAAAWQAAAAAAWQAAAAAHWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAfAAAAAAATwAAAAAAfAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAATwAAAAAAWQAAAAAFWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAMWQAAAAAAWQAAAAAFWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAIWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAOwAAAAAAWQAAAAAIWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAFWQAAAAAIWQAAAAAAWQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWQAAAAAKWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAHWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAJWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAIWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAIWQAAAAAAWQAAAAAGWQAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAMWQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAHWQAAAAAAWQAAAAACWQAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAJWQAAAAAAWQAAAAAFTwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAHWQAAAAAHWQAAAAAKWQAAAAAFWQAAAAAAWQAAAAALWQAAAAAA - version: 6 + tiles: HQAAAAADAB0AAAAAAgAdAAAAAAIADgAAAAAAAA4AAAAAAQAOAAAAAAEADgAAAAABAA4AAAAAAgAOAAAAAAMAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAB8AAAAAAAAWQAAAAAGAHwAAAAAAAB8AAAAAAAAfAAAAAAAAB0AAAAAAgB8AAAAAAAADgAAAAAAAA4AAAAAAQAOAAAAAAEADgAAAAACAA4AAAAAAQAOAAAAAAAADgAAAAACAA4AAAAAAgBZAAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAAAWQAAAAAAAHwAAAAAAABPAAAAAAAAfAAAAAAAAFkAAAAAAABZAAAAAAcAWQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAAB8AAAAAAAATwAAAAAAAHwAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAATwAAAAAAAE8AAAAAAABZAAAAAAUAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAwAWQAAAAAAAFkAAAAABQBZAAAAAAAAWQAAAAAAAFkAAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAIAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAADsAAAAAAABZAAAAAAgAWQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAAAAFkAAAAABQBZAAAAAAgAWQAAAAAAAFkAAAAAAAA7AAAAAAAAOwAAAAAAADsAAAAAAAA7AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAOwAAAAAAADsAAAAAAAA7AAAAAAAAWQAAAAAKAFkAAAAAAQBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAA7AAAAAAAAOwAAAAAAAFkAAAAAAABZAAAAAAcAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAAJAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAgAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAACABZAAAAAAAAWQAAAAAGAFkAAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABZAAAAAAwAWQAAAAAAADsAAAAAAAA7AAAAAAAAOwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAcAWQAAAAAAAFkAAAAAAgBZAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAWQAAAAAAADsAAAAAAAA7AAAAAAAAOwAAAAAAADsAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAACQBZAAAAAAAAWQAAAAAFAE8AAAAAAABPAAAAAAAATwAAAAAAAFkAAAAAAABZAAAAAAAAOwAAAAAAADsAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAABQBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAHAFkAAAAABwBZAAAAAAoAWQAAAAAFAFkAAAAAAABZAAAAAAsAWQAAAAAAAA== + version: 7 -1,0: ind: -1,0 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAMWQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAAWQAAAAAKWQAAAAAIWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFWQAAAAAKWQAAAAAAWQAAAAAEWQAAAAAAWQAAAAAGHQAAAAADHQAAAAADHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAALWQAAAAAAWQAAAAAAWQAAAAAKWQAAAAAIfAAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAACHQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAABHQAAAAABWQAAAAAJWQAAAAAAWQAAAAAAWQAAAAALWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAGTwAAAAAAHQAAAAABHQAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAIWQAAAAADWQAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAEWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAMWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAMWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAAWQAAAAAAWQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAIWQAAAAAAWQAAAAAGWQAAAAAAWQAAAAAIWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAAWQAAAAAAWQAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAKTwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAJWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAA - version: 6 + tiles: ewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB8AAAAAAAAfAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAHwAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAATwAAAAAAAE8AAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAADABZAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAE8AAAAAAABPAAAAAAAAWQAAAAAKAFkAAAAACABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAFAFkAAAAACgBZAAAAAAAAWQAAAAAEAFkAAAAAAABZAAAAAAYAHQAAAAADAB0AAAAAAwAdAAAAAAAAfAAAAAAAAB0AAAAAAAAdAAAAAAIAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAACwBZAAAAAAAAWQAAAAAAAFkAAAAACgBZAAAAAAgAfAAAAAAAAB0AAAAAAQAdAAAAAAIAHQAAAAACAB0AAAAAAwAdAAAAAAIAHQAAAAACAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAHwAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAB8AAAAAAAAHQAAAAABAB0AAAAAAQBZAAAAAAkAWQAAAAAAAFkAAAAAAABZAAAAAAsAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAABgBPAAAAAAAAHQAAAAABAB0AAAAAAAB8AAAAAAAAfAAAAAAAAE8AAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAIAFkAAAAAAwBZAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfAAAAAAAAHwAAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAA7AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAFAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAOwAAAAAAAFkAAAAAAABZAAAAAAQAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAwAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAATwAAAAAAADsAAAAAAAA7AAAAAAAAOwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAADABZAAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAAAAE8AAAAAAABZAAAAAAAAWQAAAAAAADsAAAAAAAA7AAAAAAAAOwAAAAAAAFkAAAAAAABZAAAAAAgAWQAAAAAAAFkAAAAABgBZAAAAAAAAWQAAAAAIAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAAA7AAAAAAAAOwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAoATwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAJAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAA== + version: 7 1,-1: ind: 1,-1 - tiles: HQAAAAADHQAAAAADHQAAAAACHQAAAAACHQAAAAAATQAAAAAATQAAAAAATQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAACfAAAAAAAWQAAAAAAWQAAAAABWQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAADTQAAAAAATQAAAAAATQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAACfAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAADHQAAAAABHQAAAAACfAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAABfAAAAAAAfAAAAAAAfAAAAAAAWQAAAAAMWQAAAAAHWQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAAAAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAABHQAAAAACWQAAAAAFWQAAAAAATwAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAHQAAAAADHQAAAAABVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAHQAAAAACHQAAAAACHQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACAAAAAAAAfAAAAAAAHQAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAHQAAAAADHQAAAAADHQAAAAACWQAAAAAETwAAAAAAWQAAAAAEWQAAAAAAWQAAAAAAAAAAAAAAHQAAAAAAHQAAAAABVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAHQAAAAACHQAAAAADHQAAAAACWQAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAHQAAAAACVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAHQAAAAAAHQAAAAADHQAAAAACWQAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAJWQAAAAAAfAAAAAAAHQAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAHQAAAAAAHQAAAAABHQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAABHQAAAAABWQAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAJWQAAAAAAWQAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAABWQAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAGfAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAEWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAWQAAAAAATwAAAAAAWQAAAAAEWQAAAAAAWQAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAEWQAAAAAAWQAAAAAA - version: 6 + tiles: HQAAAAADAB0AAAAAAwAdAAAAAAIAHQAAAAACAB0AAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAgAdAAAAAAIAfAAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAACAB0AAAAAAwAdAAAAAAMAHQAAAAADAB0AAAAAAAAdAAAAAAMATQAAAAAAAE0AAAAAAABNAAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAMAHQAAAAACAHwAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAAdAAAAAAEAHQAAAAADAB0AAAAAAAAdAAAAAAEAHQAAAAACAB0AAAAAAAAdAAAAAAMAHQAAAAADAB0AAAAAAAAdAAAAAAMAHQAAAAABAB0AAAAAAgB8AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAHQAAAAADAB0AAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAEAHQAAAAACAB0AAAAAAwAdAAAAAAMAHQAAAAABAHwAAAAAAAB8AAAAAAAAfAAAAAAAAFkAAAAADABZAAAAAAcAWQAAAAAAAB0AAAAAAQAdAAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAIAHQAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAACAB0AAAAAAQBZAAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAAAAAAAAAAAAAAdAAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAMAHQAAAAABAB0AAAAAAQAdAAAAAAEAHQAAAAADAB0AAAAAAQAdAAAAAAIAWQAAAAAFAFkAAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAHQAAAAADAB0AAAAAAQBWAAAAAAAAVgAAAAAAAFYAAAAAAABWAAAAAAAAVgAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAACAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAIAAAAAAAAAAHwAAAAAAAAdAAAAAAAAVgAAAAAAAFYAAAAAAABWAAAAAAAAVgAAAAAAAFYAAAAAAAAdAAAAAAMAHQAAAAADAB0AAAAAAgBZAAAAAAQATwAAAAAAAFkAAAAABABZAAAAAAAAWQAAAAAAAAAAAAAAAAAdAAAAAAAAHQAAAAABAFYAAAAAAABWAAAAAAAAVgAAAAAAAFYAAAAAAABWAAAAAAAAHQAAAAACAB0AAAAAAwAdAAAAAAIAWQAAAAAAAE8AAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAfAAAAAAAAB0AAAAAAgBWAAAAAAAAVgAAAAAAAFYAAAAAAABWAAAAAAAAVgAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAACAFkAAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAkAWQAAAAAAAHwAAAAAAAAdAAAAAAAAVgAAAAAAAFYAAAAAAABWAAAAAAAAVgAAAAAAAFYAAAAAAAAdAAAAAAAAHQAAAAABAB0AAAAAAwBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB8AAAAAAAAHQAAAAABAB0AAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAQAdAAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAEAWQAAAAAAAE8AAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAfAAAAAAAAB0AAAAAAQAdAAAAAAMAHQAAAAACAB0AAAAAAgAdAAAAAAMAHQAAAAADAB0AAAAAAgAdAAAAAAAAHQAAAAADAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAACQBZAAAAAAAAWQAAAAAAAHwAAAAAAAB8AAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAAAAB0AAAAAAQAdAAAAAAMAHQAAAAAAAB0AAAAAAQBZAAAAAAAATwAAAAAAAE8AAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAABgB8AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAQAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAfAAAAAAAAFkAAAAAAABPAAAAAAAAWQAAAAAEAFkAAAAAAABZAAAAAAAATwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAE8AAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAABABZAAAAAAAAWQAAAAAAAA== + version: 7 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAKWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAFWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAALWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAATwAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAGWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAWQAAAAAAWQAAAAAHWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAWQAAAAAAWQAAAAAGWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAWQAAAAAKWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACfAAAAAAAfAAAAAAAfAAAAAAAWQAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAADbgAAAAAAfAAAAAAAagAAAAAAWwAAAAACWwAAAAADWwAAAAABWwAAAAABWwAAAAADfAAAAAAAHQAAAAAAHQAAAAABWQAAAAAAbgAAAAABbgAAAAABbgAAAAADbgAAAAADbgAAAAAAagAAAAAAagAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAABWwAAAAAAfAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAoAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAABQBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAsAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAABgBZAAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAAAfAAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAAfAAAAAAAAFkAAAAAAABZAAAAAAcAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAHwAAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAHwAAAAAAABZAAAAAAAAWQAAAAAGAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB8AAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAAB8AAAAAAAAWQAAAAAKAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAfAAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAAfAAAAAAAAFkAAAAAAABZAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAACAHwAAAAAAAB8AAAAAAAAfAAAAAAAAFkAAAAAAABuAAAAAAAAbgAAAAADAG4AAAAAAwBuAAAAAAMAbgAAAAAAAHwAAAAAAABqAAAAAAAAWwAAAAACAFsAAAAAAwBbAAAAAAEAWwAAAAABAFsAAAAAAwB8AAAAAAAAHQAAAAAAAB0AAAAAAQBZAAAAAAAAbgAAAAABAG4AAAAAAQBuAAAAAAMAbgAAAAADAG4AAAAAAABqAAAAAAAAagAAAAAAAFsAAAAAAwBbAAAAAAAAWwAAAAABAFsAAAAAAQBbAAAAAAAAfAAAAAAAAA== + version: 7 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAEWQAAAAAAWQAAAAAAWQAAAAAEWQAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAEWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFWQAAAAAAWQAAAAAFWQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAGWQAAAAAAWQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAALWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAFWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAKWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAEWQAAAAAAWQAAAAAAWQAAAAAEWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAHQAAAAABHQAAAAAAHQAAAAAC - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAABABZAAAAAAAAWQAAAAAAAFkAAAAABABZAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAUAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAEAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAABQBZAAAAAAAAWQAAAAAFAFkAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAABgBZAAAAAAAAWQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABZAAAAAAsAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAWQAAAAAFAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAKAFkAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABZAAAAAAAAWQAAAAAEAFkAAAAAAABZAAAAAAAAWQAAAAAEAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAFkAAAAAAABZAAAAAAAAfAAAAAAAAB0AAAAAAQAdAAAAAAAAHQAAAAACAA== + version: 7 -1,1: ind: -1,1 - tiles: WQAAAAAIWQAAAAAAWQAAAAALWQAAAAAAWQAAAAADWQAAAAAMWQAAAAAAWQAAAAAAWQAAAAAKWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAJWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAMWQAAAAAEWQAAAAAAWQAAAAAAWQAAAAAGWQAAAAAAWQAAAAAFWQAAAAADWQAAAAAEWQAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAEWQAAAAAHWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAEFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFTwAAAAAATwAAAAAATwAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAWQAAAAAAWQAAAAAKWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADTwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFWQAAAAAMWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAKFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAWQAAAAAEWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAALWQAAAAAHWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAMWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAKWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAKAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAKWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: WQAAAAAIAFkAAAAAAABZAAAAAAsAWQAAAAAAAFkAAAAAAwBZAAAAAAwAWQAAAAAAAFkAAAAAAABZAAAAAAoAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAkAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAwAWQAAAAAEAFkAAAAAAABZAAAAAAAAWQAAAAAGAFkAAAAAAABZAAAAAAUAWQAAAAADAFkAAAAABABZAAAAAAAATwAAAAAAAE8AAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAE8AAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAABABZAAAAAAcAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAEABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABPAAAAAAAATwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAABQBPAAAAAAAATwAAAAAAAE8AAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAWQAAAAAAAFkAAAAACgBZAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAMATwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAUAWQAAAAAMAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAKABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAABZAAAAAAQAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAFAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAsAWQAAAAAHAFkAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAADABZAAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAKAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAoAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAACgBZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,1: ind: 0,1 - tiles: WQAAAAAAWQAAAAAEWQAAAAAEWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAJWQAAAAAAWQAAAAAAWQAAAAAHWQAAAAAAWQAAAAAJWQAAAAAGWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAKWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAIWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAIWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAHWQAAAAAAWQAAAAAAWQAAAAALWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAAWQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAIWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAALWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAFWQAAAAAAWQAAAAAAWQAAAAAMWQAAAAAIWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAJWQAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAGWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAKWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAIWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAAJWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAA - version: 6 + tiles: WQAAAAAAAFkAAAAABABZAAAAAAQAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAkAWQAAAAAAAFkAAAAAAABZAAAAAAcAWQAAAAAAAFkAAAAACQBZAAAAAAYAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAACgBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAACABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAACABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAcAWQAAAAAAAFkAAAAAAABZAAAAAAsAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAE8AAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAATwAAAAAAAFkAAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAIAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAsAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAABQBZAAAAAAAAWQAAAAAAAFkAAAAADABZAAAAAAgAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAJAFkAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAGAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAoAWQAAAAACAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAIAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAwBZAAAAAAkAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAA== + version: 7 1,1: ind: 1,1 - tiles: WQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAKWQAAAAAMWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAIWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAEWQAAAAAAWQAAAAAAWQAAAAAEWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAGWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAMWQAAAAAAWQAAAAAAWQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAJWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAJWQAAAAAAWQAAAAABWQAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAJWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: WQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAoAWQAAAAAMAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAATwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAACABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAABABZAAAAAAAAWQAAAAAAAFkAAAAABABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAGAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAwAWQAAAAAAAFkAAAAAAABZAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAACQBZAAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAkAWQAAAAAAAFkAAAAAAQBZAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAkAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 1,0: ind: 1,0 - tiles: WQAAAAAATwAAAAAATwAAAAAAWQAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAALWQAAAAALWQAAAAAAWQAAAAAMWQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAMWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAOwAAAAAAOwAAAAAAWQAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAMWQAAAAAAWQAAAAAAWQAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFWQAAAAAFWQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAHAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAKWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAEWQAAAAAHWQAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAEWQAAAAAJWQAAAAAAWQAAAAAHWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAAJWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAKWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAHWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: WQAAAAAAAE8AAAAAAABPAAAAAAAAWQAAAAAAADsAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAADsAAAAAAAA7AAAAAAAAOwAAAAAAAFkAAAAAAABZAAAAAAAAOwAAAAAAADsAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAALAFkAAAAACwBZAAAAAAAAWQAAAAAMAFkAAAAAAAA7AAAAAAAAOwAAAAAAADsAAAAAAAA7AAAAAAAAOwAAAAAAADsAAAAAAAA7AAAAAAAAOwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAMAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAOwAAAAAAADsAAAAAAAA7AAAAAAAAOwAAAAAAADsAAAAAAAA7AAAAAAAAOwAAAAAAADsAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAAAWQAAAAAAADsAAAAAAAA7AAAAAAAAOwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAADsAAAAAAAA7AAAAAAAAWQAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAFkAAAAADABZAAAAAAAAWQAAAAAAAFkAAAAAAAA7AAAAAAAAOwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAAA7AAAAAAAAOwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAFAFkAAAAABQBZAAAAAAAAOwAAAAAAADsAAAAAAAA7AAAAAAAAOwAAAAAAADsAAAAAAAA7AAAAAAAAOwAAAAAAADsAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAgA7AAAAAAAAOwAAAAAAADsAAAAAAAA7AAAAAAAAOwAAAAAAADsAAAAAAAA7AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAcAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAOwAAAAAAADsAAAAAAAA7AAAAAAAAWQAAAAAAAFkAAAAACgBZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAABABZAAAAAAcAWQAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAEAFkAAAAACQBZAAAAAAAAWQAAAAAHAFkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAAJAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAoAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAABwBZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAAATwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 1,-2: ind: 1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAIWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFWQAAAAABWQAAAAAAWQAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAMWQAAAAAAWQAAAAALWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAKWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAEWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAMWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAagAAAAAAHQAAAAACHQAAAAADHQAAAAACfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAACHQAAAAABagAAAAAAfAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAJfAAAAAAAagAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAABHQAAAAABHQAAAAABagAAAAAAfAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAagAAAAAAHQAAAAAAHQAAAAABHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAACHQAAAAADHQAAAAACagAAAAAAfAAAAAAAWQAAAAALWQAAAAAAWQAAAAAAWQAAAAAEHQAAAAACHQAAAAACHQAAAAABHQAAAAABTQAAAAAATQAAAAAATQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAAAfAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAD - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAgAWQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAFAFkAAAAAAQBZAAAAAAAAWQAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAAAWQAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABZAAAAAAwAWQAAAAAAAFkAAAAACwBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAKAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAABQBZAAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAQAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAADABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAfAAAAAAAAGoAAAAAAAAdAAAAAAIAHQAAAAADAB0AAAAAAgB8AAAAAAAAfAAAAAAAAHwAAAAAAAAdAAAAAAAAHQAAAAACAB0AAAAAAQBqAAAAAAAAfAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAJAHwAAAAAAABqAAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAMAHQAAAAACAB0AAAAAAgAdAAAAAAMAHQAAAAABAB0AAAAAAQAdAAAAAAEAagAAAAAAAHwAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB8AAAAAAAAagAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAB0AAAAAAgAdAAAAAAMAHQAAAAACAGoAAAAAAAB8AAAAAAAAWQAAAAALAFkAAAAAAABZAAAAAAAAWQAAAAAEAB0AAAAAAgAdAAAAAAIAHQAAAAABAB0AAAAAAQBNAAAAAAAATQAAAAAAAE0AAAAAAAAdAAAAAAEAHQAAAAADAB0AAAAAAgAdAAAAAAAAfAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAADAA== + version: 7 -2,0: ind: -2,0 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAEWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAHWQAAAAAAWQAAAAABTwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFWQAAAAAATwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAETwAAAAAATwAAAAAATwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAALWQAAAAAAWQAAAAALWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAIWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAALWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAEWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAA - version: 6 + tiles: ewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAQAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAABwBZAAAAAAAAWQAAAAABAE8AAAAAAAB8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAFAFkAAAAAAABPAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAEAE8AAAAAAABPAAAAAAAATwAAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAALAFkAAAAAAABZAAAAAAsAWQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAgAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAACwBZAAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAABABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAA== + version: 7 -2,1: ind: -2,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAJWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAJWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAJWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAAWQAAAAAAFAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAAWQAAAAAKFAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAJWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAFAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAHWQAAAAAKWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAFAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAGWQAAAAAJWQAAAAALWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAFAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAALWQAAAAAIWQAAAAAAWQAAAAAIWQAAAAAAWQAAAAAAWQAAAAAGFAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAEWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAEWQAAAAAAWQAAAAAMWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAEWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAIWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFWQAAAAAFWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAkAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAACQBZAAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAACQBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAATwAAAAAAAFkAAAAAAAAUAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAE8AAAAAAABZAAAAAAoAFAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAkAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAABQAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAcAWQAAAAAKAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAAUAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAYAWQAAAAAJAFkAAAAACwBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAFAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAALAFkAAAAACABZAAAAAAAAWQAAAAAIAFkAAAAAAABZAAAAAAAAWQAAAAAGABQAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAABABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAABQBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAABABZAAAAAAAAWQAAAAAMAFkAAAAAAgBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAEAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAgAWQAAAAAAAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAFAFkAAAAABQBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAAAAAAAAAAA== + version: 7 -2,-2: ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 2,0: ind: 2,0 - tiles: TwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: TwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 2,-1: ind: 2,-1 - tiles: TwAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAWQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAWQAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: TwAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE8AAAAAAABZAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAAFkAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 2,-2: ind: 2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAIWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAgAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -2,2: ind: -2,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,2: ind: 0,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFWQAAAAAEWQAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAABQBZAAAAAAQAWQAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 1,2: ind: 1,2 - tiles: WQAAAAAAWQAAAAAFWQAAAAACWQAAAAAJWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: WQAAAAAAAFkAAAAABQBZAAAAAAIAWQAAAAAJAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -3,0: ind: -3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -1620,16 +1631,19 @@ entities: - type: RadiationGridResistance - type: OccluderTree - type: Shuttle + dampingModifier: 0.25 - type: GravityShake shakeTimes: 10 - type: GasTileOverlay - type: SpreaderGrid - type: GridPathfinding + - type: ImplicitRoof - uid: 1295 components: - type: MetaData - type: Transform - type: Map + mapPaused: True - type: GridTree - type: FTLDestination whitelist: @@ -1658,7 +1672,6 @@ entities: - 0 - 0 - 0 - - type: LoadedMap - proto: AirlockExternalGlassNukeopLocked entities: - uid: 49 @@ -6668,14 +6681,14 @@ entities: - uid: 1635 components: - type: Transform - pos: 5.4970627,10.597828 + pos: 5.568222,13.296588 parent: 104 - proto: BoxMagazinePistolSubMachineGunPractice entities: - uid: 1634 components: - type: Transform - pos: 5.388983,13.953581 + pos: 5.4014716,13.713544 parent: 104 - proto: BoxPillCanister entities: @@ -10318,13 +10331,6 @@ entities: - type: Transform pos: 19.246769,6.507033 parent: 104 -- proto: CombatKnife - entities: - - uid: 1694 - components: - - type: Transform - pos: 5.483225,11.368477 - parent: 104 - proto: ComfyChair entities: - uid: 21 @@ -10417,18 +10423,6 @@ entities: - type: Transform pos: -0.5303154,-6.2851996 parent: 104 -- proto: EmpGrenade - entities: - - uid: 2456 - components: - - type: Transform - pos: 14.40774,-17.385033 - parent: 104 - - uid: 2457 - components: - - type: Transform - pos: 14.62649,-17.385033 - parent: 104 - proto: ExtinguisherCabinetFilled entities: - uid: 139 @@ -10771,18 +10765,6 @@ entities: parent: 104 - type: PointLight radius: 175.75 -- proto: GrenadeFlashBang - entities: - - uid: 2309 - components: - - type: Transform - pos: 11.399388,-16.363453 - parent: 104 - - uid: 2310 - components: - - type: Transform - pos: 11.571263,-16.363453 - parent: 104 - proto: Grille entities: - uid: 95 @@ -11138,7 +11120,7 @@ entities: - uid: 1648 components: - type: Transform - pos: 5.7430096,13.989216 + pos: 5.5473785,13.984566 parent: 104 - type: BallisticAmmoProvider unspawnedCount: 35 @@ -11164,55 +11146,6 @@ entities: - type: Transform pos: -1.5,-16.5 parent: 104 -- proto: MedkitAdvancedFilled - entities: - - uid: 447 - components: - - type: Transform - pos: 7.5183387,-10.279964 - parent: 104 -- proto: MedkitBruteFilled - entities: - - uid: 138 - components: - - type: Transform - pos: 7.5183387,-10.576839 - parent: 104 -- proto: MedkitBurnFilled - entities: - - uid: 1894 - components: - - type: Transform - pos: 7.5339637,-10.889339 - parent: 104 -- proto: MedkitFilled - entities: - - uid: 770 - components: - - type: Transform - pos: 0.48478004,-16.399067 - parent: 104 -- proto: MedkitOxygenFilled - entities: - - uid: 1895 - components: - - type: Transform - pos: 7.5339637,-11.186214 - parent: 104 -- proto: MedkitRadiationFilled - entities: - - uid: 448 - components: - - type: Transform - pos: 7.5495887,-11.733089 - parent: 104 -- proto: MedkitToxinFilled - entities: - - uid: 1388 - components: - - type: Transform - pos: 7.5339637,-11.436214 - parent: 104 - proto: Mirror entities: - uid: 142 @@ -11265,6 +11198,63 @@ entities: - type: Transform pos: 12.149857,15.427643 parent: 104 +- proto: NukeOpsAmmoSpawner + entities: + - uid: 770 + components: + - type: Transform + pos: 5.5,10.5 + parent: 104 +- proto: NukeOpsGrenadeSpawner + entities: + - uid: 228 + components: + - type: Transform + pos: 14.5,-17.5 + parent: 104 + - uid: 448 + components: + - type: Transform + pos: 11.5,-16.5 + parent: 104 +- proto: NukeOpsLootSpawner + entities: + - uid: 1703 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 104 + - uid: 1704 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 104 +- proto: NukeOpsMedkitBruteSpawner + entities: + - uid: 447 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 104 +- proto: NukeOpsMedkitSpawner + entities: + - uid: 306 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 104 +- proto: NukeOpsWeaponSpawner + entities: + - uid: 1388 + components: + - type: Transform + pos: 5.5,11.5 + parent: 104 + - uid: 1694 + components: + - type: Transform + pos: 5.5,12.5 + parent: 104 - proto: OperatingTable entities: - uid: 2435 @@ -11452,18 +11442,6 @@ entities: - type: Transform pos: 8.5,-12.5 parent: 104 -- proto: PosterContrabandLustyExomorph - entities: - - uid: 754 - components: - - type: Transform - pos: -3.5,-13.5 - parent: 104 - - uid: 2447 - components: - - type: Transform - pos: 15.5,-15.5 - parent: 104 - proto: PosterContrabandMoth entities: - uid: 2462 @@ -11492,6 +11470,18 @@ entities: - type: Transform pos: 25.5,-12.5 parent: 104 +- proto: PosterContrabandRealExomorph + entities: + - uid: 754 + components: + - type: Transform + pos: -3.5,-13.5 + parent: 104 + - uid: 2447 + components: + - type: Transform + pos: 15.5,-15.5 + parent: 104 - proto: PosterContrabandRebelsUnite entities: - uid: 2446 @@ -12972,6 +12962,11 @@ entities: parent: 104 - proto: SprayBottle entities: + - uid: 138 + components: + - type: Transform + pos: 14.5635,-16.40939 + parent: 104 - uid: 1699 components: - type: Transform @@ -13586,24 +13581,12 @@ entities: - type: Transform pos: 0.5,10.5 parent: 104 -- proto: TearGasGrenade - entities: - - uid: 306 - components: - - type: Transform - pos: 14.638793,-16.908663 - parent: 104 - - uid: 1703 - components: - - type: Transform - pos: 14.341918,-16.877413 - parent: 104 - proto: Telecrystal1 entities: - uid: 2474 components: - type: Transform - pos: 2.9398513,-3.4842777 + pos: 3.1330178,-3.4578767 parent: 104 - proto: TimerTrigger entities: @@ -13651,7 +13634,7 @@ entities: - uid: 2470 components: - type: Transform - pos: 2.5657434,-3.260709 + pos: 2.3930676,-2.59717 parent: 104 - proto: ToyFigurineNukie entities: @@ -15143,22 +15126,6 @@ entities: - type: Transform pos: 11.5,-4.5 parent: 104 -- proto: WeaponPistolCobra - entities: - - uid: 1705 - components: - - type: Transform - pos: 5.4793262,12.166912 - parent: 104 -- proto: WeaponShotgunSawn - entities: - - uid: 228 - components: - - type: Transform - pos: 5.347948,13.528896 - parent: 104 - - type: BallisticAmmoProvider - unspawnedCount: 2 - proto: WeaponSprayNozzle entities: - uid: 152 @@ -15166,13 +15133,6 @@ entities: - type: Transform pos: 9.67418,-4.571714 parent: 104 -- proto: WeaponSubMachineGunC20r - entities: - - uid: 1704 - components: - - type: Transform - pos: 5.497257,12.817707 - parent: 104 - proto: WelderIndustrial entities: - uid: 207 diff --git a/Resources/Maps/Shuttles/ShuttleEvent/flatline.yml b/Resources/Maps/Shuttles/ShuttleEvent/flatline.yml index b623ec6813..477d3d6433 100644 --- a/Resources/Maps/Shuttles/ShuttleEvent/flatline.yml +++ b/Resources/Maps/Shuttles/ShuttleEvent/flatline.yml @@ -859,7 +859,7 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitParamedicNT +- proto: ClothingUniformJumpsuitParamedic entities: - uid: 213 components: diff --git a/Resources/Maps/Shuttles/arrivals_relic.yml b/Resources/Maps/Shuttles/arrivals_relic.yml index 3f6c7e846c..4d586843fe 100644 --- a/Resources/Maps/Shuttles/arrivals_relic.yml +++ b/Resources/Maps/Shuttles/arrivals_relic.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Grid - engineVersion: 260.0.0 + engineVersion: 264.0.0 forkId: "" forkVersion: "" - time: 06/09/2025 21:38:40 - entityCount: 317 + time: 08/21/2025 00:31:06 + entityCount: 318 maps: [] grids: - 2 @@ -30,11 +30,27 @@ entities: chunks: 0,0: ind: 0,0 - tiles: XwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAAAAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAAAAAAAAAACCAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAABfAAAAAAAAXwAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAF8AAAAAAABfAAAAAAAAggAAAAAAAAAAAAAAAACCAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAIIAAAAAAAAAAAAAAAAAggAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAAAAAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAAAAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAAAAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAAAAAAAAAABfAAAAAAAAXwAAAAAAAA== version: 7 - 0,-1: - ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAXwAAAAAAAF8AAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAggAAAAAAAAAAAAAAAACCAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAAAAAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAAAAAAAAAAA== + 0,1: + ind: 0,1 + tiles: XwAAAAAAAF8AAAAAAABfAAAAAAAAggAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAIIAAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAggAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAAAAAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAAAAAAAAAAAAggAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 1,1: + ind: 1,1 + tiles: XwAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAA== + version: 7 + 1,0: + ind: 1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 - type: Broadphase - type: Physics @@ -63,71 +79,57 @@ entities: version: 2 data: tiles: - 0,0: - 0: 52975 - 1: 8448 - 0,-1: - 0: 61120 - 1: 292 - 0,1: - 1: 4 - 1,0: - 0: 61183 - 1,-1: - 0: 65248 - 1,1: - 1: 8464 - 0: 52416 - 2,0: - 0: 30587 - 2,1: - 0: 65328 - 1: 64 - 1,2: - 1: 8 - 2,-1: - 0: 30576 - 2,2: - 0: 12 - 1: 64 - 3,0: - 0: 4919 - 1: 16384 - 3,-1: - 0: 13072 - 1: 66 - 3,1: - 1: 16898 - 3,2: - 1: 36 - 1,-2: - 1: 4392 - 0: 52416 - 2,-2: - 0: 16380 - 1: 16384 - 2,-3: - 1: 16384 - 3,-3: - 1: 8192 - 3,-2: - 1: 580 + 0,3: + 0: 67 + 1: 28672 + -1,3: + 0: 128 + 0,4: + 1: 61159 + 0: 4104 + 1,3: + 0: 18 + 1: 3776 + 1,4: + 1: 61166 + 2,3: + 1: 8049 + 0: 8 + 2,4: + 1: 65534 + 3,3: + 0: 88 + 1: 49152 + 3,4: + 1: 61164 + 0: 2 + 4,3: + 0: 33 + 1: 4096 + -1,4: + 0: 8 + 0,5: + 1: 14 + 0: 3104 + 1,5: + 1: 59630 + 1,6: + 0: 1057 + 1: 206 + 2,5: + 1: 62463 + 2,6: + 1: 383 + 0: 1152 + 3,6: + 0: 1 + 3,5: + 1: 14 + 0: 1664 + 4,4: + 1: 1 + 0: 4098 uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 immutable: True moles: @@ -143,1849 +145,1796 @@ entities: - 0 - 0 - 0 + - 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: ImplicitRoof - proto: AirlockCommandGlassLocked - entities: - - uid: 67 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,0.5 - parent: 2 -- proto: AirlockExternalGlassLocked - entities: - - uid: 108 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-6.5 - parent: 2 - - uid: 109 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,7.5 - parent: 2 - - uid: 110 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,6.5 - parent: 2 - - uid: 111 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-5.5 - parent: 2 -- proto: AirlockGlassShuttle - entities: - - uid: 66 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,0.5 - parent: 2 -- proto: APCBasic - entities: - - uid: 291 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,0.5 - parent: 2 -- proto: CableApcExtension - entities: - - uid: 175 - components: - - type: Transform - pos: 12.5,2.5 - parent: 2 - - uid: 188 - components: - - type: Transform - pos: 12.5,1.5 - parent: 2 - - uid: 189 - components: - - type: Transform - pos: 9.5,0.5 - parent: 2 - - uid: 192 - components: - - type: Transform - pos: 11.5,0.5 - parent: 2 - - uid: 193 - components: - - type: Transform - pos: 10.5,0.5 - parent: 2 - - uid: 194 - components: - - type: Transform - pos: 12.5,-1.5 - parent: 2 - - uid: 195 - components: - - type: Transform - pos: 12.5,-0.5 - parent: 2 - - uid: 196 - components: - - type: Transform - pos: 13.5,0.5 - parent: 2 - - uid: 197 - components: - - type: Transform - pos: 12.5,0.5 - parent: 2 - - uid: 198 - components: - - type: Transform - pos: 10.5,-2.5 - parent: 2 - - uid: 199 - components: - - type: Transform - pos: 9.5,-2.5 - parent: 2 - - uid: 200 - components: - - type: Transform - pos: 8.5,-2.5 - parent: 2 - - uid: 201 - components: - - type: Transform - pos: 7.5,-2.5 - parent: 2 - - uid: 202 - components: - - type: Transform - pos: 6.5,-2.5 - parent: 2 - - uid: 203 - components: - - type: Transform - pos: 5.5,-2.5 - parent: 2 - - uid: 204 - components: - - type: Transform - pos: 5.5,-1.5 - parent: 2 - - uid: 205 - components: - - type: Transform - pos: 5.5,-0.5 - parent: 2 - - uid: 206 - components: - - type: Transform - pos: 5.5,0.5 - parent: 2 - - uid: 207 - components: - - type: Transform - pos: 5.5,1.5 - parent: 2 - - uid: 208 - components: - - type: Transform - pos: 5.5,2.5 - parent: 2 - - uid: 209 - components: - - type: Transform - pos: 5.5,3.5 - parent: 2 - - uid: 210 - components: - - type: Transform - pos: 6.5,3.5 - parent: 2 - - uid: 211 - components: - - type: Transform - pos: 7.5,3.5 - parent: 2 - - uid: 212 - components: - - type: Transform - pos: 8.5,3.5 - parent: 2 - - uid: 213 - components: - - type: Transform - pos: 9.5,3.5 - parent: 2 - - uid: 214 - components: - - type: Transform - pos: 10.5,3.5 - parent: 2 - - uid: 215 - components: - - type: Transform - pos: 4.5,0.5 - parent: 2 - - uid: 216 - components: - - type: Transform - pos: 3.5,0.5 - parent: 2 - - uid: 217 - components: - - type: Transform - pos: 2.5,0.5 - parent: 2 - - uid: 218 - components: - - type: Transform - pos: 1.5,0.5 - parent: 2 - - uid: 219 - components: - - type: Transform - pos: 3.5,1.5 - parent: 2 - - uid: 220 - components: - - type: Transform - pos: 3.5,2.5 - parent: 2 - - uid: 221 - components: - - type: Transform - pos: 3.5,3.5 - parent: 2 - - uid: 222 - components: - - type: Transform - pos: 3.5,0.5 - parent: 2 - - uid: 223 - components: - - type: Transform - pos: 3.5,-0.5 - parent: 2 - - uid: 224 - components: - - type: Transform - pos: 3.5,-1.5 - parent: 2 - - uid: 225 - components: - - type: Transform - pos: 3.5,-2.5 - parent: 2 - - uid: 228 - components: - - type: Transform - pos: 7.5,4.5 - parent: 2 - - uid: 229 - components: - - type: Transform - pos: 7.5,5.5 - parent: 2 - - uid: 230 - components: - - type: Transform - pos: 7.5,6.5 - parent: 2 - - uid: 231 - components: - - type: Transform - pos: 8.5,6.5 - parent: 2 - - uid: 232 - components: - - type: Transform - pos: 9.5,6.5 - parent: 2 - - uid: 233 - components: - - type: Transform - pos: 9.5,7.5 - parent: 2 - - uid: 234 - components: - - type: Transform - pos: 10.5,7.5 - parent: 2 - - uid: 235 - components: - - type: Transform - pos: 11.5,7.5 - parent: 2 - - uid: 236 - components: - - type: Transform - pos: 11.5,8.5 - parent: 2 - - uid: 237 - components: - - type: Transform - pos: 7.5,-3.5 - parent: 2 - - uid: 238 - components: - - type: Transform - pos: 7.5,-4.5 - parent: 2 - - uid: 239 - components: - - type: Transform - pos: 7.5,-5.5 - parent: 2 - - uid: 240 - components: - - type: Transform - pos: 8.5,-5.5 - parent: 2 - - uid: 241 - components: - - type: Transform - pos: 9.5,-5.5 - parent: 2 - - uid: 242 - components: - - type: Transform - pos: 9.5,-6.5 - parent: 2 - - uid: 243 - components: - - type: Transform - pos: 10.5,-6.5 - parent: 2 - - uid: 244 - components: - - type: Transform - pos: 11.5,-6.5 - parent: 2 - - uid: 245 - components: - - type: Transform - pos: 11.5,-7.5 - parent: 2 - - uid: 292 - components: - - type: Transform - pos: 8.5,0.5 - parent: 2 - - uid: 293 - components: - - type: Transform - pos: 7.5,0.5 - parent: 2 - - uid: 294 - components: - - type: Transform - pos: 6.5,0.5 - parent: 2 -- proto: CableHV - entities: - - uid: 1 - components: - - type: Transform - pos: 11.5,1.5 - parent: 2 - - uid: 174 - components: - - type: Transform - pos: 7.5,4.5 - parent: 2 - - uid: 176 - components: - - type: Transform - pos: 12.5,-2.5 - parent: 2 - - uid: 177 - components: - - type: Transform - pos: 12.5,-1.5 - parent: 2 - - uid: 178 - components: - - type: Transform - pos: 12.5,-0.5 - parent: 2 - - uid: 179 - components: - - type: Transform - pos: 12.5,0.5 - parent: 2 - - uid: 180 - components: - - type: Transform - pos: 12.5,1.5 - parent: 2 - - uid: 181 - components: - - type: Transform - pos: 12.5,2.5 - parent: 2 - - uid: 182 - components: - - type: Transform - pos: 12.5,3.5 - parent: 2 - - uid: 186 - components: - - type: Transform - pos: 9.5,6.5 - parent: 2 - - uid: 289 - components: - - type: Transform - pos: 8.5,6.5 - parent: 2 - - uid: 290 - components: - - type: Transform - pos: 7.5,3.5 - parent: 2 - - uid: 295 - components: - - type: Transform - pos: 7.5,2.5 - parent: 2 - - uid: 296 - components: - - type: Transform - pos: 7.5,1.5 - parent: 2 - - uid: 297 - components: - - type: Transform - pos: 7.5,0.5 - parent: 2 - - uid: 298 - components: - - type: Transform - pos: 7.5,-0.5 - parent: 2 - - uid: 299 - components: - - type: Transform - pos: 7.5,-1.5 - parent: 2 - - uid: 300 - components: - - type: Transform - pos: 7.5,-3.5 - parent: 2 - - uid: 301 - components: - - type: Transform - pos: 7.5,-4.5 - parent: 2 - - uid: 302 - components: - - type: Transform - pos: 7.5,-5.5 - parent: 2 - - uid: 303 - components: - - type: Transform - pos: 7.5,-2.5 - parent: 2 - - uid: 304 - components: - - type: Transform - pos: 8.5,-5.5 - parent: 2 - - uid: 305 - components: - - type: Transform - pos: 7.5,5.5 - parent: 2 - - uid: 306 - components: - - type: Transform - pos: 9.5,-5.5 - parent: 2 - - uid: 307 - components: - - type: Transform - pos: 9.5,3.5 - parent: 2 - - uid: 308 - components: - - type: Transform - pos: 10.5,3.5 - parent: 2 - - uid: 309 - components: - - type: Transform - pos: 9.5,-2.5 - parent: 2 - - uid: 310 - components: - - type: Transform - pos: 10.5,-2.5 - parent: 2 - - uid: 313 - components: - - type: Transform - pos: 11.5,3.5 - parent: 2 - - uid: 314 - components: - - type: Transform - pos: 11.5,-2.5 - parent: 2 - - uid: 315 - components: - - type: Transform - pos: 7.5,6.5 - parent: 2 - - uid: 316 - components: - - type: Transform - pos: 8.5,-2.5 - parent: 2 - - uid: 317 - components: - - type: Transform - pos: 8.5,3.5 - parent: 2 -- proto: CableMV - entities: - - uid: 184 - components: - - type: Transform - pos: 11.5,1.5 - parent: 2 - - uid: 190 - components: - - type: Transform - pos: 11.5,0.5 - parent: 2 - - uid: 191 - components: - - type: Transform - pos: 10.5,0.5 - parent: 2 -- proto: CableTerminal - entities: - - uid: 311 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,3.5 - parent: 2 - - uid: 312 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-2.5 - parent: 2 -- proto: Chair - entities: - - uid: 68 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,2.5 - parent: 2 - - uid: 69 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,2.5 - parent: 2 - - uid: 70 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,2.5 - parent: 2 - - uid: 71 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,2.5 - parent: 2 - - uid: 72 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,2.5 - parent: 2 - - uid: 73 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,2.5 - parent: 2 - - uid: 74 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,1.5 - parent: 2 - - uid: 75 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,1.5 - parent: 2 - - uid: 76 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,1.5 - parent: 2 - - uid: 77 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,1.5 - parent: 2 - - uid: 78 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,1.5 - parent: 2 - - uid: 79 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-1.5 - parent: 2 - - uid: 80 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-1.5 - parent: 2 - - uid: 81 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-1.5 - parent: 2 - - uid: 82 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-1.5 - parent: 2 - - uid: 83 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-1.5 - parent: 2 - - uid: 84 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-1.5 - parent: 2 - - uid: 85 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-0.5 - parent: 2 - - uid: 86 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-0.5 - parent: 2 - - uid: 87 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-0.5 - parent: 2 - - uid: 88 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-0.5 - parent: 2 - - uid: 89 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-0.5 - parent: 2 -- proto: ComputerShuttle - entities: - - uid: 63 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,0.5 - parent: 2 -- proto: GasPipeBend - entities: - - uid: 261 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,7.5 - parent: 2 - - uid: 264 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-6.5 - parent: 2 - - uid: 275 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-7.5 - parent: 2 - - uid: 278 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,8.5 - parent: 2 -- proto: GasPipeStraight - entities: - - uid: 265 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,7.5 - parent: 2 - - uid: 267 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-6.5 - parent: 2 - - uid: 268 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-6.5 - parent: 2 - - uid: 269 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,7.5 - parent: 2 - - uid: 273 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-6.5 - parent: 2 - - uid: 274 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-7.5 - parent: 2 - - uid: 279 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,7.5 - parent: 2 - - uid: 280 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,8.5 - parent: 2 -- proto: GasPipeTJunction - entities: - - uid: 173 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-5.5 - parent: 2 - - uid: 258 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-5.5 - parent: 2 - - uid: 259 - components: - - type: Transform - pos: 7.5,6.5 - parent: 2 - - uid: 260 - components: - - type: Transform - pos: 6.5,6.5 - parent: 2 - - uid: 262 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,6.5 - parent: 2 - - uid: 263 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-5.5 - parent: 2 - - uid: 266 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-6.5 - parent: 2 - - uid: 270 - components: - - type: Transform - pos: 11.5,-6.5 - parent: 2 - - uid: 271 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,7.5 - parent: 2 - - uid: 272 - components: - - type: Transform - pos: 13.5,-7.5 - parent: 2 - - uid: 276 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,8.5 - parent: 2 - - uid: 277 - components: - - type: Transform - pos: 13.5,7.5 - parent: 2 -- proto: GasPort - entities: - - uid: 252 - components: - - type: Transform - pos: 6.5,-4.5 - parent: 2 - - uid: 253 - components: - - type: Transform - pos: 7.5,-4.5 - parent: 2 - - uid: 254 - components: - - type: Transform - pos: 8.5,-4.5 - parent: 2 - - uid: 255 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,5.5 - parent: 2 - - uid: 256 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,5.5 - parent: 2 - - uid: 257 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,5.5 - parent: 2 -- proto: GeneratorBasic15kW - entities: - - uid: 185 - components: - - type: Transform - pos: 9.5,6.5 - parent: 2 - - uid: 187 - components: - - type: Transform - pos: 9.5,-5.5 - parent: 2 -- proto: GravityGeneratorMini - entities: - - uid: 287 - components: - - type: Transform - pos: 11.5,8.5 - parent: 2 -- proto: Grille - entities: - - uid: 51 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,4.5 - parent: 2 - - uid: 152 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,6.5 - parent: 2 - - uid: 160 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-5.5 - parent: 2 - - uid: 161 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-5.5 - parent: 2 - - uid: 162 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-6.5 - parent: 2 - - uid: 163 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-7.5 - parent: 2 - - uid: 164 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-8.5 - parent: 2 - - uid: 165 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-6.5 - parent: 2 - - uid: 166 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-7.5 - parent: 2 - - uid: 167 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,7.5 - parent: 2 - - uid: 168 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,7.5 - parent: 2 - - uid: 169 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,8.5 - parent: 2 - - uid: 170 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,8.5 - parent: 2 - - uid: 171 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,9.5 - parent: 2 - - uid: 172 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,6.5 - parent: 2 - - uid: 227 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-3.5 - parent: 2 -- proto: Gyroscope - entities: - - uid: 288 - components: - - type: Transform - pos: 11.5,-7.5 - parent: 2 -- proto: LiquidCarbonDioxideCanister - entities: - - uid: 285 - components: - - type: Transform - anchored: True - pos: 8.5,5.5 - parent: 2 - - type: Physics - bodyType: Static - - uid: 286 - components: - - type: Transform - anchored: True - pos: 8.5,-4.5 - parent: 2 - - type: Physics - bodyType: Static -- proto: LiquidOxygenCanister - entities: - - uid: 283 - components: - - type: Transform - anchored: True - pos: 7.5,5.5 - parent: 2 - - type: Physics - bodyType: Static - - uid: 284 - components: - - type: Transform - anchored: True - pos: 7.5,-4.5 - parent: 2 - - type: Physics - bodyType: Static -- proto: LockerSteel - entities: - - uid: 90 - components: - - type: Transform - anchored: True - pos: 10.5,3.5 - parent: 2 - - type: Physics - bodyType: Static - - uid: 91 - components: - - type: Transform - anchored: True - pos: 9.5,3.5 - parent: 2 - - type: Physics - bodyType: Static - - uid: 92 - components: - - type: Transform - anchored: True - pos: 8.5,3.5 - parent: 2 - - type: Physics - bodyType: Static - - uid: 93 - components: - - type: Transform - anchored: True - pos: 7.5,3.5 - parent: 2 - - type: Physics - bodyType: Static - - uid: 94 - components: - - type: Transform - anchored: True - pos: 6.5,3.5 - parent: 2 - - type: Physics - bodyType: Static - - uid: 95 - components: - - type: Transform - anchored: True - pos: 5.5,3.5 - parent: 2 - - type: Physics - bodyType: Static - - uid: 96 - components: - - type: Transform - anchored: True - pos: 10.5,-2.5 - parent: 2 - - type: Physics - bodyType: Static - - uid: 97 - components: - - type: Transform - anchored: True - pos: 9.5,-2.5 - parent: 2 - - type: Physics - bodyType: Static - - uid: 98 - components: - - type: Transform - anchored: True - pos: 8.5,-2.5 - parent: 2 - - type: Physics - bodyType: Static - - uid: 99 - components: - - type: Transform - anchored: True - pos: 7.5,-2.5 - parent: 2 - - type: Physics - bodyType: Static - - uid: 100 - components: - - type: Transform - anchored: True - pos: 6.5,-2.5 - parent: 2 - - type: Physics - bodyType: Static - - uid: 101 - components: - - type: Transform - anchored: True - pos: 5.5,-2.5 - parent: 2 - - type: Physics - bodyType: Static -- proto: PlasmaCanister - entities: - - uid: 281 - components: - - type: Transform - anchored: True - pos: 6.5,5.5 - parent: 2 - - type: Physics - bodyType: Static - - uid: 282 - components: - - type: Transform - anchored: True - pos: 6.5,-4.5 - parent: 2 - - type: Physics - bodyType: Static -- proto: PoweredlightLED - entities: - - uid: 246 - components: - - type: Transform - pos: 4.5,1.5 - parent: 2 - - uid: 247 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-0.5 - parent: 2 - - uid: 248 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,0.5 - parent: 2 - - uid: 249 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,0.5 - parent: 2 - - uid: 250 - components: - - type: Transform - pos: 8.5,7.5 - parent: 2 - - uid: 251 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-6.5 - parent: 2 -- proto: ShuttleWindow - entities: - - uid: 40 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,4.5 - parent: 2 - - uid: 132 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,6.5 - parent: 2 - - uid: 146 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,9.5 - parent: 2 - - uid: 147 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,8.5 - parent: 2 - - uid: 148 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,7.5 - parent: 2 - - uid: 149 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,6.5 - parent: 2 - - uid: 150 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,8.5 - parent: 2 - - uid: 151 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,7.5 - parent: 2 - - uid: 153 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-6.5 - parent: 2 - - uid: 154 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-7.5 - parent: 2 - - uid: 155 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-5.5 - parent: 2 - - uid: 156 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-6.5 - parent: 2 - - uid: 157 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-7.5 - parent: 2 - - uid: 158 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-8.5 - parent: 2 - - uid: 159 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-5.5 - parent: 2 - - uid: 226 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-3.5 - parent: 2 -- proto: SMESBasic - entities: - - uid: 64 - components: - - type: Transform - pos: 12.5,3.5 - parent: 2 - - uid: 65 - components: - - type: Transform - pos: 12.5,-2.5 - parent: 2 -- proto: SubstationWallBasic - entities: - - uid: 183 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,1.5 - parent: 2 -- proto: Thruster - entities: - - uid: 136 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-5.5 - parent: 2 - - uid: 137 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-6.5 - parent: 2 - - uid: 138 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-7.5 - parent: 2 - - uid: 139 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-8.5 - parent: 2 - - uid: 140 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,9.5 - parent: 2 - - uid: 141 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,8.5 - parent: 2 - - uid: 142 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,7.5 - parent: 2 - - uid: 143 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,6.5 - parent: 2 - - uid: 144 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,6.5 - parent: 2 - - uid: 145 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-5.5 - parent: 2 -- proto: WallShuttle entities: - uid: 3 components: - type: Transform - pos: 8.5,-7.5 - parent: 2 - - uid: 4 - components: - - type: Transform - pos: 0.5,1.5 - parent: 2 - - uid: 5 - components: - - type: Transform - pos: 0.5,-0.5 - parent: 2 - - uid: 6 - components: - - type: Transform - pos: 14.5,1.5 - parent: 2 - - uid: 7 - components: - - type: Transform - pos: 14.5,-0.5 - parent: 2 - - uid: 8 - components: - - type: Transform - pos: 14.5,2.5 - parent: 2 - - uid: 9 - components: - - type: Transform - pos: 14.5,-1.5 - parent: 2 - - uid: 20 - components: - - type: Transform - pos: 3.5,-3.5 - parent: 2 - - uid: 21 - components: - - type: Transform - pos: 3.5,4.5 - parent: 2 - - uid: 22 - components: - - type: Transform - pos: 4.5,-3.5 - parent: 2 - - uid: 23 - components: - - type: Transform - pos: 4.5,4.5 - parent: 2 - - uid: 24 - components: - - type: Transform - pos: 4.5,-2.5 - parent: 2 - - uid: 25 - components: - - type: Transform - pos: 4.5,-1.5 - parent: 2 - - uid: 26 - components: - - type: Transform - pos: 4.5,3.5 - parent: 2 - - uid: 27 - components: - - type: Transform - pos: 4.5,2.5 - parent: 2 - - uid: 36 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-2.5 - parent: 2 - - uid: 37 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,3.5 - parent: 2 - - uid: 38 - components: - - type: Transform - pos: 5.5,4.5 - parent: 2 - - uid: 39 - components: - - type: Transform - pos: 6.5,4.5 - parent: 2 - - uid: 41 - components: - - type: Transform - pos: 8.5,4.5 - parent: 2 - - uid: 42 - components: - - type: Transform - pos: 9.5,4.5 - parent: 2 - - uid: 43 - components: - - type: Transform - pos: 10.5,4.5 - parent: 2 - - uid: 44 - components: - - type: Transform - pos: 11.5,4.5 - parent: 2 - - uid: 45 - components: - - type: Transform - pos: 12.5,4.5 - parent: 2 - - uid: 46 - components: - - type: Transform - pos: 12.5,-3.5 - parent: 2 - - uid: 47 - components: - - type: Transform - pos: 11.5,-3.5 - parent: 2 - - uid: 48 - components: - - type: Transform - pos: 10.5,-3.5 - parent: 2 - - uid: 49 - components: - - type: Transform - pos: 9.5,-3.5 - parent: 2 - - uid: 50 - components: - - type: Transform - pos: 8.5,-3.5 - parent: 2 - - uid: 52 - components: - - type: Transform - pos: 6.5,-3.5 - parent: 2 - - uid: 53 - components: - - type: Transform - pos: 5.5,-3.5 - parent: 2 - - uid: 54 - components: - - type: Transform - pos: 11.5,-2.5 - parent: 2 - - uid: 55 - components: - - type: Transform - pos: 11.5,-1.5 - parent: 2 - - uid: 56 - components: - - type: Transform - pos: 11.5,-0.5 - parent: 2 - - uid: 57 - components: - - type: Transform - pos: 11.5,1.5 - parent: 2 - - uid: 58 - components: - - type: Transform - pos: 11.5,2.5 - parent: 2 - - uid: 59 - components: - - type: Transform - pos: 11.5,3.5 - parent: 2 - - uid: 60 - components: - - type: Transform - pos: 10.5,0.5 - parent: 2 - - uid: 112 - components: - - type: Transform - pos: 9.5,-7.5 - parent: 2 - - uid: 113 - components: - - type: Transform - pos: 11.5,9.5 - parent: 2 - - uid: 114 - components: - - type: Transform - pos: 8.5,8.5 - parent: 2 - - uid: 115 - components: - - type: Transform - pos: 9.5,8.5 - parent: 2 - - uid: 116 - components: - - type: Transform - pos: 5.5,5.5 - parent: 2 - - uid: 117 - components: - - type: Transform - pos: 5.5,-4.5 + rot: -1.5707963267948966 rad + pos: 8.5,12.5 parent: 2 +- proto: AirlockExternalGlassLocked + entities: - uid: 118 - components: - - type: Transform - pos: 11.5,-8.5 - parent: 2 -- proto: WallShuttleDiagonal - entities: - - uid: 10 - components: - - type: Transform - pos: 0.5,2.5 - parent: 2 - - uid: 11 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,2.5 - parent: 2 - - uid: 12 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-1.5 - parent: 2 - - uid: 13 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-1.5 - parent: 2 - - uid: 14 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-2.5 - parent: 2 - - uid: 15 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 2 - - uid: 16 - components: - - type: Transform - pos: 1.5,3.5 - parent: 2 - - uid: 17 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,3.5 - parent: 2 - - uid: 18 - components: - - type: Transform - pos: 2.5,4.5 - parent: 2 - - uid: 19 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-3.5 - parent: 2 - - uid: 28 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-4.5 - parent: 2 - - uid: 29 - components: - - type: Transform - pos: 4.5,5.5 - parent: 2 - - uid: 30 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,3.5 - parent: 2 - - uid: 31 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-2.5 - parent: 2 - - uid: 32 - components: - - type: Transform - pos: 13.5,-1.5 - parent: 2 - - uid: 33 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,2.5 - parent: 2 - - uid: 34 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,4.5 - parent: 2 - - uid: 35 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-3.5 - parent: 2 - - uid: 61 - components: - - type: Transform - pos: 10.5,1.5 - parent: 2 - - uid: 62 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-0.5 + pos: 15.5,20.5 parent: 2 - uid: 119 - components: - - type: Transform - pos: 5.5,7.5 - parent: 2 - - uid: 120 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-6.5 - parent: 2 - - uid: 121 - components: - - type: Transform - pos: 7.5,8.5 - parent: 2 - - uid: 122 - components: - - type: Transform - pos: 10.5,9.5 - parent: 2 - - uid: 123 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,8.5 - parent: 2 - - uid: 124 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,7.5 - parent: 2 - - uid: 125 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-7.5 - parent: 2 - - uid: 126 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-8.5 - parent: 2 - - uid: 127 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-7.5 - parent: 2 - - uid: 128 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-6.5 + pos: 1.5,20.5 parent: 2 - uid: 129 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-4.5 + pos: 2.5,15.5 + parent: 2 + - uid: 136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,15.5 + parent: 2 +- proto: AirlockGlassShuttle + entities: + - uid: 103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,26.5 + parent: 2 +- proto: APCBasic + entities: + - uid: 303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,16.5 + parent: 2 +- proto: CableApcExtension + entities: + - uid: 171 + components: + - type: Transform + pos: 8.5,13.5 + parent: 2 + - uid: 172 + components: + - type: Transform + pos: 8.5,14.5 + parent: 2 + - uid: 173 + components: + - type: Transform + pos: 8.5,15.5 + parent: 2 + - uid: 174 + components: + - type: Transform + pos: 8.5,16.5 + parent: 2 + - uid: 175 + components: + - type: Transform + pos: 8.5,17.5 + parent: 2 + - uid: 176 + components: + - type: Transform + pos: 8.5,18.5 + parent: 2 + - uid: 177 + components: + - type: Transform + pos: 8.5,19.5 + parent: 2 + - uid: 178 + components: + - type: Transform + pos: 8.5,20.5 + parent: 2 + - uid: 179 + components: + - type: Transform + pos: 8.5,21.5 + parent: 2 + - uid: 180 + components: + - type: Transform + pos: 8.5,22.5 + parent: 2 + - uid: 181 + components: + - type: Transform + pos: 8.5,23.5 + parent: 2 + - uid: 182 + components: + - type: Transform + pos: 8.5,24.5 + parent: 2 + - uid: 183 + components: + - type: Transform + pos: 8.5,25.5 + parent: 2 + - uid: 184 + components: + - type: Transform + pos: 10.5,14.5 + parent: 2 + - uid: 185 + components: + - type: Transform + pos: 9.5,14.5 + parent: 2 + - uid: 186 + components: + - type: Transform + pos: 7.5,14.5 + parent: 2 + - uid: 187 + components: + - type: Transform + pos: 6.5,14.5 + parent: 2 + - uid: 188 + components: + - type: Transform + pos: 13.5,19.5 + parent: 2 + - uid: 189 + components: + - type: Transform + pos: 9.5,21.5 + parent: 2 + - uid: 190 + components: + - type: Transform + pos: 10.5,21.5 + parent: 2 + - uid: 191 + components: + - type: Transform + pos: 11.5,21.5 + parent: 2 + - uid: 192 + components: + - type: Transform + pos: 11.5,20.5 + parent: 2 + - uid: 193 + components: + - type: Transform + pos: 11.5,19.5 + parent: 2 + - uid: 194 + components: + - type: Transform + pos: 11.5,18.5 + parent: 2 + - uid: 195 + components: + - type: Transform + pos: 11.5,17.5 + parent: 2 + - uid: 196 + components: + - type: Transform + pos: 11.5,16.5 + parent: 2 + - uid: 197 + components: + - type: Transform + pos: 5.5,16.5 + parent: 2 + - uid: 198 + components: + - type: Transform + pos: 5.5,17.5 + parent: 2 + - uid: 199 + components: + - type: Transform + pos: 5.5,18.5 + parent: 2 + - uid: 200 + components: + - type: Transform + pos: 5.5,19.5 + parent: 2 + - uid: 201 + components: + - type: Transform + pos: 5.5,20.5 + parent: 2 + - uid: 202 + components: + - type: Transform + pos: 5.5,21.5 + parent: 2 + - uid: 203 + components: + - type: Transform + pos: 6.5,21.5 + parent: 2 + - uid: 204 + components: + - type: Transform + pos: 7.5,21.5 + parent: 2 + - uid: 205 + components: + - type: Transform + pos: 11.5,23.5 + parent: 2 + - uid: 206 + components: + - type: Transform + pos: 10.5,23.5 + parent: 2 + - uid: 207 + components: + - type: Transform + pos: 9.5,23.5 + parent: 2 + - uid: 208 + components: + - type: Transform + pos: 7.5,23.5 + parent: 2 + - uid: 209 + components: + - type: Transform + pos: 6.5,23.5 + parent: 2 + - uid: 210 + components: + - type: Transform + pos: 5.5,23.5 + parent: 2 + - uid: 211 + components: + - type: Transform + pos: 12.5,19.5 + parent: 2 + - uid: 212 + components: + - type: Transform + pos: 14.5,19.5 + parent: 2 + - uid: 213 + components: + - type: Transform + pos: 2.5,19.5 + parent: 2 + - uid: 214 + components: + - type: Transform + pos: 3.5,19.5 + parent: 2 + - uid: 215 + components: + - type: Transform + pos: 4.5,19.5 + parent: 2 + - uid: 216 + components: + - type: Transform + pos: 2.5,18.5 + parent: 2 + - uid: 217 + components: + - type: Transform + pos: 2.5,17.5 + parent: 2 + - uid: 218 + components: + - type: Transform + pos: 14.5,18.5 + parent: 2 + - uid: 219 + components: + - type: Transform + pos: 14.5,17.5 + parent: 2 + - uid: 220 + components: + - type: Transform + pos: 15.5,17.5 + parent: 2 + - uid: 221 + components: + - type: Transform + pos: 1.5,17.5 + parent: 2 + - uid: 222 + components: + - type: Transform + pos: 1.5,16.5 + parent: 2 + - uid: 223 + components: + - type: Transform + pos: 1.5,15.5 + parent: 2 + - uid: 224 + components: + - type: Transform + pos: 0.5,15.5 + parent: 2 + - uid: 226 + components: + - type: Transform + pos: 15.5,16.5 + parent: 2 + - uid: 227 + components: + - type: Transform + pos: 15.5,15.5 + parent: 2 + - uid: 228 + components: + - type: Transform + pos: 16.5,15.5 + parent: 2 +- proto: CableHV + entities: + - uid: 225 + components: + - type: Transform + pos: 11.5,14.5 + parent: 2 + - uid: 232 + components: + - type: Transform + pos: 10.5,14.5 + parent: 2 + - uid: 233 + components: + - type: Transform + pos: 9.5,14.5 + parent: 2 + - uid: 234 + components: + - type: Transform + pos: 8.5,14.5 + parent: 2 + - uid: 235 + components: + - type: Transform + pos: 7.5,14.5 + parent: 2 + - uid: 236 + components: + - type: Transform + pos: 6.5,14.5 + parent: 2 + - uid: 237 + components: + - type: Transform + pos: 5.5,14.5 + parent: 2 + - uid: 239 + components: + - type: Transform + pos: 9.5,15.5 + parent: 2 + - uid: 240 + components: + - type: Transform + pos: 14.5,19.5 + parent: 2 + - uid: 241 + components: + - type: Transform + pos: 13.5,19.5 + parent: 2 + - uid: 242 + components: + - type: Transform + pos: 12.5,19.5 + parent: 2 + - uid: 243 + components: + - type: Transform + pos: 11.5,19.5 + parent: 2 + - uid: 244 + components: + - type: Transform + pos: 10.5,19.5 + parent: 2 + - uid: 245 + components: + - type: Transform + pos: 9.5,19.5 + parent: 2 + - uid: 246 + components: + - type: Transform + pos: 8.5,19.5 + parent: 2 + - uid: 247 + components: + - type: Transform + pos: 7.5,19.5 + parent: 2 + - uid: 248 + components: + - type: Transform + pos: 6.5,19.5 + parent: 2 + - uid: 249 + components: + - type: Transform + pos: 5.5,19.5 + parent: 2 + - uid: 250 + components: + - type: Transform + pos: 4.5,19.5 + parent: 2 + - uid: 251 + components: + - type: Transform + pos: 3.5,19.5 + parent: 2 + - uid: 252 + components: + - type: Transform + pos: 2.5,19.5 + parent: 2 + - uid: 253 + components: + - type: Transform + pos: 2.5,18.5 + parent: 2 + - uid: 254 + components: + - type: Transform + pos: 2.5,17.5 + parent: 2 + - uid: 255 + components: + - type: Transform + pos: 14.5,18.5 + parent: 2 + - uid: 256 + components: + - type: Transform + pos: 14.5,17.5 + parent: 2 + - uid: 257 + components: + - type: Transform + pos: 11.5,15.5 + parent: 2 + - uid: 258 + components: + - type: Transform + pos: 11.5,16.5 + parent: 2 + - uid: 259 + components: + - type: Transform + pos: 11.5,17.5 + parent: 2 + - uid: 260 + components: + - type: Transform + pos: 11.5,18.5 + parent: 2 + - uid: 261 + components: + - type: Transform + pos: 5.5,15.5 + parent: 2 + - uid: 262 + components: + - type: Transform + pos: 5.5,16.5 + parent: 2 + - uid: 263 + components: + - type: Transform + pos: 5.5,17.5 + parent: 2 + - uid: 264 + components: + - type: Transform + pos: 5.5,18.5 + parent: 2 +- proto: CableMV + entities: + - uid: 229 + components: + - type: Transform + pos: 8.5,16.5 + parent: 2 + - uid: 230 + components: + - type: Transform + pos: 8.5,15.5 + parent: 2 + - uid: 231 + components: + - type: Transform + pos: 9.5,15.5 + parent: 2 +- proto: CableTerminal + entities: + - uid: 265 + components: + - type: Transform + pos: 5.5,15.5 + parent: 2 + - uid: 266 + components: + - type: Transform + pos: 11.5,15.5 + parent: 2 +- proto: Chair + entities: + - uid: 27 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,16.5 + parent: 2 + - uid: 59 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,17.5 + parent: 2 + - uid: 60 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,18.5 + parent: 2 + - uid: 61 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,19.5 + parent: 2 + - uid: 62 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,20.5 + parent: 2 + - uid: 63 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,21.5 + parent: 2 + - uid: 64 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,16.5 + parent: 2 + - uid: 65 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,17.5 + parent: 2 + - uid: 66 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,18.5 + parent: 2 + - uid: 67 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,19.5 + parent: 2 + - uid: 68 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,20.5 + parent: 2 + - uid: 69 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,21.5 + parent: 2 + - uid: 70 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,17.5 + parent: 2 + - uid: 71 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,18.5 + parent: 2 + - uid: 72 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,19.5 + parent: 2 + - uid: 73 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,20.5 + parent: 2 + - uid: 74 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,21.5 + parent: 2 + - uid: 75 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,17.5 + parent: 2 + - uid: 76 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,18.5 + parent: 2 + - uid: 77 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,19.5 + parent: 2 + - uid: 78 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,20.5 + parent: 2 + - uid: 79 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,21.5 + parent: 2 +- proto: ComputerShuttle + entities: + - uid: 302 + components: + - type: Transform + pos: 8.5,15.5 + parent: 2 +- proto: GasPipeBend + entities: + - uid: 284 + components: + - type: Transform + pos: 15.5,18.5 + parent: 2 + - uid: 285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,18.5 + parent: 2 + - uid: 287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,15.5 + parent: 2 + - uid: 288 + components: + - type: Transform + pos: 16.5,15.5 + parent: 2 +- proto: GasPipeStraight + entities: + - uid: 289 + components: + - type: Transform + pos: 15.5,17.5 + parent: 2 + - uid: 290 + components: + - type: Transform + pos: 15.5,16.5 + parent: 2 + - uid: 291 + components: + - type: Transform + pos: 15.5,14.5 + parent: 2 + - uid: 292 + components: + - type: Transform + pos: 16.5,14.5 + parent: 2 + - uid: 293 + components: + - type: Transform + pos: 1.5,14.5 + parent: 2 + - uid: 294 + components: + - type: Transform + pos: 0.5,14.5 + parent: 2 + - uid: 295 + components: + - type: Transform + pos: 1.5,16.5 + parent: 2 + - uid: 296 + components: + - type: Transform + pos: 1.5,17.5 + parent: 2 + - uid: 297 + components: + - type: Transform + pos: 2.5,21.5 + parent: 2 + - uid: 298 + components: + - type: Transform + pos: 14.5,21.5 + parent: 2 +- proto: GasPipeTJunction + entities: + - uid: 238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,15.5 + parent: 2 + - uid: 273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,20.5 + parent: 2 + - uid: 274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,19.5 + parent: 2 + - uid: 275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,18.5 + parent: 2 + - uid: 276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,20.5 + parent: 2 + - uid: 277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,19.5 + parent: 2 + - uid: 278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,18.5 + parent: 2 + - uid: 279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,15.5 + parent: 2 + - uid: 280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,13.5 + parent: 2 + - uid: 281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,13.5 + parent: 2 + - uid: 282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,13.5 + parent: 2 + - uid: 283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,13.5 + parent: 2 +- proto: GasPort + entities: + - uid: 267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,20.5 + parent: 2 + - uid: 268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,19.5 + parent: 2 + - uid: 269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,18.5 + parent: 2 + - uid: 270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,20.5 + parent: 2 + - uid: 271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,19.5 + parent: 2 + - uid: 272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,18.5 + parent: 2 +- proto: GeneratorBasic15kW + entities: + - uid: 310 + components: + - type: Transform + pos: 14.5,17.5 + parent: 2 + - uid: 311 + components: + - type: Transform + pos: 2.5,17.5 + parent: 2 +- proto: GravityGeneratorMini + entities: + - uid: 318 + components: + - type: Transform + pos: 16.5,15.5 + parent: 2 +- proto: Grille + entities: + - uid: 80 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,19.5 + parent: 2 + - uid: 81 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,19.5 + parent: 2 + - uid: 112 + components: + - type: Transform + pos: 2.5,21.5 + parent: 2 + - uid: 113 + components: + - type: Transform + pos: 14.5,21.5 + parent: 2 + - uid: 139 + components: + - type: Transform + pos: 2.5,14.5 + parent: 2 + - uid: 140 + components: + - type: Transform + pos: 1.5,14.5 + parent: 2 + - uid: 141 + components: + - type: Transform + pos: 0.5,14.5 + parent: 2 + - uid: 142 + components: + - type: Transform + pos: -0.5,14.5 + parent: 2 + - uid: 143 + components: + - type: Transform + pos: 0.5,13.5 + parent: 2 + - uid: 144 + components: + - type: Transform + pos: 1.5,13.5 + parent: 2 + - uid: 145 + components: + - type: Transform + pos: 17.5,14.5 + parent: 2 + - uid: 146 + components: + - type: Transform + pos: 16.5,14.5 + parent: 2 + - uid: 147 + components: + - type: Transform + pos: 15.5,14.5 + parent: 2 + - uid: 148 + components: + - type: Transform + pos: 14.5,14.5 + parent: 2 + - uid: 149 + components: + - type: Transform + pos: 15.5,13.5 + parent: 2 + - uid: 150 + components: + - type: Transform + pos: 16.5,13.5 + parent: 2 +- proto: Gyroscope + entities: + - uid: 309 + components: + - type: Transform + pos: 0.5,15.5 + parent: 2 +- proto: LiquidCarbonDioxideCanister + entities: + - uid: 316 + components: + - type: Transform + anchored: True + pos: 13.5,18.5 + parent: 2 + - type: Physics + bodyType: Static + - uid: 317 + components: + - type: Transform + anchored: True + pos: 3.5,18.5 + parent: 2 + - type: Physics + bodyType: Static +- proto: LiquidOxygenCanister + entities: + - uid: 314 + components: + - type: Transform + anchored: True + pos: 13.5,19.5 + parent: 2 + - type: Physics + bodyType: Static + - uid: 315 + components: + - type: Transform + anchored: True + pos: 3.5,19.5 + parent: 2 + - type: Physics + bodyType: Static +- proto: LockerSteel + entities: + - uid: 41 + components: + - type: Transform + pos: 11.5,16.5 + parent: 2 + - uid: 42 + components: + - type: Transform + pos: 11.5,17.5 + parent: 2 + - uid: 43 + components: + - type: Transform + pos: 11.5,18.5 + parent: 2 + - uid: 44 + components: + - type: Transform + pos: 11.5,19.5 + parent: 2 + - uid: 45 + components: + - type: Transform + pos: 11.5,20.5 + parent: 2 + - uid: 46 + components: + - type: Transform + pos: 11.5,21.5 + parent: 2 + - uid: 53 + components: + - type: Transform + pos: 5.5,21.5 + parent: 2 + - uid: 54 + components: + - type: Transform + pos: 5.5,20.5 + parent: 2 + - uid: 55 + components: + - type: Transform + pos: 5.5,19.5 + parent: 2 + - uid: 56 + components: + - type: Transform + pos: 5.5,18.5 + parent: 2 + - uid: 57 + components: + - type: Transform + pos: 5.5,17.5 + parent: 2 + - uid: 58 + components: + - type: Transform + pos: 5.5,16.5 + parent: 2 +- proto: PlasmaCanister + entities: + - uid: 312 + components: + - type: Transform + anchored: True + pos: 13.5,20.5 + parent: 2 + - type: Physics + bodyType: Static + - uid: 313 + components: + - type: Transform + anchored: True + pos: 3.5,20.5 + parent: 2 + - type: Physics + bodyType: Static +- proto: PoweredlightLED + entities: + - uid: 286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,18.5 + parent: 2 + - uid: 304 + components: + - type: Transform + pos: 8.5,15.5 + parent: 2 + - uid: 305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,17.5 + parent: 2 + - uid: 306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,22.5 + parent: 2 + - uid: 307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,22.5 + parent: 2 + - uid: 308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,18.5 + parent: 2 +- proto: ShuttleWindow + entities: + - uid: 33 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,19.5 + parent: 2 + - uid: 38 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,19.5 + parent: 2 + - uid: 114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,21.5 + parent: 2 + - uid: 115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,21.5 + parent: 2 + - uid: 159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,14.5 + parent: 2 + - uid: 160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,14.5 + parent: 2 + - uid: 161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,14.5 + parent: 2 + - uid: 162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,14.5 + parent: 2 + - uid: 163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,13.5 + parent: 2 + - uid: 164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,13.5 + parent: 2 + - uid: 165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,14.5 + parent: 2 + - uid: 166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,14.5 + parent: 2 + - uid: 167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,14.5 + parent: 2 + - uid: 168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,14.5 + parent: 2 + - uid: 169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,13.5 + parent: 2 + - uid: 170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,13.5 + parent: 2 +- proto: SMESBasic + entities: + - uid: 299 + components: + - type: Transform + pos: 11.5,14.5 + parent: 2 + - uid: 300 + components: + - type: Transform + pos: 5.5,14.5 + parent: 2 +- proto: SubstationWallBasic + entities: + - uid: 301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,15.5 + parent: 2 +- proto: Thruster + entities: + - uid: 108 + components: + - type: Transform + pos: 14.5,22.5 + parent: 2 + - uid: 109 + components: + - type: Transform + pos: 2.5,22.5 + parent: 2 + - uid: 151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,13.5 + parent: 2 + - uid: 152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,12.5 + parent: 2 + - uid: 153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,12.5 + parent: 2 + - uid: 154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,13.5 + parent: 2 + - uid: 155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,13.5 + parent: 2 + - uid: 156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,12.5 + parent: 2 + - uid: 157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,12.5 + parent: 2 + - uid: 158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,13.5 + parent: 2 +- proto: WallShuttle + entities: + - uid: 1 + components: + - type: Transform + pos: 4.5,16.5 + parent: 2 + - uid: 8 + components: + - type: Transform + pos: 10.5,12.5 + parent: 2 + - uid: 9 + components: + - type: Transform + pos: 9.5,12.5 + parent: 2 + - uid: 10 + components: + - type: Transform + pos: 7.5,12.5 + parent: 2 + - uid: 11 + components: + - type: Transform + pos: 6.5,12.5 + parent: 2 + - uid: 14 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,13.5 + parent: 2 + - uid: 15 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,13.5 + parent: 2 + - uid: 16 + components: + - type: Transform + pos: 12.5,14.5 + parent: 2 + - uid: 17 + components: + - type: Transform + pos: 4.5,14.5 + parent: 2 + - uid: 18 + components: + - type: Transform + pos: 12.5,15.5 + parent: 2 + - uid: 19 + components: + - type: Transform + pos: 11.5,15.5 + parent: 2 + - uid: 20 + components: + - type: Transform + pos: 10.5,15.5 + parent: 2 + - uid: 21 + components: + - type: Transform + pos: 9.5,15.5 + parent: 2 + - uid: 22 + components: + - type: Transform + pos: 7.5,15.5 + parent: 2 + - uid: 23 + components: + - type: Transform + pos: 6.5,15.5 + parent: 2 + - uid: 24 + components: + - type: Transform + pos: 5.5,15.5 + parent: 2 + - uid: 25 + components: + - type: Transform + pos: 4.5,15.5 + parent: 2 + - uid: 26 + components: + - type: Transform + pos: 12.5,16.5 + parent: 2 + - uid: 30 + components: + - type: Transform + pos: 8.5,16.5 + parent: 2 + - uid: 31 + components: + - type: Transform + pos: 12.5,17.5 + parent: 2 + - uid: 32 + components: + - type: Transform + pos: 12.5,18.5 + parent: 2 + - uid: 34 + components: + - type: Transform + pos: 12.5,20.5 + parent: 2 + - uid: 35 + components: + - type: Transform + pos: 12.5,21.5 + parent: 2 + - uid: 36 + components: + - type: Transform + pos: 4.5,21.5 + parent: 2 + - uid: 37 + components: + - type: Transform + pos: 4.5,20.5 + parent: 2 + - uid: 39 + components: + - type: Transform + pos: 4.5,18.5 + parent: 2 + - uid: 40 + components: + - type: Transform + pos: 4.5,17.5 + parent: 2 + - uid: 47 + components: + - type: Transform + pos: 12.5,22.5 + parent: 2 + - uid: 48 + components: + - type: Transform + pos: 11.5,22.5 + parent: 2 + - uid: 49 + components: + - type: Transform + pos: 10.5,22.5 + parent: 2 + - uid: 50 + components: + - type: Transform + pos: 4.5,22.5 + parent: 2 + - uid: 51 + components: + - type: Transform + pos: 5.5,22.5 + parent: 2 + - uid: 52 + components: + - type: Transform + pos: 6.5,22.5 + parent: 2 + - uid: 83 + components: + - type: Transform + pos: 4.5,23.5 + parent: 2 + - uid: 84 + components: + - type: Transform + pos: 12.5,23.5 + parent: 2 + - uid: 101 + components: + - type: Transform + pos: 7.5,26.5 + parent: 2 + - uid: 102 + components: + - type: Transform + pos: 9.5,26.5 + parent: 2 + - uid: 110 + components: + - type: Transform + pos: 3.5,21.5 + parent: 2 + - uid: 111 + components: + - type: Transform + pos: 13.5,21.5 + parent: 2 + - uid: 122 + components: + - type: Transform + pos: 16.5,18.5 + parent: 2 + - uid: 123 + components: + - type: Transform + pos: 0.5,18.5 + parent: 2 + - uid: 124 + components: + - type: Transform + pos: 0.5,17.5 + parent: 2 + - uid: 125 + components: + - type: Transform + pos: 16.5,17.5 + parent: 2 + - uid: 134 + components: + - type: Transform + pos: -0.5,15.5 + parent: 2 + - uid: 135 + components: + - type: Transform + pos: 17.5,15.5 + parent: 2 +- proto: WallShuttleDiagonal + entities: + - uid: 4 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,12.5 + parent: 2 + - uid: 5 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,13.5 + parent: 2 + - uid: 6 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,12.5 + parent: 2 + - uid: 7 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,13.5 + parent: 2 + - uid: 12 + components: + - type: Transform + pos: 10.5,13.5 + parent: 2 + - uid: 13 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,13.5 + parent: 2 + - uid: 28 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,16.5 + parent: 2 + - uid: 29 + components: + - type: Transform + pos: 7.5,16.5 + parent: 2 + - uid: 82 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,16.5 + parent: 2 + - uid: 91 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,24.5 + parent: 2 + - uid: 92 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,24.5 + parent: 2 + - uid: 93 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,24.5 + parent: 2 + - uid: 94 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,25.5 + parent: 2 + - uid: 95 + components: + - type: Transform + pos: 4.5,24.5 + parent: 2 + - uid: 96 + components: + - type: Transform + pos: 5.5,25.5 + parent: 2 + - uid: 97 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,26.5 + parent: 2 + - uid: 98 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,25.5 + parent: 2 + - uid: 99 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,25.5 + parent: 2 + - uid: 100 + components: + - type: Transform + pos: 6.5,26.5 + parent: 2 + - uid: 104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,22.5 + parent: 2 + - uid: 105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,21.5 + parent: 2 + - uid: 106 + components: + - type: Transform + pos: 3.5,22.5 + parent: 2 + - uid: 107 + components: + - type: Transform + pos: 1.5,21.5 + parent: 2 + - uid: 116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,19.5 + parent: 2 + - uid: 117 + components: + - type: Transform + pos: 0.5,19.5 + parent: 2 + - uid: 120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,19.5 + parent: 2 + - uid: 121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,19.5 + parent: 2 + - uid: 126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,17.5 + parent: 2 + - uid: 127 + components: + - type: Transform + pos: 3.5,17.5 + parent: 2 + - uid: 128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,16.5 parent: 2 - uid: 130 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-5.5 + pos: 16.5,16.5 parent: 2 - uid: 131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-4.5 + rot: -1.5707963267948966 rad + pos: 17.5,16.5 + parent: 2 + - uid: 132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,16.5 parent: 2 - uid: 133 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,5.5 + pos: -0.5,16.5 parent: 2 - - uid: 134 + - uid: 137 components: - type: Transform - pos: 10.5,6.5 + rot: -1.5707963267948966 rad + pos: 14.5,16.5 parent: 2 - - uid: 135 + - uid: 138 components: - type: Transform - pos: 9.5,5.5 + pos: 2.5,16.5 parent: 2 - proto: WardrobeBlueFilled entities: - - uid: 105 + - uid: 88 components: - type: Transform - anchored: True - pos: 3.5,-2.5 + pos: 5.5,23.5 parent: 2 - - type: Physics - bodyType: Static - - uid: 106 + - uid: 89 components: - type: Transform - anchored: True - pos: 3.5,-1.5 + pos: 6.5,23.5 parent: 2 - - type: Physics - bodyType: Static - - uid: 107 + - uid: 90 components: - type: Transform - anchored: True - pos: 2.5,-1.5 + pos: 6.5,24.5 parent: 2 - - type: Physics - bodyType: Static - proto: WardrobeMixedFilled entities: - - uid: 102 + - uid: 85 components: - type: Transform - anchored: True - pos: 3.5,3.5 + pos: 11.5,23.5 parent: 2 - - type: Physics - bodyType: Static - - uid: 103 + - uid: 86 components: - type: Transform - anchored: True - pos: 3.5,2.5 + pos: 10.5,23.5 parent: 2 - - type: Physics - bodyType: Static - - uid: 104 + - uid: 87 components: - type: Transform - anchored: True - pos: 2.5,2.5 + pos: 10.5,24.5 parent: 2 - - type: Physics - bodyType: Static ... diff --git a/Resources/Maps/Shuttles/cargo_relic.yml b/Resources/Maps/Shuttles/cargo_relic.yml index 68a9892277..7b3e935ea0 100644 --- a/Resources/Maps/Shuttles/cargo_relic.yml +++ b/Resources/Maps/Shuttles/cargo_relic.yml @@ -1,54 +1,43 @@ meta: format: 7 category: Grid - engineVersion: 249.0.0 + engineVersion: 264.0.0 forkId: "" forkVersion: "" - time: 03/23/2025 22:34:49 + time: 08/06/2025 14:30:26 entityCount: 176 maps: [] grids: -- 173 +- 1 orphans: -- 173 +- 1 nullspace: [] tilemap: - 0: Space - 1: FloorReinforced - 84: FloorShuttleBlue - 89: FloorShuttleWhite - 93: FloorSteel - 108: FloorTechMaint - 2: Lattice - 126: Plating + 2: Space + 0: FloorShuttleBlue + 3: FloorShuttleOrange + 4: Lattice + 1: Plating entities: - proto: "" entities: - - uid: 173 + - uid: 1 components: - type: MetaData - name: Cargo shuttle + name: prison shuttle - type: Transform - pos: 2.2710133,-2.4148211 + pos: -7.265625,2.28125 parent: invalid - type: MapGrid chunks: - -1,0: - ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAQAAAAAAXQAAAAAAAQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAQAAAAAAXQAAAAAAAQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAQAAAAAAXQAAAAAAAQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAQAAAAAAXQAAAAAAAQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAQAAAAAAXQAAAAAAAQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 0,0: ind: 0,0 - tiles: XQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -1,-1: - ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAQAAAAAA - version: 6 + tiles: AAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAAEAAAAAAAAAQAAAAAAAAMAAAAAAAABAAAAAAAABAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAADAAAAAAAABAAAAAAAAAEAAAAAAAADAAAAAAAAAQAAAAAAAAQAAAAAAAACAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -58,125 +47,49 @@ entities: bodyType: Dynamic - type: Fixtures fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: CargoShuttle + - type: GridPathfinding - type: Gravity gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg - - type: CargoShuttle - type: DecalGrid chunkCollection: version: 2 - nodes: - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 14: -1,1 - 15: -1,3 - - node: - color: '#FFFFFFFF' - id: Bot - decals: - 26: -4,4 - 27: -4,3 - 29: -4,0 - 30: -4,1 - 31: -4,2 - 33: -6,4 - 34: -6,3 - 35: -6,2 - 36: -6,1 - 37: -6,0 - - node: - color: '#FFFFFFFF' - id: Box - decals: - 78: -8,2 - 79: -2,2 - - node: - color: '#A4610696' - id: CheckerNWSE - decals: - 17: -3,1 - 19: -3,3 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale - decals: - 55: -3,5 - 57: -5,5 - 58: -4,5 - 59: -6,5 - 60: -7,5 - 61: -7,4 - 62: -7,3 - 63: -7,2 - 64: -7,1 - 65: -7,0 - 66: -7,-1 - 67: -6,-1 - 68: -5,-1 - 71: -3,-1 - 72: -3,0 - 75: -3,4 - 76: -4,-1 - 81: -3,2 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale180 - decals: - 39: -3,0 - 40: -3,-1 - 42: -5,-1 - 43: -6,-1 - 44: -7,-1 - 45: -7,0 - 46: -7,1 - 47: -7,2 - 48: -7,3 - 49: -7,4 - 50: -7,5 - 51: -6,5 - 52: -5,5 - 53: -4,5 - 54: -3,5 - 73: -3,4 - 74: -4,-1 - 80: -3,2 + nodes: [] - type: GridAtmosphere version: 2 data: tiles: - -4,0: - 0: 8 - -3,0: - 1: 65520 - -4,1: - 0: 8 - -3,-1: - 0: 26624 - -3,1: - 0: 2144 - -2,0: - 1: 65534 - -2,1: - 1: 254 - -2,-1: - 1: 61440 - -1,0: - 1: 65535 - -1,1: - 1: 63 - 0: 2048 - -1,-1: - 1: 12288 - 0: 2048 0,0: - 1: 4112 - 0,1: - 0: 256 + 0: 16 + 1: 14 0,-1: - 0: 256 + 1: 61166 + 1,0: + 1: 15 + 1,-1: + 1: 65535 + 2,0: + 1: 27 + 0: 64 + 2,-1: + 1: 65531 + 3,0: + 1: 1 + 0: 64 + 3,-1: + 1: 13105 + 0,-2: + 0: 4096 + 2,-2: + 1: 4096 + 0: 16384 + 3,-2: + 0: 16384 uniqueMixes: - volume: 2500 immutable: True @@ -209,1051 +122,1024 @@ entities: - 0 - 0 chunkSize: 4 - - type: OccluderTree - - type: Shuttle - - type: GridPathfinding - - type: RadiationGridResistance - - type: SpreaderGrid - - type: GravityShake - shakeTimes: 10 - type: GasTileOverlay + - type: RadiationGridResistance + - type: ImplicitRoof - proto: AirCanister entities: - - uid: 176 + - uid: 140 components: - type: Transform - pos: -9.5,3.5 - parent: 173 -- proto: AirlockGlassShuttle - entities: - - uid: 2 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,3.5 - parent: 173 - - uid: 53 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,1.5 - parent: 173 -- proto: APCHyperCapacity - entities: - - uid: 15 - components: - - type: Transform - pos: -2.5,6.5 - parent: 173 -- proto: AtmosDeviceFanDirectional - entities: - - uid: 169 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,3.5 - parent: 173 - - uid: 170 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,1.5 - parent: 173 -- proto: BlastDoor - entities: - - uid: 1 - components: - - type: Transform - pos: 0.5,4.5 - parent: 173 - - uid: 54 - components: - - type: Transform - pos: 0.5,0.5 - parent: 173 -- proto: ButtonFrameCaution - entities: - - uid: 68 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,5.5 - parent: 173 - - uid: 102 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-0.5 - parent: 173 -- proto: CableApcExtension - entities: - - uid: 11 - components: - - type: Transform - pos: -0.5,0.5 - parent: 173 - - uid: 58 - components: - - type: Transform - pos: -8.5,3.5 - parent: 173 - - uid: 62 - components: - - type: Transform - pos: -0.5,4.5 - parent: 173 - - uid: 64 - components: - - type: Transform - pos: -5.5,4.5 - parent: 173 - - uid: 65 - components: - - type: Transform - pos: -5.5,5.5 - parent: 173 - - uid: 66 - components: - - type: Transform - pos: -7.5,0.5 - parent: 173 - - uid: 67 - components: - - type: Transform - pos: -8.5,1.5 - parent: 173 - - uid: 84 - components: - - type: Transform - pos: -5.5,-0.5 - parent: 173 - - uid: 85 - components: - - type: Transform - pos: -5.5,0.5 - parent: 173 - - uid: 90 - components: - - type: Transform - pos: -5.5,1.5 - parent: 173 - - uid: 91 - components: - - type: Transform - pos: -2.5,6.5 - parent: 173 - - uid: 96 - components: - - type: Transform - pos: -7.5,5.5 - parent: 173 - - uid: 100 - components: - - type: Transform - pos: -7.5,4.5 - parent: 173 - - uid: 101 - components: - - type: Transform - pos: -9.5,3.5 - parent: 173 - - uid: 103 - components: - - type: Transform - pos: -2.5,5.5 - parent: 173 - - uid: 104 - components: - - type: Transform - pos: -9.5,1.5 - parent: 173 - - uid: 109 - components: - - type: Transform - pos: -2.5,4.5 - parent: 173 - - uid: 110 - components: - - type: Transform - pos: -2.5,3.5 - parent: 173 - - uid: 111 - components: - - type: Transform - pos: -2.5,2.5 - parent: 173 - - uid: 112 - components: - - type: Transform - pos: -2.5,1.5 - parent: 173 - - uid: 113 - components: - - type: Transform - pos: -2.5,0.5 - parent: 173 - - uid: 114 - components: - - type: Transform - pos: -2.5,-0.5 - parent: 173 - - uid: 117 - components: - - type: Transform - pos: -6.5,1.5 - parent: 173 - - uid: 118 - components: - - type: Transform - pos: -5.5,1.5 - parent: 173 - - uid: 122 - components: - - type: Transform - pos: -7.5,-0.5 - parent: 173 - - uid: 125 - components: - - type: Transform - pos: -1.5,3.5 - parent: 173 - - uid: 126 - components: - - type: Transform - pos: -0.5,3.5 - parent: 173 - - uid: 127 - components: - - type: Transform - pos: -1.5,1.5 - parent: 173 - - uid: 128 - components: - - type: Transform - pos: -0.5,1.5 - parent: 173 - - uid: 129 - components: - - type: Transform - pos: -3.5,1.5 - parent: 173 - - uid: 130 - components: - - type: Transform - pos: -4.5,1.5 - parent: 173 - - uid: 131 - components: - - type: Transform - pos: -3.5,3.5 - parent: 173 - - uid: 132 - components: - - type: Transform - pos: -4.5,3.5 - parent: 173 - - uid: 136 - components: - - type: Transform - pos: -5.5,3.5 - parent: 173 - - uid: 137 - components: - - type: Transform - pos: -6.5,3.5 - parent: 173 - - uid: 138 - components: - - type: Transform - pos: -7.5,1.5 - parent: 173 - - uid: 139 - components: - - type: Transform - pos: -7.5,3.5 - parent: 173 -- proto: CableHV - entities: - - uid: 155 - components: - - type: Transform - pos: -11.5,1.5 - parent: 173 - - uid: 156 - components: - - type: Transform - pos: -10.5,1.5 - parent: 173 - - uid: 157 - components: - - type: Transform - pos: -9.5,1.5 - parent: 173 -- proto: CableMV - entities: - - uid: 3 - components: - - type: Transform - pos: -9.5,1.5 - parent: 173 - - uid: 6 - components: - - type: Transform - pos: -2.5,2.5 - parent: 173 - - uid: 28 - components: - - type: Transform - pos: -5.5,1.5 - parent: 173 - - uid: 29 - components: - - type: Transform - pos: -3.5,1.5 - parent: 173 - - uid: 41 - components: - - type: Transform - pos: -2.5,3.5 - parent: 173 - - uid: 42 - components: - - type: Transform - pos: -2.5,1.5 - parent: 173 - - uid: 43 - components: - - type: Transform - pos: -2.5,4.5 - parent: 173 - - uid: 45 - components: - - type: Transform - pos: -2.5,5.5 - parent: 173 - - uid: 47 - components: - - type: Transform - pos: -2.5,6.5 - parent: 173 - - uid: 52 - components: - - type: Transform - pos: -4.5,1.5 - parent: 173 - - uid: 81 - components: - - type: Transform - pos: -8.5,1.5 - parent: 173 - - uid: 82 - components: - - type: Transform - pos: -7.5,1.5 - parent: 173 - - uid: 98 - components: - - type: Transform - pos: -6.5,1.5 - parent: 173 -- proto: CableTerminal - entities: - - uid: 158 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,1.5 - parent: 173 -- proto: CargoPallet - entities: - - uid: 12 - components: - - type: Transform - pos: -3.5,1.5 - parent: 173 - - uid: 48 - components: - - type: Transform - pos: -3.5,4.5 - parent: 173 - - uid: 49 - components: - - type: Transform - pos: -3.5,3.5 - parent: 173 - - uid: 50 - components: - - type: Transform - pos: -3.5,0.5 - parent: 173 - - uid: 55 - components: - - type: Transform - pos: -5.5,3.5 - parent: 173 - - uid: 63 - components: - - type: Transform - pos: -5.5,4.5 - parent: 173 - - uid: 69 - components: - - type: Transform - pos: -5.5,2.5 - parent: 173 - - uid: 99 - components: - - type: Transform - pos: -5.5,1.5 - parent: 173 - - uid: 120 - components: - - type: Transform - pos: -5.5,0.5 - parent: 173 - - uid: 159 - components: - - type: Transform - pos: -3.5,2.5 - parent: 173 -- proto: Chair - entities: - - uid: 20 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,3.5 - parent: 173 - - uid: 95 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,1.5 - parent: 173 -- proto: ChairPilotSeat - entities: - - uid: 75 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,2.5 - parent: 173 -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 19 - components: - - type: Transform - pos: -7.5,5.5 - parent: 173 -- proto: ClosetEmergencyN2FilledRandom - entities: - - uid: 107 - components: - - type: Transform - pos: -7.5,-0.5 - parent: 173 -- proto: ComputerShuttle - entities: - - uid: 94 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,2.5 - parent: 173 -- proto: ConveyorBelt - entities: - - uid: 38 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,4.5 - parent: 173 - - uid: 39 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,4.5 - parent: 173 - - uid: 40 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,4.5 - parent: 173 - - uid: 46 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,0.5 - parent: 173 - - uid: 51 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,0.5 - parent: 173 - - uid: 167 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,0.5 - parent: 173 -- proto: GasPipeBend - entities: - - uid: 60 - components: - - type: Transform - pos: -1.5,3.5 - parent: 173 -- proto: GasPipeStraight - entities: - - uid: 164 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,3.5 - parent: 173 - - uid: 165 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,3.5 - parent: 173 - - uid: 168 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,3.5 - parent: 173 - - uid: 171 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,3.5 - parent: 173 - - uid: 172 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,3.5 - parent: 173 - - uid: 174 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,3.5 - parent: 173 - - uid: 175 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,3.5 - parent: 173 -- proto: GasPort - entities: - - uid: 163 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,3.5 - parent: 173 -- proto: GasVentPump + anchored: True + pos: 4.5,-3.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: AirlockShuttle entities: - uid: 59 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 1 + - uid: 60 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,2.5 - parent: 173 -- proto: GeneratorBasic15kW + pos: 8.5,1.5 + parent: 1 +- proto: APCBasic entities: - - uid: 13 + - uid: 174 components: - type: Transform - pos: -11.5,1.5 - parent: 173 -- proto: GravityGeneratorMini + pos: 6.5,1.5 + parent: 1 +- proto: CableApcExtension entities: - - uid: 162 + - uid: 111 components: - type: Transform - pos: -10.5,3.5 - parent: 173 -- proto: Grille - entities: - - uid: 5 + pos: 4.5,-0.5 + parent: 1 + - uid: 112 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,3.5 - parent: 173 - - uid: 9 + pos: 3.5,-0.5 + parent: 1 + - uid: 113 components: - type: Transform - pos: -11.5,4.5 - parent: 173 - - uid: 72 + pos: 2.5,-0.5 + parent: 1 + - uid: 114 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,2.5 - parent: 173 - - uid: 73 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,1.5 - parent: 173 - - uid: 83 - components: - - type: Transform - pos: -10.5,4.5 - parent: 173 - - uid: 88 - components: - - type: Transform - pos: -11.5,0.5 - parent: 173 - - uid: 97 - components: - - type: Transform - pos: -10.5,0.5 - parent: 173 -- proto: GrilleDiagonal - entities: - - uid: 14 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,0.5 - parent: 173 - - uid: 134 - components: - - type: Transform - pos: -12.5,4.5 - parent: 173 -- proto: Gyroscope - entities: - - uid: 161 - components: - - type: Transform - pos: -11.5,3.5 - parent: 173 -- proto: HolopadCargoShuttle - entities: - - uid: 116 - components: - - type: Transform - pos: -7.5,2.5 - parent: 173 -- proto: LockableButtonCargo - entities: - - uid: 79 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,5.5 - parent: 173 - - type: DeviceLinkSource - linkedPorts: - 1: - - Pressed: Toggle + pos: 2.5,-1.5 + parent: 1 - uid: 115 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-0.5 - parent: 173 - - type: DeviceLinkSource - linkedPorts: - 54: - - Pressed: Toggle -- proto: PlasticFlapsAirtightClear - entities: - - uid: 44 + pos: 2.5,-2.5 + parent: 1 + - uid: 116 components: - type: Transform - pos: 0.5,0.5 - parent: 173 - - uid: 166 + pos: 5.5,-0.5 + parent: 1 + - uid: 117 components: - type: Transform - pos: 0.5,4.5 - parent: 173 -- proto: Poweredlight - entities: - - uid: 22 + pos: 6.5,-0.5 + parent: 1 + - uid: 118 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 173 - - uid: 23 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-0.5 - parent: 173 - - uid: 25 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,5.5 - parent: 173 - - uid: 57 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,5.5 - parent: 173 - - uid: 70 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-0.5 - parent: 173 - - uid: 108 - components: - - type: Transform - pos: -3.5,5.5 - parent: 173 - - uid: 147 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,2.5 - parent: 173 - - type: ApcPowerReceiver - powerLoad: 0 -- proto: ShuttleWindow - entities: - - uid: 4 - components: - - type: Transform - pos: -12.5,3.5 - parent: 173 - - uid: 74 - components: - - type: Transform - pos: -11.5,4.5 - parent: 173 - - uid: 76 - components: - - type: Transform - pos: -12.5,2.5 - parent: 173 - - uid: 92 - components: - - type: Transform - pos: -11.5,0.5 - parent: 173 - - uid: 93 - components: - - type: Transform - pos: -12.5,1.5 - parent: 173 - - uid: 133 - components: - - type: Transform - pos: -10.5,4.5 - parent: 173 - - uid: 148 - components: - - type: Transform - pos: -10.5,0.5 - parent: 173 -- proto: ShuttleWindowDiagonal - entities: - - uid: 8 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,0.5 - parent: 173 - - uid: 135 - components: - - type: Transform - pos: -12.5,4.5 - parent: 173 -- proto: SMESBasic - entities: - - uid: 89 - components: - - type: Transform - pos: -10.5,1.5 - parent: 173 -- proto: SubstationBasic - entities: - - uid: 160 - components: - - type: Transform - pos: -9.5,1.5 - parent: 173 -- proto: Thruster - entities: - - uid: 24 - components: - - type: Transform - pos: -0.5,6.5 - parent: 173 - - uid: 34 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-0.5 - parent: 173 - - uid: 37 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-0.5 - parent: 173 - - uid: 78 - components: - - type: Transform - pos: -10.5,5.5 - parent: 173 - - uid: 80 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-1.5 - parent: 173 - - uid: 87 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,5.5 - parent: 173 - - uid: 121 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,6.5 - parent: 173 - - uid: 124 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-1.5 - parent: 173 -- proto: TwoWayLever - entities: - - uid: 35 - components: - - type: Transform - pos: -1.5,1.5 - parent: 173 - - type: DeviceLinkSource - linkedPorts: - 51: - - Left: Forward - - Right: Reverse - - Middle: Off - 46: - - Left: Forward - - Right: Reverse - - Middle: Off - 167: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 36 - components: - - type: Transform - pos: -1.5,3.5 - parent: 173 - - type: DeviceLinkSource - linkedPorts: - 38: - - Left: Forward - - Right: Reverse - - Middle: Off - 39: - - Left: Forward - - Right: Reverse - - Middle: Off - 40: - - Left: Forward - - Right: Reverse - - Middle: Off -- proto: WallShuttle - entities: - - uid: 16 - components: - - type: Transform - pos: -2.5,-1.5 - parent: 173 - - uid: 17 - components: - - type: Transform - pos: -3.5,-1.5 - parent: 173 - - uid: 18 - components: - - type: Transform - pos: -4.5,-1.5 - parent: 173 - - uid: 21 - components: - - type: Transform - pos: -5.5,-1.5 - parent: 173 - - uid: 26 - components: - - type: Transform - pos: -4.5,6.5 - parent: 173 - - uid: 27 - components: - - type: Transform - pos: -5.5,6.5 - parent: 173 - - uid: 30 - components: - - type: Transform - pos: 0.5,5.5 - parent: 173 - - uid: 31 - components: - - type: Transform - pos: 0.5,-0.5 - parent: 173 - - uid: 32 - components: - - type: Transform - pos: 0.5,2.5 - parent: 173 - - uid: 33 - components: - - type: Transform - pos: -1.5,-0.5 - parent: 173 - - uid: 56 - components: - - type: Transform - pos: -0.5,5.5 - parent: 173 - - uid: 61 - components: - - type: Transform - pos: -0.5,-0.5 - parent: 173 - - uid: 71 - components: - - type: Transform - pos: -7.5,0.5 - parent: 173 - - uid: 86 - components: - - type: Transform - pos: -7.5,4.5 - parent: 173 - - uid: 105 - components: - - type: Transform - pos: -9.5,0.5 - parent: 173 - - uid: 106 - components: - - type: Transform - pos: -8.5,4.5 - parent: 173 + pos: 9.5,0.5 + parent: 1 - uid: 119 components: - type: Transform - pos: -1.5,-1.5 - parent: 173 + pos: 8.5,0.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 - uid: 123 components: - type: Transform - pos: -1.5,5.5 - parent: 173 - - uid: 140 + pos: 6.5,-1.5 + parent: 1 + - uid: 124 components: - type: Transform - pos: -1.5,6.5 - parent: 173 - - uid: 141 + pos: 6.5,-2.5 + parent: 1 + - uid: 125 components: - type: Transform - pos: -2.5,6.5 - parent: 173 - - uid: 142 + pos: 7.5,-2.5 + parent: 1 + - uid: 126 components: - type: Transform - pos: -3.5,6.5 - parent: 173 - - uid: 143 + pos: 8.5,-2.5 + parent: 1 + - uid: 127 components: - type: Transform - pos: -8.5,5.5 - parent: 173 - - uid: 144 + pos: 9.5,-2.5 + parent: 1 + - uid: 128 components: - type: Transform - pos: -8.5,6.5 - parent: 173 - - uid: 145 + pos: 10.5,-2.5 + parent: 1 + - uid: 129 components: - type: Transform - pos: -7.5,6.5 - parent: 173 - - uid: 146 + pos: 11.5,-2.5 + parent: 1 + - uid: 130 components: - type: Transform - pos: -6.5,6.5 - parent: 173 - - uid: 149 + pos: 9.5,-0.5 + parent: 1 + - uid: 131 components: - type: Transform - pos: -9.5,4.5 - parent: 173 - - uid: 150 + pos: 10.5,-0.5 + parent: 1 + - uid: 132 components: - type: Transform - pos: -8.5,-1.5 - parent: 173 - - uid: 151 + pos: 11.5,-0.5 + parent: 1 + - uid: 162 components: - type: Transform - pos: -8.5,-0.5 - parent: 173 - - uid: 152 + pos: 1.5,-0.5 + parent: 1 + - uid: 163 components: - type: Transform - pos: -8.5,0.5 - parent: 173 - - uid: 153 + pos: 1.5,-2.5 + parent: 1 + - uid: 164 components: - type: Transform - pos: -7.5,-1.5 - parent: 173 - - uid: 154 + pos: 12.5,-0.5 + parent: 1 + - uid: 165 components: - type: Transform - pos: -6.5,-1.5 - parent: 173 -- proto: WindoorCargoLocked + pos: 13.5,-0.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 +- proto: CableHV entities: - - uid: 10 + - uid: 103 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 104 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 +- proto: CableMV + entities: + - uid: 12 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 +- proto: CableTerminal + entities: + - uid: 102 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,2.5 - parent: 173 -- proto: WindowReinforcedDirectional + pos: 1.5,0.5 + parent: 1 +- proto: Chair entities: - uid: 7 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,3.5 - parent: 173 - - uid: 77 + pos: 7.5,-1.5 + parent: 1 + - uid: 8 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,1.5 - parent: 173 + pos: 7.5,-2.5 + parent: 1 + - uid: 38 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 + - uid: 46 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1 + - uid: 52 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 1 + - uid: 81 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-0.5 + parent: 1 + - uid: 82 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-1.5 + parent: 1 + - uid: 83 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-2.5 + parent: 1 + - uid: 84 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 97 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 +- proto: ChemistryBottleEpinephrine + entities: + - uid: 86 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 1 +- proto: ChemistryBottleNocturine + entities: + - uid: 139 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 1 +- proto: ComputerShuttleCargo + entities: + - uid: 9 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 1 +- proto: GasPipeBend + entities: + - uid: 146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + - uid: 147 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 1 + - uid: 148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 1 + - uid: 156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 1 +- proto: GasPipeStraight + entities: + - uid: 149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + - uid: 150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 1 + - uid: 151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1 + - uid: 152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 1 +- proto: GasPipeTJunction + entities: + - uid: 145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1 + - uid: 155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 1 +- proto: GasPort + entities: + - uid: 143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 1 + - uid: 159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-3.5 + parent: 1 +- proto: GasPressurePump + entities: + - uid: 144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 1 +- proto: GasVentPump + entities: + - uid: 141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 1 + - uid: 142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 1 +- proto: GasVentScrubber + entities: + - uid: 153 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 1 + - uid: 154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-2.5 + parent: 1 +- proto: GeneratorWallmountAPU + entities: + - uid: 99 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 98 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 +- proto: Grille + entities: + - uid: 10 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: 12.5,1.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 1 + - uid: 45 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 + - uid: 88 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 110 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 +- proto: MedkitFilled + entities: + - uid: 80 + components: + - type: Transform + pos: 11.5,0.5 + parent: 1 +- proto: ParchisBoard + entities: + - uid: 79 + components: + - type: Transform + pos: 12.5,0.5 + parent: 1 +- proto: PillCanisterCharcoal + entities: + - uid: 93 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 1 +- proto: PoweredlightLED + entities: + - uid: 133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 1 + - uid: 134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + - uid: 135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-3.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-3.5 + parent: 1 + - uid: 138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,0.5 + parent: 1 +- proto: PrefilledSyringe + entities: + - uid: 6 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 1 +- proto: RadioHandheld + entities: + - uid: 94 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 1 +- proto: ShuttleWindow + entities: + - uid: 32 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: 12.5,1.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 +- proto: SMESBasic + entities: + - uid: 100 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 +- proto: StorageCanister + entities: + - uid: 158 + components: + - type: Transform + anchored: True + pos: 6.5,-3.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: SubstationBasic + entities: + - uid: 101 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 +- proto: Table + entities: + - uid: 76 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,0.5 + parent: 1 + - uid: 77 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 1 + - uid: 78 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-2.5 + parent: 1 +- proto: Thruster + entities: + - uid: 5 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 1 + - uid: 13 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + - uid: 20 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,1.5 + parent: 1 + - uid: 29 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-4.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: 10.5,1.5 + parent: 1 + - uid: 161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-4.5 + parent: 1 +- proto: WallShuttle + entities: + - uid: 2 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 3 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 4 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: 14.5,0.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: 13.5,0.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 13.5,1.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: 11.5,1.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: 9.5,1.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: 7.5,1.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: 10.5,0.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 1 +- proto: WardrobePrisonFilled + entities: + - uid: 92 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 1 +- proto: WeaponTaser + entities: + - uid: 85 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 1 +- proto: Windoor + entities: + - uid: 73 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 1 + - uid: 74 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 1 +- proto: WindoorSecureSecurityLocked + entities: + - uid: 11 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 +- proto: WindowDirectional + entities: + - uid: 36 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 61 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 1 + - uid: 62 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 1 + - uid: 63 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-2.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 1 + - uid: 65 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,0.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 1 + - uid: 67 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-3.5 + parent: 1 + - uid: 68 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 1 + - uid: 69 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,0.5 + parent: 1 + - uid: 70 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,0.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 87 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 1 + - uid: 170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 ... diff --git a/Resources/Maps/Shuttles/emergency_relic.yml b/Resources/Maps/Shuttles/emergency_relic.yml index 03567878ef..b5c48b5786 100644 --- a/Resources/Maps/Shuttles/emergency_relic.yml +++ b/Resources/Maps/Shuttles/emergency_relic.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Grid - engineVersion: 247.2.0 + engineVersion: 264.0.0 forkId: "" forkVersion: "" - time: 03/22/2025 16:54:04 - entityCount: 138 + time: 07/25/2025 18:00:45 + entityCount: 176 maps: [] grids: - 1 @@ -22,7 +22,7 @@ entities: - uid: 1 components: - type: MetaData - name: grid + name: NT Evac Reliquary - type: Transform pos: -7.265625,2.28125 parent: invalid @@ -30,12 +30,12 @@ entities: chunks: 0,0: ind: 0,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 0,-1: ind: 0,-1 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAA - version: 6 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -48,6 +48,7 @@ entities: - type: OccluderTree - type: SpreaderGrid - type: Shuttle + dampingModifier: 0.25 - type: GridPathfinding - type: Gravity gravityShakeSound: !type:SoundPathSpecifier @@ -102,6 +103,17 @@ entities: configurators: [] deviceLists: [] transmitFrequencyId: ShuttleTimer + - type: ImplicitRoof +- proto: AirCanister + entities: + - uid: 139 + components: + - type: Transform + anchored: True + pos: 3.5,-3.5 + parent: 1 + - type: Physics + bodyType: Static - proto: AirlockFreezerLocked entities: - uid: 10 @@ -122,7 +134,7 @@ entities: - - Engineering - - Medical - type: Door - secondsUntilStateChange: -60.848633 + secondsUntilStateChange: -613.913 state: Opening - type: DeviceLinkSource lastSignals: @@ -345,14 +357,33 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,-1.5 parent: 1 -- proto: ClosetFireFilled +- proto: ChemistryBottleEpinephrine entities: - - uid: 88 + - uid: 173 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 1 +- proto: ClothingMaskGas + entities: + - uid: 171 components: - type: Transform pos: 6.5,0.5 parent: 1 - - uid: 90 + - uid: 172 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 +- proto: ClothingOuterSuitFire + entities: + - uid: 169 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 170 components: - type: Transform pos: 7.5,0.5 @@ -365,6 +396,174 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,-1.5 parent: 1 +- proto: GasPipeBend + entities: + - uid: 159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 1 + - uid: 160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 1 +- proto: GasPipeStraight + entities: + - uid: 145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + - uid: 146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 1 + - uid: 147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 1 + - uid: 148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 + - uid: 149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + - uid: 150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + - uid: 151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + - uid: 152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + - uid: 153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 1 + - uid: 154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1 + - uid: 155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 1 + - uid: 156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 1 + - uid: 165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1 + - uid: 166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 1 +- proto: GasPipeTJunction + entities: + - uid: 157 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 1 +- proto: GasPort + entities: + - uid: 163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 1 + - uid: 164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 1 +- proto: GasPressurePump + entities: + - uid: 161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 1 + - uid: 162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 1 +- proto: GasVentPump + entities: + - uid: 143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 1 + - uid: 144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 1 +- proto: GasVentScrubber + entities: + - uid: 141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 1 + - uid: 142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 - proto: GeneratorWallmountAPU entities: - uid: 99 @@ -491,6 +690,18 @@ entities: - type: Transform pos: 1.5,-2.5 parent: 1 +- proto: OxygenTankFilled + entities: + - uid: 167 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 - proto: ParchisBoard entities: - uid: 79 @@ -498,6 +709,13 @@ entities: - type: Transform pos: 12.5,0.5 parent: 1 +- proto: PillCanisterCharcoal + entities: + - uid: 174 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 1 - proto: PoweredlightLED entities: - uid: 133 @@ -535,6 +753,34 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,0.5 parent: 1 +- proto: PrefilledSyringe + entities: + - uid: 175 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 1 +- proto: Rack + entities: + - uid: 88 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 1 + - uid: 90 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1 +- proto: RadioHandheld + entities: + - uid: 176 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 1 - proto: ReinforcedWindow entities: - uid: 86 @@ -613,6 +859,16 @@ entities: - type: Transform pos: 1.5,-3.5 parent: 1 +- proto: StorageCanister + entities: + - uid: 140 + components: + - type: Transform + anchored: True + pos: 3.5,-1.5 + parent: 1 + - type: Physics + bodyType: Static - proto: SubstationBasic entities: - uid: 101 @@ -670,6 +926,16 @@ entities: - type: Transform pos: 0.5,1.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: 13 components: - type: Transform @@ -780,6 +1046,16 @@ entities: - type: Transform pos: 4.5,-4.5 parent: 1 + - uid: 46 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: 10.5,0.5 + parent: 1 - uid: 48 components: - type: Transform @@ -795,28 +1071,6 @@ entities: - type: Transform pos: 0.5,-3.5 parent: 1 -- proto: WallShuttleInterior - entities: - - 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: 46 - components: - - type: Transform - pos: 10.5,-3.5 - parent: 1 - - uid: 47 - components: - - type: Transform - pos: 10.5,0.5 - parent: 1 - proto: Windoor entities: - uid: 73 diff --git a/Resources/Maps/Shuttles/infiltrator.yml b/Resources/Maps/Shuttles/infiltrator.yml index 784886c892..d8b50e99ab 100644 --- a/Resources/Maps/Shuttles/infiltrator.yml +++ b/Resources/Maps/Shuttles/infiltrator.yml @@ -1,6 +1,17 @@ meta: - format: 6 - postmapinit: false + format: 7 + category: Grid + engineVersion: 266.0.0 + forkId: "" + forkVersion: "" + time: 08/18/2025 05:46:30 + entityCount: 822 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] tilemap: 0: Space 3: FloorArcadeRed @@ -34,20 +45,20 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAABHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWAAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWAAAAAAAHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWAAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACWAAAAAAAHwAAAAACHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACaAAAAAAAWQAAAAAAHwAAAAADHwAAAAAAHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADWQAAAAAAaAAAAAABWAAAAAAAHwAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADWAAAAAAAHwAAAAACHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAgAfAAAAAAEAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAWAAAAAAAAB8AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAFgAAAAAAAAfAAAAAAIAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABYAAAAAAAAHwAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAFgAAAAAAAAfAAAAAAIAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAABdAAAAAAIAaAAAAAAAAFkAAAAAAAAfAAAAAAMAHwAAAAAAAB8AAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAXQAAAAADAFkAAAAAAABoAAAAAAEAWAAAAAAAAB8AAAAAAAAfAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAADAFgAAAAAAAAfAAAAAAIAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,-1: ind: 0,-1 - tiles: HwAAAAABHwAAAAABHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACWAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACWAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABWAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABWAAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAAAHwAAAAAAegAAAAADegAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAWAAAAAAAegAAAAAAAwAAAAAAegAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADWAAAAAAAfgAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAWAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: HwAAAAABAB8AAAAAAQAfAAAAAAEAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAIAWAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACAFgAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAQBYAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABAFgAAAAAAAB6AAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAwAfAAAAAAAAHwAAAAAAAHoAAAAAAwB6AAAAAAEAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAWAAAAAAAAHoAAAAAAAADAAAAAAAAegAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADAFgAAAAAAAB+AAAAAAAAAwAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAABYAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAOAAAAAAAJAAAAAAAOAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAOAAAAAAAJAAAAAAAOAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAOAAAAAAAJAAAAAAAOAAAAAAAWAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADWAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACTwAAAAAAHwAAAAABWAAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAWAAAAAAAfgAAAAAAHwAAAAAAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAWAAAAAAAHwAAAAADHwAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAWAAAAAAAHwAAAAAAWAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAA4AAAAAAAAJAAAAAAAADgAAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAOAAAAAAAACQAAAAAAAA4AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAADgAAAAAAAAkAAAAAAAAOAAAAAAAAFgAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAAAAB8AAAAAAwBYAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAHwAAAAACAE8AAAAAAAAfAAAAAAEAWAAAAAAAAH4AAAAAAAB+AAAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAFgAAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAKAAAAAAAACgAAAAAAABYAAAAAAAAHwAAAAADAB8AAAAAAAAfAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAFgAAAAAAAAfAAAAAAAAWAAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAEAHwAAAAAAAB8AAAAAAwAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG4AAAAAAAAfAAAAAAAAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAADHwAAAAABWAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAE8AAAAAAAB+AAAAAAAATwAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAABPAAAAAAAAfgAAAAAAAE8AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAATwAAAAAAAH4AAAAAAABPAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAABAB8AAAAAAwAfAAAAAAEAWAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAMAHwAAAAACAB8AAAAAAAAfAAAAAAIAHwAAAAADAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAAAHwAAAAADAB8AAAAAAQB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAEAHwAAAAAAAB8AAAAAAQAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAACAG4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -576,12 +587,14 @@ entities: flags: Hide - type: OccluderTree - type: Shuttle + dampingModifier: 0.25 - type: RadiationGridResistance - type: GravityShake shakeTimes: 10 - type: GasTileOverlay - type: SpreaderGrid - type: GridPathfinding + - type: ImplicitRoof - proto: AirlockExternalGlassShuttleSyndicateLocked entities: - uid: 8 @@ -593,7 +606,8 @@ entities: - type: DeviceLinkSource linkedPorts: 13: - - DoorStatus: Close + - - DoorStatus + - Close - type: DeviceLinkSink invokeCounter: 1 - uid: 10 @@ -605,7 +619,8 @@ entities: - type: DeviceLinkSource linkedPorts: 3: - - DoorStatus: Close + - - DoorStatus + - Close - type: DeviceLinkSink invokeCounter: 1 - proto: AirlockExternalSyndicateLocked @@ -618,7 +633,8 @@ entities: - type: DeviceLinkSource linkedPorts: 14: - - DoorStatus: DoorBolt + - - DoorStatus + - DoorBolt - uid: 3 components: - type: Transform @@ -629,7 +645,8 @@ entities: - type: DeviceLinkSource linkedPorts: 10: - - DoorStatus: Close + - - DoorStatus + - Close - uid: 7 components: - type: Transform @@ -638,7 +655,8 @@ entities: - type: DeviceLinkSource linkedPorts: 12: - - DoorStatus: DoorBolt + - - DoorStatus + - DoorBolt - uid: 9 components: - type: Transform @@ -647,7 +665,8 @@ entities: - type: DeviceLinkSource linkedPorts: 22: - - DoorStatus: DoorBolt + - - DoorStatus + - DoorBolt - uid: 12 components: - type: Transform @@ -656,7 +675,8 @@ entities: - type: DeviceLinkSource linkedPorts: 7: - - DoorStatus: DoorBolt + - - DoorStatus + - DoorBolt - uid: 13 components: - type: Transform @@ -667,7 +687,8 @@ entities: - type: DeviceLinkSource linkedPorts: 8: - - DoorStatus: Close + - - DoorStatus + - Close - uid: 14 components: - type: Transform @@ -676,7 +697,8 @@ entities: - type: DeviceLinkSource linkedPorts: 2: - - DoorStatus: DoorBolt + - - DoorStatus + - DoorBolt - uid: 22 components: - type: Transform @@ -685,7 +707,8 @@ entities: - type: DeviceLinkSource linkedPorts: 9: - - DoorStatus: DoorBolt + - - DoorStatus + - DoorBolt - proto: AirlockSyndicateGlassLocked entities: - uid: 4 @@ -727,12 +750,16 @@ entities: - type: Transform pos: -3.5,-18.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 19 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-8.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: AtmosFixNitrogenMarker entities: - uid: 25 @@ -820,45 +847,6 @@ entities: - type: Transform pos: 1.4510483,-2.399527 parent: 1 -- proto: Brutepack - entities: - - uid: 44 - components: - - type: Transform - pos: -3.292087,-4.1600046 - parent: 1 - - uid: 45 - components: - - type: Transform - pos: -3.354587,-4.4256296 - parent: 1 -- proto: C4 - entities: - - uid: 46 - components: - - type: Transform - pos: 1.7857682,-12.631323 - parent: 1 - - uid: 47 - components: - - type: Transform - pos: 1.5045182,-12.646948 - parent: 1 - - uid: 48 - components: - - type: Transform - pos: 1.5982682,-12.646948 - parent: 1 - - uid: 49 - components: - - type: Transform - pos: 1.4107682,-12.646948 - parent: 1 - - uid: 50 - components: - - type: Transform - pos: 1.6920182,-12.631323 - parent: 1 - proto: CableApcExtension entities: - uid: 51 @@ -2210,26 +2198,26 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-3.5 parent: 1 -- proto: CigPackSyndicate +- proto: ClothingBackpackDuffelSyndicateAmmoFilled entities: - - uid: 313 + - uid: 49 components: - type: Transform - pos: -3.5658307,-17.516623 + pos: 1.4468282,-11.670399 parent: 1 - proto: ClothingBackpackDuffelSyndicateFilledMedical entities: - uid: 314 components: - type: Transform - pos: -3.5044222,-6.293252 + pos: -5.6167116,-4.2485933 parent: 1 - proto: ClothingHeadHatSyndie entities: - uid: 315 components: - type: Transform - pos: -3.1200604,-17.289778 + pos: -3.0420556,-17.469692 parent: 1 - proto: ClothingHeadHatSyndieMAA entities: @@ -3617,18 +3605,6 @@ entities: - type: Transform pos: -4.5,-3.5 parent: 1 -- proto: MedkitCombatFilled - entities: - - uid: 501 - components: - - type: Transform - pos: -3.401462,-3.5350046 - parent: 1 - - uid: 502 - components: - - type: Transform - pos: -3.557712,-3.4256296 - parent: 1 - proto: Mirror entities: - uid: 503 @@ -3636,6 +3612,8 @@ entities: - type: Transform pos: 4.5,-3.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: Multitool entities: - uid: 504 @@ -3672,17 +3650,38 @@ entities: - type: Transform pos: -2.5,-12.5 parent: 1 -- proto: Ointment +- proto: NukeOpsGrenadeSpawner entities: - - uid: 511 + - uid: 44 components: - type: Transform - pos: -3.651462,-4.5193796 + pos: 1.5,-12.5 parent: 1 - - uid: 512 +- proto: NukeOpsLootSpawner + entities: + - uid: 46 components: - type: Transform - pos: -3.667087,-4.2225046 + pos: -3.5,-17.5 + parent: 1 +- proto: NukeOpsMedkitBruteSpawner + entities: + - uid: 48 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 1 +- proto: NukeOpsMedkitSpawner + entities: + - uid: 47 + components: + - type: Transform + pos: -3.5,-4.5 parent: 1 - proto: OperatingTable entities: @@ -3761,6 +3760,8 @@ entities: - type: Transform pos: 1.5,-14.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterContrabandCC64KAd entities: - uid: 525 @@ -3768,6 +3769,8 @@ entities: - type: Transform pos: -5.5,-18.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterContrabandCybersun600 entities: - uid: 526 @@ -3775,6 +3778,8 @@ entities: - type: Transform pos: 2.5,-6.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterContrabandDonk entities: - uid: 527 @@ -3783,6 +3788,8 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-18.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterContrabandDonutCorp entities: - uid: 528 @@ -3791,6 +3798,8 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-22.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterContrabandEnergySwords entities: - uid: 529 @@ -3798,6 +3807,8 @@ entities: - type: Transform pos: 2.5,-18.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterContrabandEnlistGorlex entities: - uid: 530 @@ -3806,6 +3817,8 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-13.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterContrabandFreeSyndicateEncryptionKey entities: - uid: 531 @@ -3813,6 +3826,8 @@ entities: - type: Transform pos: -2.5,-8.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterContrabandInterdyne entities: - uid: 532 @@ -3821,6 +3836,8 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-6.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterContrabandKosmicheskayaStantsiya entities: - uid: 533 @@ -3828,6 +3845,8 @@ entities: - type: Transform pos: -2.5,-22.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterContrabandMoth entities: - uid: 534 @@ -3835,11 +3854,15 @@ entities: - type: Transform pos: -2.5,-14.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 535 components: - type: Transform pos: 2.5,-3.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterContrabandNuclearDeviceInformational entities: - uid: 536 @@ -3848,11 +3871,15 @@ entities: rot: 3.141592653589793 rad pos: -3.5,-13.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 537 components: - type: Transform pos: 0.5,-14.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterContrabandSyndicatePistol entities: - uid: 538 @@ -3860,6 +3887,8 @@ entities: - type: Transform pos: 1.5,-10.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterContrabandSyndicateRecruitment entities: - uid: 539 @@ -3867,6 +3896,8 @@ entities: - type: Transform pos: -1.5,-14.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterContrabandWaffleCorp entities: - uid: 540 @@ -3875,6 +3906,8 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-23.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: Poweredlight entities: - uid: 541 @@ -4302,9 +4335,13 @@ entities: - type: DeviceLinkSource linkedPorts: 600: - - Pressed: Toggle + - - Pressed + - Toggle 599: - - Pressed: Toggle + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} - uid: 611 components: - type: Transform @@ -4313,7 +4350,10 @@ entities: - type: DeviceLinkSource linkedPorts: 605: - - Pressed: Toggle + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} - proto: SignalButtonDirectional entities: - uid: 20 @@ -4325,9 +4365,13 @@ entities: - type: DeviceLinkSource linkedPorts: 602: - - Pressed: Toggle + - - Pressed + - Toggle 598: - - Pressed: Toggle + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} - uid: 21 components: - type: Transform @@ -4337,19 +4381,28 @@ entities: - type: DeviceLinkSource linkedPorts: 597: - - Pressed: Toggle + - - Pressed + - Toggle 601: - - Pressed: Toggle + - - Pressed + - Toggle 608: - - Pressed: Toggle + - - Pressed + - Toggle 606: - - Pressed: Toggle + - - Pressed + - Toggle 604: - - Pressed: Toggle + - - Pressed + - Toggle 607: - - Pressed: Toggle + - - Pressed + - Toggle 603: - - Pressed: Toggle + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} - proto: SignDirectionalEvac entities: - uid: 613 @@ -4357,30 +4410,40 @@ entities: - type: Transform pos: 0.5,-22.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 614 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-15.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 615 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-14.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 616 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-14.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 617 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-15.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SignElectricalMed entities: - uid: 618 @@ -4388,6 +4451,8 @@ entities: - type: Transform pos: -2.5,-18.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SignNosmoking entities: - uid: 619 @@ -4395,6 +4460,8 @@ entities: - type: Transform pos: 5.5,-22.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SignSecureSmallRed entities: - uid: 620 @@ -4402,16 +4469,22 @@ entities: - type: Transform pos: -3.5,-11.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 621 components: - type: Transform pos: 4.5,-17.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 622 components: - type: Transform pos: 2.5,-11.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SMESBasic entities: - uid: 623 @@ -4481,30 +4554,6 @@ entities: - type: Transform pos: 3.5,-19.5 parent: 1 -- proto: SyndieMiniBomb - entities: - - uid: 633 - components: - - type: Transform - pos: 1.4127003,-11.973867 - parent: 1 - - uid: 634 - components: - - type: Transform - pos: 1.6939503,-11.973867 - parent: 1 -- proto: SyringeInaprovaline - entities: - - uid: 635 - components: - - type: Transform - pos: -3.510837,-4.3787546 - parent: 1 - - uid: 636 - components: - - type: Transform - pos: -3.510837,-4.0193796 - parent: 1 - proto: Table entities: - uid: 637 @@ -4689,14 +4738,7 @@ entities: - uid: 669 components: - type: Transform - pos: -2.5731854,-17.414778 - parent: 1 -- proto: ToolboxSyndicateFilled - entities: - - uid: 670 - components: - - type: Transform - pos: 1.5034143,-11.298322 + pos: -2.468854,-17.396727 parent: 1 - proto: VendingMachineTankDispenserEVA entities: @@ -5516,6 +5558,8 @@ entities: - type: Transform pos: 4.5,-25.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: WarningO2 entities: - uid: 828 @@ -5523,6 +5567,8 @@ entities: - type: Transform pos: 2.5,-25.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: WarningWaste entities: - uid: 829 @@ -5530,6 +5576,8 @@ entities: - type: Transform pos: 4.5,-18.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: WaterCooler entities: - uid: 830 diff --git a/Resources/Maps/Shuttles/mothership.yml b/Resources/Maps/Shuttles/mothership.yml new file mode 100644 index 0000000000..b958c47401 --- /dev/null +++ b/Resources/Maps/Shuttles/mothership.yml @@ -0,0 +1,2703 @@ +meta: + format: 7 + category: Grid + engineVersion: 266.0.0 + forkId: "" + forkVersion: "" + time: 08/14/2025 23:46:23 + entityCount: 435 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] +tilemap: + 1: Space + 3: FloorBlueCircuit + 4: FloorXenoborg + 2: Lattice + 0: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: mothership + - type: Transform + pos: -0.49999905,-0.4677186 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AwAAAAAAAAQAAAAAAAAEAAAAAAAAAwAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAAEAAAAAAAAAwAAAAAAAAAAAAAAAAAEAAAAAAAAAwAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAADAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + -1,0: + ind: -1,0 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAMAAAAAAAAEAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAwAAAAAAAAQAAAAAAAAAAAAAAAAAAwAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAADAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAABAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAAAQAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAAEAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAABAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAwAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAAAQAAAAAAAADAAAAAAAAAAAAAAAAAAQAAAAAAAADAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + -1,-1: + ind: -1,-1 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAADAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAADAAAAAAAABAAAAAAAAAAAAAAAAAADAAAAAAAABAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: ImplicitRoof + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#0000FFFF' + id: WarnCornerSmallGreyscaleNE + decals: + 43: 4,0 + 50: 4,-4 + 51: -4,4 + 57: -4,-1 + - node: + color: '#0000FFFF' + id: WarnCornerSmallGreyscaleNW + decals: + 44: -4,0 + 49: -4,-4 + 52: 4,4 + 58: 4,-1 + - node: + color: '#0000FFFF' + id: WarnCornerSmallGreyscaleSE + decals: + 45: 4,0 + 48: 4,4 + 55: -4,1 + - node: + color: '#0000FFFF' + id: WarnCornerSmallGreyscaleSW + decals: + 46: -4,0 + 47: -4,4 + 56: 4,1 + - node: + color: '#0000FFFF' + id: WarnLineGreyscaleE + decals: + 1: 4,3 + 2: 4,2 + 3: 4,1 + 4: 4,-1 + 5: 4,-2 + 6: 4,-3 + 8: -1,-4 + 9: -1,-5 + 10: -1,-7 + 11: -1,-8 + 12: -1,-9 + 13: -1,-10 + 14: -1,-11 + 53: -4,0 + - node: + color: '#0000FFFF' + id: WarnLineGreyscaleN + decals: + 15: 5,0 + 16: -5,0 + 17: -3,4 + 18: -2,4 + 19: -1,4 + 20: 0,4 + 21: 1,4 + 22: 2,4 + 23: 3,4 + - node: + color: '#0000FFFF' + id: WarnLineGreyscaleS + decals: + 26: 5,0 + 27: -5,0 + - node: + color: '#0000FFFF' + id: WarnLineGreyscaleW + decals: + 29: -4,3 + 30: -4,2 + 31: -4,1 + 32: -4,-1 + 33: -4,-2 + 34: -4,-3 + 36: 1,-4 + 37: 1,-5 + 38: 1,-7 + 39: 1,-8 + 40: 1,-9 + 41: 1,-10 + 42: 1,-11 + 54: 4,0 + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirlockGlassShuttleXenoborgLocked + entities: + - uid: 107 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 1 +- proto: AirlockXenoborgLocked + entities: + - uid: 104 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 338 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + - uid: 367 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 +- proto: APCXenoborg + entities: + - uid: 148 + components: + - type: MetaData + name: west APC + - type: Transform + pos: -8.5,2.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 240 + components: + - type: MetaData + name: docking APC + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,2.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 424 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: BlastDoor + entities: + - uid: 253 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 +- proto: BorgCharger + entities: + - uid: 347 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 348 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 1 + - uid: 350 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - uid: 351 + components: + - type: Transform + pos: -4.5,3.5 + parent: 1 + - uid: 352 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 353 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-0.5 + parent: 1 + - uid: 390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 1 + - uid: 391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-2.5 + parent: 1 + - uid: 392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 1 + - uid: 393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 1 + - uid: 394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,2.5 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 261 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 262 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 263 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 264 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - uid: 265 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 266 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 267 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 268 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 269 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 275 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 1 + - uid: 283 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 + - uid: 284 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 285 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 286 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - uid: 287 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 288 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - uid: 289 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 + - uid: 290 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 294 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 295 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 298 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 299 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 300 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 301 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 302 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 303 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 304 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 305 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 306 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 307 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 308 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 309 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 1 + - uid: 310 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 1 + - uid: 311 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 + - uid: 312 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 + - uid: 313 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 1 + - uid: 314 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1 + - uid: 315 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 1 + - uid: 316 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 1 + - uid: 317 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 318 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 319 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 320 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 321 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 322 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 323 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 324 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 330 + components: + - type: Transform + pos: -8.5,2.5 + parent: 1 + - uid: 331 + components: + - type: Transform + pos: -8.5,1.5 + parent: 1 + - uid: 332 + components: + - type: Transform + pos: -8.5,0.5 + parent: 1 + - uid: 333 + components: + - type: Transform + pos: -10.5,0.5 + parent: 1 + - uid: 334 + components: + - type: Transform + pos: -9.5,0.5 + parent: 1 + - uid: 335 + components: + - type: Transform + pos: -8.5,0.5 + parent: 1 + - uid: 336 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1 + - uid: 337 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 401 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 + - uid: 402 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 + - uid: 406 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 407 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - uid: 410 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 1 + - uid: 411 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 1 + - uid: 412 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 1 + - uid: 413 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 +- proto: CableApcStack + entities: + - uid: 345 + components: + - type: Transform + parent: 425 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CableHV + entities: + - uid: 139 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 1 + - uid: 141 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: -10.5,0.5 + parent: 1 + - uid: 144 + components: + - type: Transform + pos: -10.5,1.5 + parent: 1 + - uid: 145 + components: + - type: Transform + pos: -9.5,1.5 + parent: 1 + - uid: 146 + components: + - type: Transform + pos: -8.5,1.5 + parent: 1 + - uid: 147 + components: + - type: Transform + pos: -7.5,1.5 + parent: 1 + - uid: 414 + components: + - type: Transform + pos: -9.5,0.5 + parent: 1 +- proto: CableHVStack + entities: + - uid: 343 + components: + - type: Transform + parent: 425 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CableMV + entities: + - uid: 149 + components: + - type: Transform + pos: -7.5,1.5 + parent: 1 + - uid: 150 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 1 + - uid: 151 + components: + - type: Transform + pos: -8.5,2.5 + parent: 1 + - uid: 152 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1 + - uid: 153 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 154 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 161 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: 7.5,1.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 182 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 185 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 186 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 187 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 + - uid: 188 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 1 + - uid: 189 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 1 + - uid: 194 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 1 + - uid: 195 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 1 + - uid: 196 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 1 + - uid: 197 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 1 + - uid: 198 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 1 + - uid: 199 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 1 + - uid: 200 + components: + - type: Transform + pos: -8.5,0.5 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: -9.5,0.5 + parent: 1 + - uid: 202 + components: + - type: Transform + pos: -10.5,0.5 + parent: 1 + - uid: 203 + components: + - type: Transform + pos: -11.5,0.5 + parent: 1 + - uid: 204 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 1 + - uid: 205 + components: + - type: Transform + pos: -11.5,1.5 + parent: 1 + - uid: 206 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 1 + - uid: 207 + components: + - type: Transform + pos: -9.5,2.5 + parent: 1 + - uid: 208 + components: + - type: Transform + pos: -10.5,2.5 + parent: 1 + - uid: 209 + components: + - type: Transform + pos: -7.5,2.5 + parent: 1 + - uid: 210 + components: + - type: Transform + pos: -6.5,2.5 + parent: 1 + - uid: 211 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 1 + - uid: 242 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 + - uid: 255 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 256 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 258 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - uid: 259 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 + - uid: 281 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 293 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 359 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 360 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 +- proto: CableMVStack + entities: + - uid: 339 + components: + - type: Transform + parent: 425 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CableTerminal + entities: + - uid: 138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,0.5 + parent: 1 + - uid: 371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,0.5 + parent: 1 +- proto: ComputerIFFSyndicate + entities: + - uid: 278 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 +- proto: ComputerPowerMonitoring + entities: + - uid: 279 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 +- proto: ComputerShuttle + entities: + - uid: 273 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 291 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 +- proto: ComputerSurveillanceWirelessXenoborgCameraMonitor + entities: + - uid: 276 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 431 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 +- proto: ComputerXenoborgsControl + entities: + - uid: 277 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 282 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 +- proto: ConveyorBelt + entities: + - uid: 243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-8.5 + parent: 1 + - uid: 244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 1 + - uid: 245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 1 + - uid: 246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 1 + - uid: 247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 1 + - uid: 248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 1 + - uid: 249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 + - uid: 250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 + - uid: 251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 1 +- proto: CrateGenericSteel + entities: + - uid: 425 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 339 + - 341 + - 343 + - 342 + - 345 + - 344 + - 340 + - 346 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: DisposalBend + entities: + - uid: 377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + - uid: 386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 1 +- proto: DisposalJunctionFlipped + entities: + - uid: 376 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 1 +- proto: DisposalPipe + entities: + - uid: 378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1 + - uid: 379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 1 + - uid: 380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1 + - uid: 381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 1 + - uid: 382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 1 + - uid: 384 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 385 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-5.5 + parent: 1 +- proto: DisposalTrunk + entities: + - uid: 325 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + - uid: 388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-6.5 + parent: 1 +- proto: DisposalUnit + entities: + - uid: 326 + components: + - type: MetaData + name: external launch unit + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 369 + components: + - type: MetaData + name: external launch unit + - type: Transform + pos: -3.5,-3.5 + parent: 1 +- proto: FloorDrain + entities: + - uid: 396 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 397 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 398 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 399 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: GeneratorBasic15kW + entities: + - uid: 133 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 1 + - uid: 134 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 132 + components: + - type: Transform + pos: -6.5,1.5 + parent: 1 +- proto: Grille + entities: + - uid: 212 + components: + - type: Transform + pos: -7.5,2.5 + parent: 1 + - uid: 213 + components: + - type: Transform + pos: -6.5,2.5 + parent: 1 + - uid: 214 + components: + - type: Transform + pos: -10.5,2.5 + parent: 1 + - uid: 215 + components: + - type: Transform + pos: -9.5,2.5 + parent: 1 + - uid: 216 + components: + - type: Transform + pos: -11.5,1.5 + parent: 1 + - uid: 217 + components: + - type: Transform + pos: -11.5,0.5 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 1 + - uid: 219 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 1 + - uid: 221 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 1 + - uid: 222 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 1 + - uid: 223 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 1 + - uid: 224 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: 7.5,1.5 + parent: 1 + - uid: 226 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 227 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 228 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 229 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 230 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 232 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 1 + - uid: 233 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 1 + - uid: 234 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 1 + - uid: 235 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 1 + - uid: 236 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 1 + - uid: 254 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 260 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1 + - uid: 329 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 1 + - uid: 358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,1.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-0.5 + parent: 1 +- proto: MachineArtifactCrusher + entities: + - uid: 372 + components: + - type: MetaData + name: body crusher + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - uid: 373 + components: + - type: MetaData + name: body crusher + - type: Transform + pos: 2.5,-4.5 + parent: 1 +- proto: PlasticFlapsAirtightClear + entities: + - uid: 252 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 +- proto: PoweredlightBlue + entities: + - uid: 127 + components: + - type: Transform + pos: -8.5,1.5 + parent: 1 + - uid: 128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-0.5 + parent: 1 + - uid: 238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 1 + - uid: 239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 1 + - uid: 297 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,0.5 + parent: 1 + - uid: 432 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 1 + - uid: 434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 1 +- proto: Recycler + entities: + - uid: 370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-4.5 + parent: 1 +- proto: SheetGlass + entities: + - uid: 341 + components: + - type: Transform + parent: 425 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SheetPlasteel + entities: + - uid: 342 + components: + - type: Transform + parent: 425 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SheetPlastic + entities: + - uid: 344 + components: + - type: Transform + parent: 425 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SheetSteel + entities: + - uid: 340 + components: + - type: Transform + parent: 425 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 346 + components: + - type: Transform + parent: 425 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SignDoors + entities: + - uid: 428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: SignEngine + entities: + - uid: 427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,1.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: SignSpace + entities: + - uid: 430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: SMESAdvanced + entities: + - uid: 129 + components: + - type: Transform + pos: -10.5,1.5 + parent: 1 + - uid: 130 + components: + - type: Transform + pos: -9.5,1.5 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 135 + components: + - type: Transform + pos: -7.5,1.5 + parent: 1 +- proto: SurveillanceCameraGeneral + entities: + - uid: 270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,5.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: front + - uid: 271 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: docking + - uid: 272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: core + - uid: 274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,0.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: starboard + - uid: 280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: port + - uid: 292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,0.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: engineering + - uid: 435 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: stern +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 327 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 +- proto: SurveillanceCameraWirelessRouterXenoborg + entities: + - uid: 395 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 +- proto: Thruster + entities: + - uid: 111 + components: + - type: Transform + pos: -10.5,3.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: -9.5,3.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: -7.5,3.5 + parent: 1 + - uid: 114 + components: + - type: Transform + pos: -6.5,3.5 + parent: 1 + - uid: 115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-2.5 + parent: 1 + - uid: 116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-2.5 + parent: 1 + - uid: 117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-2.5 + parent: 1 + - uid: 118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-2.5 + parent: 1 + - uid: 119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-0.5 + parent: 1 + - uid: 120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,0.5 + parent: 1 + - uid: 121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,1.5 + parent: 1 + - uid: 122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,1.5 + parent: 1 + - uid: 123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,0.5 + parent: 1 + - uid: 124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 1 + - uid: 125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-6.5 + parent: 1 + - uid: 126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-6.5 + parent: 1 +- proto: TwoWayLever + entities: + - uid: 5 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 251: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 250: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 249: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 248: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 247: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 246: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 245: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 244: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 243: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + - uid: 328 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 253: + - - Left + - Open + - - Right + - Open + - - Middle + - Close + - uid: 415 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 370: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off +- proto: WallXenoborg + entities: + - uid: 2 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 1 + - uid: 4 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 1 + - uid: 6 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 1 + - uid: 7 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: 7.5,2.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: 5.5,5.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: -4.5,5.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: -4.5,4.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: -5.5,3.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: -8.5,2.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: -11.5,2.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: -11.5,-1.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: -2.5,-5.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: 77 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: 8.5,2.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: -12.5,2.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: -12.5,-1.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: -11.5,3.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: -8.5,3.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - uid: 257 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 361 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + - uid: 364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + - uid: 383 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 400 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 403 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 404 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 405 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 +- proto: WallXenoborgDiagonal + entities: + - uid: 88 + components: + - type: Transform + pos: -5.5,5.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: -4.5,6.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 91 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,7.5 + parent: 1 + - uid: 92 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,6.5 + parent: 1 + - uid: 93 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,5.5 + parent: 1 + - uid: 94 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,3.5 + parent: 1 + - uid: 95 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-2.5 + parent: 1 + - uid: 96 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-4.5 + parent: 1 + - uid: 97 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-5.5 + parent: 1 + - uid: 98 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 1 + - uid: 99 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-4.5 + parent: 1 + - uid: 100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: -12.5,3.5 + parent: 1 + - uid: 363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 + - uid: 366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 1 + - uid: 409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 1 + - uid: 417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + - uid: 418 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 419 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1 + - uid: 421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 +- proto: XenoborgWindow + entities: + - uid: 3 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 8 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 1 + - uid: 9 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 1 + - uid: 10 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: 7.5,1.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: -7.5,2.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: -6.5,2.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: -9.5,2.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: -11.5,0.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: -11.5,1.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: -10.5,2.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 349 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 354 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 355 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - uid: 368 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 375 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 408 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 +... diff --git a/Resources/Maps/bagel.yml b/Resources/Maps/bagel.yml index bb8b60d624..fec4386175 100644 --- a/Resources/Maps/bagel.yml +++ b/Resources/Maps/bagel.yml @@ -61186,6 +61186,17 @@ entities: - 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 @@ -64397,6 +64408,23 @@ entities: - 0 - 0 - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 18641 + - 17812 + - 18647 + - 18725 + - 19185 + - 19186 + - 19187 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: CrateHydroponicsSeedsMedicinal entities: - uid: 2759 @@ -64529,6 +64557,22 @@ entities: - 0 - 0 - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 18835 + - 18834 + - 18823 + - 18792 + - 18731 + - 18442 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: CrateScienceSecure entities: - uid: 13917 @@ -113355,6 +113399,19 @@ entities: - 0 - 0 - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2619 + - 19882 + - 21020 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: LockerFreezerVaultFilled entities: - uid: 2252 @@ -113387,6 +113444,18 @@ entities: - 0 - 0 - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5207 + - 4641 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: LockerHeadOfSecurityFilled entities: - uid: 985 @@ -113530,6 +113599,17 @@ entities: - 0 - 0 - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 17673 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: LockerSalvageSpecialistFilledHardsuit entities: - uid: 215 @@ -113621,6 +113701,21 @@ entities: - 0 - 0 - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 9114 + - 9115 + - 9116 + - 9117 + - 9118 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: LockerWallMedicalFilled entities: - uid: 8969 @@ -117393,6 +117488,12 @@ entities: - type: Transform pos: -1.5,-75.5 parent: 60 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot + showEnts: False + occludes: True + ent: 4540 - proto: PottedPlant4 entities: - uid: 15519 @@ -139645,41 +139746,161 @@ entities: - type: Transform pos: 24.5,0.5 parent: 60 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 17633 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - uid: 18890 components: - type: Transform pos: 22.5,0.5 parent: 60 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 18891 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - uid: 18893 components: - type: Transform pos: 25.5,-0.5 parent: 60 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 18907 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - uid: 18909 components: - type: Transform pos: 24.5,2.5 parent: 60 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 19008 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - uid: 19009 components: - type: Transform pos: 25.5,2.5 parent: 60 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 19039 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - uid: 19040 components: - type: Transform pos: 22.5,2.5 parent: 60 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 19041 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - uid: 19091 components: - type: Transform pos: 21.5,2.5 parent: 60 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 19092 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - uid: 19096 components: - type: Transform pos: 21.5,-0.5 parent: 60 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 19097 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - uid: 19168 components: - type: Transform diff --git a/Resources/Maps/box.yml b/Resources/Maps/box.yml index c86fde6628..cf37eabfca 100644 --- a/Resources/Maps/box.yml +++ b/Resources/Maps/box.yml @@ -4,8 +4,8 @@ meta: engineVersion: 266.0.0 forkId: "" forkVersion: "" - time: 08/09/2025 20:23:34 - entityCount: 28684 + time: 08/20/2025 13:48:01 + entityCount: 28742 maps: - 780 grids: @@ -170,7 +170,7 @@ entities: version: 7 -1,2: ind: -1,2 - tiles: WQAAAAAAAFkAAAAAAQB5AAAAAAAAWQAAAAADAFkAAAAAAQB5AAAAAAAAHQAAAAACAB0AAAAAAwAdAAAAAAMAHQAAAAACAB0AAAAAAgAdAAAAAAMAHQAAAAADAB0AAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAwBZAAAAAAEAeQAAAAAAAFkAAAAAAgBZAAAAAAEAHQAAAAACAB0AAAAAAAAdAAAAAAIAHQAAAAADAB0AAAAAAQAdAAAAAAEAHQAAAAADAB0AAAAAAgAdAAAAAAEAWQAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAABAHkAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAQAdAAAAAAIAHQAAAAACAB0AAAAAAgAdAAAAAAIAeQAAAAAAAFkAAAAAAgB5AAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAAAAHkAAAAAAAAdAAAAAAMAeQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAwBZAAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAIAWQAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAADAFkAAAAAAQAdAAAAAAIAHQAAAAACAHkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAQBZAAAAAAMAHQAAAAADAB0AAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAACAFkAAAAAAwBZAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAAAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAADAHkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAQB5AAAAAAAAHQAAAAABAB0AAAAAAwAdAAAAAAMAHQAAAAACAFkAAAAAAgAdAAAAAAAAHQAAAAACAB0AAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAQB5AAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAMAeQAAAAAAAB0AAAAAAQBZAAAAAAIAWQAAAAADAFkAAAAAAQBZAAAAAAIAeQAAAAAAAB0AAAAAAgB5AAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAACAHkAAAAAAAAdAAAAAAMAWQAAAAAAAB0AAAAAAQBZAAAAAAAAWQAAAAACAB0AAAAAAQAdAAAAAAIAHQAAAAAAAFkAAAAAAwBZAAAAAAEAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAwB5AAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAIAeQAAAAAAAB0AAAAAAQBZAAAAAAIAHQAAAAAAAFkAAAAAAQAdAAAAAAAAHQAAAAAAAB0AAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAIAHQAAAAABAB0AAAAAAAAdAAAAAAIAHQAAAAAAAHkAAAAAAAAdAAAAAAMAWQAAAAACAB0AAAAAAQBZAAAAAAMAWQAAAAACAFkAAAAAAABZAAAAAAAAHQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAACAHkAAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAgB5AAAAAAAAHQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAAAAB0AAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAQB5AAAAAAAAHQAAAAAAAB0AAAAAAQAdAAAAAAMAeQAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAAAAB0AAAAAAwAdAAAAAAEAHQAAAAAAAB0AAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAgBZAAAAAAIAeQAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAADAA== + tiles: WQAAAAAAAFkAAAAAAQB5AAAAAAAAWQAAAAADAFkAAAAAAQB5AAAAAAAAHQAAAAACAB0AAAAAAwAdAAAAAAMAHQAAAAACAB0AAAAAAgAdAAAAAAMAHQAAAAADAB0AAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAwBZAAAAAAEAeQAAAAAAAFkAAAAAAgBZAAAAAAEAHQAAAAACAB0AAAAAAAAdAAAAAAIAHQAAAAADAB0AAAAAAQAdAAAAAAEAHQAAAAADAB0AAAAAAgAdAAAAAAEAWQAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAABAHkAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAQAdAAAAAAIAHQAAAAACAB0AAAAAAgAdAAAAAAIAeQAAAAAAAFkAAAAAAgB5AAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAAAAHkAAAAAAAAdAAAAAAMAeQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAwBZAAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAIAWQAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAADAFkAAAAAAQAdAAAAAAIAHQAAAAACAHkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAQBZAAAAAAMAHQAAAAADAB0AAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAACAFkAAAAAAwBZAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAAAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAADAHkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAQB5AAAAAAAAHQAAAAABAB0AAAAAAwAdAAAAAAMAHQAAAAACAHkAAAAAAAAdAAAAAAAAHQAAAAACAHkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAQB5AAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAMAeQAAAAAAAB0AAAAAAQBZAAAAAAIAWQAAAAADAFkAAAAAAQAdAAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAACAHkAAAAAAAAdAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAAAeQAAAAAAAB0AAAAAAQAdAAAAAAIAeQAAAAAAAFkAAAAAAwBZAAAAAAEAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAAAAFkAAAAAAAAdAAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAwB5AAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAIAeQAAAAAAAHkAAAAAAABZAAAAAAIAeQAAAAAAAFkAAAAAAQAdAAAAAAAAHQAAAAAAAB0AAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAIAHQAAAAABAB0AAAAAAAAdAAAAAAIAHQAAAAAAAHkAAAAAAAAdAAAAAAMAWQAAAAACAB0AAAAAAQBZAAAAAAMAWQAAAAACAFkAAAAAAABZAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAACAHkAAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAgB5AAAAAAAAHQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAQB5AAAAAAAAHQAAAAAAAB0AAAAAAQAdAAAAAAMAeQAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAAAAB0AAAAAAwAdAAAAAAEAHQAAAAAAAB0AAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAgBZAAAAAAIAeQAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAADAA== version: 7 0,2: ind: 0,2 @@ -761,16 +761,14 @@ entities: color: '#DE3A3A96' id: BotGreyscale decals: - 6477: -13,42 6480: -13,45 - 6481: -15,45 - 6482: -15,44 6493: -15,41 - 7558: -13,44 7560: -10,44 7561: -9,44 7562: -9,47 7563: -10,47 + 7598: -13,43 + 7622: -14,47 - node: color: '#FFFFFFFF' id: BotGreyscale @@ -793,11 +791,6 @@ entities: 6231: -25,-75 6232: -24,-76 6233: -25,-77 - - node: - color: '#DE3A3A96' - id: BotLeft - decals: - 7559: -11,44 - node: color: '#FFFFFFFF' id: BotLeft @@ -816,8 +809,6 @@ entities: decals: 6490: -14,40 6491: -15,40 - 6500: -12,47 - 6501: -11,47 - node: zIndex: 1 color: '#FFFFFFFF' @@ -837,7 +828,7 @@ entities: id: BotRightGreyscale decals: 6498: -15,47 - 6499: -14,47 + 7623: -11,47 - node: zIndex: 1 color: '#FFFFFFFF' @@ -846,6 +837,14 @@ entities: 6019: -2,-22 6226: -26,-75 6227: -24,-77 + - node: + color: '#DE3A3A96' + id: BoxGreyscale + decals: + 7618: -9,42 + 7619: -10,42 + 7620: -10,40 + 7621: -9,40 - node: color: '#FFFFFFFF' id: BoxGreyscale @@ -862,12 +861,12 @@ entities: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: - 7557: -14,41 + 7603: -14,42 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 7556: -12,41 + 7617: -12,42 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe @@ -887,8 +886,7 @@ entities: 5989: -24,-10 6466: -14,45 7549: -14,44 - 7550: -14,43 - 7551: -14,42 + 7601: -14,43 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN @@ -906,7 +904,7 @@ entities: 5959: -25,-70 5960: -24,-70 5961: -23,-70 - 7555: -13,41 + 7602: -13,42 - node: zIndex: 1 color: '#FFFFFFFF' @@ -948,7 +946,6 @@ entities: 6462: -12,45 7552: -12,44 7553: -12,43 - 7554: -12,42 - node: color: '#9FED584D' id: BrickTileSteelCornerNe @@ -3046,18 +3043,12 @@ entities: 7111: -12,46 7116: -14,46 7117: -15,46 - 7118: -15,44 7119: -15,41 7120: -15,40 7121: -13,40 - 7122: -11,40 - 7123: -11,41 7125: -11,45 - 7126: -11,47 - 7127: -13,47 7128: -15,47 7129: -13,45 - 7130: -13,42 7133: -7,40 7134: -9,40 7135: -9,41 @@ -3295,6 +3286,13 @@ entities: 6259: -25,-26 6260: -27,-26 6261: -28,-24 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 7626: -11,46 + 7629: -9,46 - node: cleanable: True zIndex: 5 @@ -4122,10 +4120,8 @@ entities: 7400: -7,48 7401: -5,46 7402: -7,44 - 7403: -11,41 7405: -11,45 7406: -13,46 - 7407: -13,42 7408: -3,37 7409: 2,37 7410: 2,41 @@ -4181,6 +4177,13 @@ entities: 7463: -16,24 7464: -14,24 7465: -15,29 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 7624: -10,45 + 7627: -14,45 - node: cleanable: True zIndex: 5 @@ -4709,7 +4712,6 @@ entities: 7485: -11,52 7486: -13,50 7487: -14,50 - 7488: -14,47 7489: -15,47 7490: -6,44 7491: -6,38 @@ -4717,6 +4719,13 @@ entities: 7493: 0,26 7494: -1,18 7495: -9,17 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 7625: -10,46 + 7628: -9,45 - node: zIndex: 1 color: '#FFFFFFFF' @@ -7290,6 +7299,7 @@ entities: decals: 1608: 19,-19 3513: 23,17 + 7599: -9,45 - node: color: '#FFFFFFFF' id: WarnCornerSW @@ -7297,8 +7307,7 @@ entities: 1615: 21,-21 3517: 25,17 6268: 68,-47 - 6441: -11,40 - 7538: -14,41 + 7608: -14,41 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleNE @@ -7347,8 +7356,7 @@ entities: 2314: -73,-4 3512: -13,-63 6310: 24,-80 - 7539: -12,42 - 7547: -9,45 + 7614: -12,41 - node: zIndex: 1 color: '#FFFFFFFF' @@ -7410,7 +7418,6 @@ entities: 2315: -69,8 2316: -76,8 3699: -38,-10 - 6442: -11,41 - node: zIndex: 1 color: '#FFFFFFFF' @@ -7419,11 +7426,6 @@ entities: 5976: -23,-66 6069: 20,-76 6175: -19,-82 - - node: - color: '#FFFFFFFF' - id: WarnEndE - decals: - 7545: -8,45 - node: color: '#FFFFFFFF' id: WarnEndGreyscaleN @@ -7469,6 +7471,7 @@ entities: 6967: 10,51 7531: -12,44 7540: -12,43 + 7613: -12,42 - node: zIndex: 1 color: '#FFFFFFFF' @@ -7753,12 +7756,10 @@ entities: 6318: 26,-74 6450: -10,40 6451: -9,40 - 6452: -8,40 - 7528: -13,41 - 7529: -12,41 7532: -11,45 7533: -10,45 - 7534: -9,45 + 7606: -13,41 + 7615: -12,41 - node: zIndex: 1 color: '#FFFFFFFF' @@ -7842,8 +7843,8 @@ entities: 6961: 11,50 6962: 11,51 7523: -14,44 - 7526: -14,43 - 7530: -14,42 + 7600: -14,43 + 7607: -14,42 - node: zIndex: 1 color: '#FFFFFFFF' @@ -7930,10 +7931,8 @@ entities: 6444: -12,46 6445: -11,46 6448: -9,42 - 7541: -11,42 - 7542: -10,42 - 7543: -8,42 7548: -10,46 + 7616: -10,42 - node: zIndex: 1 color: '#FFFFFFFF' @@ -8822,7 +8821,8 @@ entities: -3,6: 0: 65423 -3,7: - 0: 51711 + 0: 51615 + 5: 96 -3,8: 0: 7421 -2,5: @@ -8832,7 +8832,8 @@ entities: -2,7: 0: 64733 -2,8: - 0: 20479 + 0: 19967 + 5: 512 -1,8: 0: 50687 4,8: @@ -8886,9 +8887,12 @@ entities: -3,9: 0: 4095 -3,10: - 0: 15291 + 0: 13235 + 5: 2056 -3,11: - 0: 49087 + 0: 8115 + 6: 8192 + 5: 32780 -2,9: 0: 61439 -2,11: @@ -9796,7 +9800,7 @@ entities: 1: 192 3: 49152 3,-17: - 5: 30576 + 7: 30576 4,-16: 1: 240 0: 61440 @@ -10378,7 +10382,7 @@ entities: 0: 255 1: 49152 4,-17: - 6: 30576 + 8: 30576 5,-20: 0: 65535 5,-19: @@ -10958,6 +10962,36 @@ 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.14948 + moles: + - 18.472576 + - 69.49208 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -11337,6 +11371,21 @@ entities: - 22747 - type: Fixtures fixtures: {} + - uid: 8404 + components: + - type: MetaData + name: Red Armory Air Alarm + - type: Transform + pos: -12.5,48.5 + parent: 8364 + - type: DeviceList + devices: + - 28696 + - 9106 + - 28633 + - 8577 + - type: Fixtures + fixtures: {} - uid: 10705 components: - type: Transform @@ -12632,7 +12681,6 @@ entities: - 9126 - 9127 - 9125 - - 26306 - 26248 - 26256 - 26257 @@ -12671,26 +12719,6 @@ entities: - 26235 - type: Fixtures fixtures: {} - - uid: 26323 - components: - - type: MetaData - name: Armory Air Alarm - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,39.5 - parent: 8364 - - type: DeviceList - devices: - - 28634 - - 26322 - - 28631 - - 28643 - - 28632 - - 28633 - - 28642 - - 28644 - - type: Fixtures - fixtures: {} - uid: 26340 components: - type: MetaData @@ -13101,6 +13129,24 @@ entities: - 28506 - type: Fixtures fixtures: {} + - uid: 28739 + components: + - type: MetaData + name: Blue Armory Air Alarm + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,39.5 + parent: 8364 + - type: DeviceList + devices: + - 28731 + - 28501 + - 9106 + - 28696 + - 28634 + - 28728 + - type: Fixtures + fixtures: {} - proto: AirAlarmFreezer entities: - uid: 26712 @@ -13396,12 +13442,6 @@ entities: parent: 8364 - proto: AirlockArmoryGlassLocked entities: - - uid: 8662 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,40.5 - parent: 8364 - uid: 8676 components: - type: MetaData @@ -13410,12 +13450,6 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,35.5 parent: 8364 - - uid: 8699 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,42.5 - parent: 8364 - uid: 8932 components: - type: MetaData @@ -13507,6 +13541,16 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,34.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 8943: + - - DoorStatus + - Close + 8920: + - - DoorStatus + - Close - uid: 7765 components: - type: MetaData @@ -13538,6 +13582,16 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,34.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 8920: + - - DoorStatus + - Close + 8943: + - - DoorStatus + - Close - uid: 8920 components: - type: MetaData @@ -13546,6 +13600,16 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,30.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 8907: + - - DoorStatus + - Close + 7759: + - - DoorStatus + - Close - uid: 8943 components: - type: MetaData @@ -13554,6 +13618,16 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,30.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 7759: + - - DoorStatus + - Close + 8907: + - - DoorStatus + - Close - proto: AirlockBrigLocked entities: - uid: 55 @@ -14864,9 +14938,6 @@ entities: - type: Transform pos: 24.5,16.5 parent: 8364 - - type: Door - secondsUntilStateChange: -139849.31 - state: Opening - type: DeviceLinkSource lastSignals: DoorStatus: True @@ -16292,6 +16363,20 @@ entities: - type: Transform pos: -60.5,2.5 parent: 8364 + - uid: 13819 + components: + - type: MetaData + name: glass airlock (Blue Armory) + - type: Transform + pos: -7.5,41.5 + parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 28735: + - - DoorStatus + - Close - uid: 14151 components: - type: Transform @@ -16304,6 +16389,20 @@ entities: - type: Transform pos: -23.5,-30.5 parent: 8364 + - uid: 28735 + components: + - type: MetaData + name: glass airlock (Blue Armory) + - type: Transform + pos: -10.5,41.5 + parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 13819: + - - DoorStatus + - Close - proto: AirlockSecurityLawyerGlassLocked entities: - uid: 542 @@ -16576,6 +16675,15 @@ entities: - type: DeviceNetwork deviceLists: - 22699 + - uid: 9106 + components: + - type: Transform + pos: -12.5,41.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28739 + - 8404 - uid: 9450 components: - type: Transform @@ -17146,14 +17254,6 @@ entities: - 26206 - 28498 - 28500 - - uid: 26322 - components: - - type: Transform - pos: -10.5,45.5 - parent: 8364 - - type: DeviceNetwork - deviceLists: - - 26323 - uid: 26341 components: - type: Transform @@ -17536,14 +17636,21 @@ entities: - type: DeviceNetwork deviceLists: - 28500 + - 28739 - uid: 28644 components: - type: Transform pos: -11.5,41.5 parent: 8364 + - uid: 28696 + components: + - type: Transform + pos: -11.5,46.5 + parent: 8364 - type: DeviceNetwork deviceLists: - - 26323 + - 8404 + - 28739 - proto: AirSensorFreezer entities: - uid: 28411 @@ -22355,11 +22462,6 @@ entities: - type: Transform pos: -5.5,-76.5 parent: 8364 - - uid: 13622 - components: - - type: Transform - pos: -7.5,45.5 - parent: 8364 - uid: 13849 components: - type: Transform @@ -22824,6 +22926,13 @@ entities: - type: Transform pos: -19.55601,-15.847038 parent: 8364 +- proto: BoxFlashbang + entities: + - uid: 28749 + components: + - type: Transform + pos: -14.479834,46.5225 + parent: 8364 - proto: BoxFolderBase entities: - uid: 8625 @@ -22932,6 +23041,11 @@ entities: parent: 8364 - proto: BoxFolderYellow entities: + - uid: 5745 + components: + - type: Transform + pos: -11.496632,-21.394827 + parent: 8364 - uid: 10197 components: - type: Transform @@ -22978,7 +23092,12 @@ entities: - uid: 8397 components: - type: Transform - pos: -0.118038416,43.70481 + pos: 0.014337063,43.815163 + parent: 8364 + - uid: 28727 + components: + - type: Transform + pos: -14.356977,45.6773 parent: 8364 - proto: BoxingBell entities: @@ -23002,6 +23121,22 @@ entities: - type: Transform pos: 24.498875,-36.223793 parent: 8364 +- proto: BoxLethalshot + entities: + - uid: 26309 + components: + - type: Transform + parent: 26317 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26310 + components: + - type: Transform + parent: 26317 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: BoxLightbulb entities: - uid: 1999 @@ -23050,7 +23185,7 @@ entities: - uid: 5078 components: - type: Transform - pos: -3.8724453,34.55979 + pos: -14.497602,45.39605 parent: 8364 - proto: BoxMagazinePistolPractice entities: @@ -23092,6 +23227,18 @@ entities: - type: Transform pos: 7.3923097,47.786827 parent: 8364 +- proto: BoxShotgunSlug + entities: + - uid: 7852 + components: + - type: Transform + pos: -7.2934785,34.60984 + parent: 8364 + - uid: 9144 + components: + - type: Transform + pos: -7.289858,34.610893 + parent: 8364 - proto: BoxSterileMask entities: - uid: 5467 @@ -23104,6 +23251,13 @@ entities: - type: Transform pos: 24.405125,-36.239418 parent: 8364 +- proto: BoxStinger + entities: + - uid: 28700 + components: + - type: Transform + pos: -14.6620245,46.74173 + parent: 8364 - proto: BoxSyringe entities: - uid: 19263 @@ -23118,6 +23272,11 @@ entities: - type: Transform pos: 11.476913,44.679543 parent: 8364 + - uid: 26323 + components: + - type: Transform + pos: -14.229834,46.74125 + parent: 8364 - proto: BoxTrashbag entities: - uid: 13356 @@ -23142,7 +23301,12 @@ entities: - uid: 9112 components: - type: Transform - pos: -4.1121473,34.789116 + pos: -0.0012879372,43.455788 + parent: 8364 + - uid: 28730 + components: + - type: Transform + pos: -14.700727,45.70855 parent: 8364 - proto: BrbSign entities: @@ -23220,12 +23384,6 @@ entities: rot: 3.141592653589793 rad pos: 16.5,-86.5 parent: 8364 - - uid: 8623 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,44.5 - parent: 8364 - uid: 9041 components: - type: Transform @@ -23287,6 +23445,12 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,47.5 parent: 8364 + - uid: 8419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,44.5 + parent: 8364 - proto: ButtonFrameExit entities: - uid: 3810 @@ -23396,6 +23560,11 @@ entities: - type: Transform pos: -66.5,15.5 parent: 8364 + - uid: 561 + components: + - type: Transform + pos: -8.5,-23.5 + parent: 8364 - uid: 564 components: - type: Transform @@ -24411,6 +24580,11 @@ entities: - type: Transform pos: -21.5,-76.5 parent: 8364 + - uid: 5072 + components: + - type: Transform + pos: -9.5,41.5 + parent: 8364 - uid: 5086 components: - type: Transform @@ -24906,6 +25080,11 @@ entities: - type: Transform pos: -0.5,23.5 parent: 8364 + - uid: 6332 + components: + - type: Transform + pos: -8.5,46.5 + parent: 8364 - uid: 6348 components: - type: Transform @@ -25561,11 +25740,21 @@ entities: - type: Transform pos: -5.5,12.5 parent: 8364 + - uid: 7292 + components: + - type: Transform + pos: -9.5,46.5 + parent: 8364 - uid: 7297 components: - type: Transform pos: -17.5,18.5 parent: 8364 + - uid: 7314 + components: + - type: Transform + pos: -10.5,46.5 + parent: 8364 - uid: 7346 components: - type: Transform @@ -25581,6 +25770,11 @@ entities: - type: Transform pos: -25.5,5.5 parent: 8364 + - uid: 7379 + components: + - type: Transform + pos: -16.5,40.5 + parent: 8364 - uid: 7510 components: - type: Transform @@ -25671,11 +25865,6 @@ entities: - type: Transform pos: -0.5,26.5 parent: 8364 - - uid: 9067 - components: - - type: Transform - pos: -14.5,45.5 - parent: 8364 - uid: 9068 components: - type: Transform @@ -28726,6 +28915,11 @@ entities: - type: Transform pos: 47.5,19.5 parent: 8364 + - uid: 11765 + components: + - type: Transform + pos: -8.5,-25.5 + parent: 8364 - uid: 11767 components: - type: Transform @@ -32901,11 +33095,6 @@ entities: - type: Transform pos: -10.5,41.5 parent: 8364 - - uid: 13735 - components: - - type: Transform - pos: -9.5,41.5 - parent: 8364 - uid: 13743 components: - type: Transform @@ -32951,26 +33140,6 @@ entities: - type: Transform pos: -8.5,41.5 parent: 8364 - - uid: 13816 - components: - - type: Transform - pos: -10.5,45.5 - parent: 8364 - - uid: 13817 - components: - - type: Transform - pos: -9.5,45.5 - parent: 8364 - - uid: 13818 - components: - - type: Transform - pos: -8.5,45.5 - parent: 8364 - - uid: 13819 - components: - - type: Transform - pos: -7.5,45.5 - parent: 8364 - uid: 13820 components: - type: Transform @@ -45176,16 +45345,16 @@ entities: - type: Transform pos: -3.5,-20.5 parent: 8364 + - uid: 28203 + components: + - type: Transform + pos: -8.5,-24.5 + parent: 8364 - uid: 28295 components: - type: Transform pos: 47.5,-28.5 parent: 8364 - - uid: 28503 - components: - - type: Transform - pos: -15.5,45.5 - parent: 8364 - uid: 28539 components: - type: Transform @@ -45261,11 +45430,6 @@ entities: - type: Transform pos: -16.5,47.5 parent: 8364 - - uid: 28582 - components: - - type: Transform - pos: -17.5,47.5 - parent: 8364 - uid: 28601 components: - type: Transform @@ -45281,6 +45445,26 @@ entities: - type: Transform pos: -18.5,21.5 parent: 8364 + - uid: 28698 + components: + - type: Transform + pos: -14.5,46.5 + parent: 8364 + - uid: 28716 + components: + - type: Transform + pos: -7.5,45.5 + parent: 8364 + - uid: 28729 + components: + - type: Transform + pos: -7.5,46.5 + parent: 8364 + - uid: 28741 + components: + - type: Transform + pos: -15.5,46.5 + parent: 8364 - proto: CableApcStack entities: - uid: 1195 @@ -53402,6 +53586,11 @@ entities: - type: Transform pos: -17.5,18.5 parent: 8364 + - uid: 7348 + components: + - type: Transform + pos: -10.5,46.5 + parent: 8364 - uid: 7380 components: - type: Transform @@ -53417,6 +53606,11 @@ entities: - type: Transform pos: -14.5,16.5 parent: 8364 + - uid: 7415 + components: + - type: Transform + pos: -14.5,46.5 + parent: 8364 - uid: 7567 components: - type: Transform @@ -53487,6 +53681,11 @@ entities: - type: Transform pos: -33.5,10.5 parent: 8364 + - uid: 7787 + components: + - type: Transform + pos: -7.5,42.5 + parent: 8364 - uid: 7799 components: - type: Transform @@ -53565,7 +53764,22 @@ entities: - uid: 8406 components: - type: Transform - pos: -14.5,45.5 + pos: -8.5,46.5 + parent: 8364 + - uid: 8408 + components: + - type: Transform + pos: -14.5,44.5 + parent: 8364 + - uid: 8627 + components: + - type: Transform + pos: -7.5,46.5 + parent: 8364 + - uid: 8645 + components: + - type: Transform + pos: -9.5,46.5 parent: 8364 - uid: 8914 components: @@ -55942,11 +56156,6 @@ entities: - type: Transform pos: -15.5,45.5 parent: 8364 - - uid: 13621 - components: - - type: Transform - pos: -15.5,44.5 - parent: 8364 - uid: 13629 components: - type: Transform @@ -61837,6 +62046,31 @@ entities: - type: Transform pos: -19.5,19.5 parent: 8364 + - uid: 28687 + components: + - type: Transform + pos: -15.5,43.5 + parent: 8364 + - uid: 28695 + components: + - type: Transform + pos: -10.5,42.5 + parent: 8364 + - uid: 28734 + components: + - type: Transform + pos: -7.5,40.5 + parent: 8364 + - uid: 28736 + components: + - type: Transform + pos: -7.5,45.5 + parent: 8364 + - uid: 28738 + components: + - type: Transform + pos: -10.5,40.5 + parent: 8364 - proto: CableMVStack entities: - uid: 1697 @@ -64028,6 +64262,12 @@ entities: parent: 8364 - proto: CarpetSBlue entities: + - uid: 300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-23.5 + parent: 8364 - uid: 941 components: - type: Transform @@ -64063,11 +64303,6 @@ entities: - type: Transform pos: -11.5,-13.5 parent: 8364 - - uid: 5563 - components: - - type: Transform - pos: -9.5,-23.5 - parent: 8364 - uid: 5564 components: - type: Transform @@ -64083,11 +64318,6 @@ entities: - type: Transform pos: -9.5,-24.5 parent: 8364 - - uid: 5568 - components: - - type: Transform - pos: -10.5,-22.5 - parent: 8364 - uid: 5569 components: - type: Transform @@ -64108,6 +64338,11 @@ entities: - type: Transform pos: -9.5,-16.5 parent: 8364 + - uid: 6389 + components: + - type: Transform + pos: -10.5,-22.5 + parent: 8364 - uid: 8198 components: - type: Transform @@ -69247,6 +69482,12 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-43.5 parent: 8364 + - uid: 20698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.441114,-24.41229 + parent: 8364 - uid: 21275 components: - type: Transform @@ -73371,20 +73612,25 @@ entities: parent: 8364 - proto: ClothingHeadHelmetRiot entities: - - uid: 7853 + - uid: 9139 components: - type: Transform - pos: -12.25313,40.561676 + pos: -14.256912,43.71807 parent: 8364 - - uid: 8404 + - uid: 9141 components: - type: Transform - pos: -12.25313,40.71804 + pos: -14.256912,43.6139 parent: 8364 - - uid: 8550 + - uid: 9142 components: - type: Transform - pos: -12.25313,40.42617 + pos: -14.256912,43.377792 + parent: 8364 + - uid: 9143 + components: + - type: Transform + pos: -14.256912,43.502792 parent: 8364 - proto: ClothingHeadsetEngineering entities: @@ -73644,6 +73890,11 @@ entities: parent: 8364 - proto: ClothingOuterArmorBulletproof entities: + - uid: 174 + components: + - type: Transform + pos: -14.700324,42.37941 + parent: 8364 - uid: 7850 components: - type: Transform @@ -73652,7 +73903,7 @@ entities: - uid: 8543 components: - type: Transform - pos: -14.691839,42.479675 + pos: -14.700324,42.50441 parent: 8364 - uid: 8546 components: @@ -73671,6 +73922,11 @@ entities: - type: Transform pos: -14.411459,42.631638 parent: 8364 + - uid: 7843 + components: + - type: Transform + pos: -14.403449,42.332535 + parent: 8364 - uid: 7849 components: - type: Transform @@ -73678,20 +73934,25 @@ entities: parent: 8364 - proto: ClothingOuterArmorRiot entities: - - uid: 7846 + - uid: 9145 components: - type: Transform - pos: -12.607471,40.645073 + pos: -14.65969,43.634735 parent: 8364 - - uid: 7852 + - uid: 9146 components: - type: Transform - pos: -12.607471,40.467865 + pos: -14.65969,43.55835 parent: 8364 - - uid: 8544 + - uid: 9147 components: - type: Transform - pos: -12.607471,40.572105 + pos: -14.65969,43.475014 + parent: 8364 + - uid: 28714 + components: + - type: Transform + pos: -14.65969,43.384735 parent: 8364 - proto: ClothingOuterCardborg entities: @@ -73750,33 +74011,49 @@ entities: - type: Transform pos: 66.509186,-76.72045 parent: 8364 -- proto: ClothingOuterHardsuitSecurity +- proto: ClothingOuterHardsuitEVAPrisoner entities: - - uid: 231 + - uid: 28692 components: - type: Transform - parent: 174 + parent: 26319 - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 28694 + components: + - type: Transform + parent: 26320 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitSecurity + entities: - uid: 7350 components: - type: Transform - parent: 7349 + parent: 271 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 7416 + - uid: 19947 components: - type: Transform - parent: 7415 + parent: 19941 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 8559 + - uid: 26318 components: - type: Transform - parent: 8558 + parent: 26315 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 28719 + components: + - type: Transform + parent: 28717 - type: Physics canCollide: False - type: InsideEntityStorage @@ -74217,12 +74494,6 @@ entities: rot: -1.5707963267948966 rad pos: -8.5,-15.5 parent: 8364 - - uid: 5869 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-26.5 - parent: 8364 - uid: 5873 components: - type: Transform @@ -74404,6 +74675,12 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,-57.5 parent: 8364 + - uid: 17678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-24.5 + parent: 8364 - uid: 18634 components: - type: Transform @@ -74646,6 +74923,12 @@ entities: parent: 8364 - proto: ComputerCrewMonitoring entities: + - uid: 5340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-25.5 + parent: 8364 - uid: 5525 components: - type: Transform @@ -74742,10 +75025,11 @@ entities: parent: 8364 - proto: ComputerFundingAllocation entities: - - uid: 20698 + - uid: 5563 components: - type: Transform - pos: -11.5,-21.5 + rot: -1.5707963267948966 rad + pos: -9.5,-26.5 parent: 8364 - proto: ComputerId entities: @@ -74755,7 +75039,7 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,-17.5 parent: 8364 - - uid: 5635 + - uid: 5608 components: - type: Transform rot: 3.141592653589793 rad @@ -74987,12 +75271,6 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,44.5 parent: 8364 - - uid: 9260 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-26.5 - parent: 8364 - uid: 19297 components: - type: Transform @@ -75525,6 +75803,11 @@ entities: parent: 8364 - proto: CrateContrabandStorageSecure entities: + - uid: 7846 + components: + - type: Transform + pos: -12.5,47.5 + parent: 8364 - uid: 8988 components: - type: Transform @@ -76191,10 +76474,10 @@ entities: parent: 8364 - proto: CrateSecurityTrackingMindshieldImplants entities: - - uid: 26318 + - uid: 28637 components: - type: Transform - pos: -14.5,44.5 + pos: -12.5,40.5 parent: 8364 - proto: CrateServiceJanitorialSupplies entities: @@ -76584,10 +76867,10 @@ entities: parent: 8364 - proto: DefaultStationBeaconArmory entities: - - uid: 4931 + - uid: 28732 components: - type: Transform - pos: -12.5,44.5 + pos: -11.5,45.5 parent: 8364 - proto: DefaultStationBeaconArrivals entities: @@ -78802,12 +79085,6 @@ entities: rot: 3.141592653589793 rad pos: -7.5,-20.5 parent: 8364 - - uid: 6209 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-21.5 - parent: 8364 - uid: 6210 components: - type: Transform @@ -85115,6 +85392,12 @@ entities: rot: 3.141592653589793 rad pos: 22.5,-36.5 parent: 8364 + - uid: 5568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-21.5 + parent: 8364 - uid: 5891 components: - type: Transform @@ -85139,12 +85422,6 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,-11.5 parent: 8364 - - uid: 6207 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-21.5 - parent: 8364 - uid: 6649 components: - type: Transform @@ -85476,16 +85753,16 @@ entities: - type: Transform pos: -24.5,-13.5 parent: 8364 + - uid: 5868 + components: + - type: Transform + pos: -9.5,-21.5 + parent: 8364 - uid: 5908 components: - type: Transform pos: -6.5,-11.5 parent: 8364 - - uid: 5909 - components: - - type: Transform - pos: -10.5,-21.5 - parent: 8364 - uid: 5910 components: - type: Transform @@ -86006,6 +86283,11 @@ entities: parent: 8364 - proto: EmergencyLight entities: + - uid: 8535 + components: + - type: Transform + pos: -12.5,43.5 + parent: 8364 - uid: 17694 components: - type: Transform @@ -86990,6 +87272,12 @@ entities: parent: 8364 - type: Battery startingCharge: 30000 + - uid: 28724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,45.5 + parent: 8364 - proto: EmergencyOxygenTank entities: - uid: 12451 @@ -87306,13 +87594,6 @@ entities: parent: 8364 - type: Fixtures fixtures: {} - - uid: 6332 - components: - - type: Transform - pos: -7.5,39.5 - parent: 8364 - - type: Fixtures - fixtures: {} - uid: 6333 components: - type: Transform @@ -87662,6 +87943,11 @@ entities: parent: 8364 - type: FaxMachine name: Conference Room + - uid: 5869 + components: + - type: Transform + pos: -10.5,-21.5 + parent: 8364 - uid: 8859 components: - type: Transform @@ -87774,21 +88060,6 @@ entities: parent: 8364 - proto: filingCabinet entities: - - uid: 5523 - components: - - type: Transform - pos: -13.5,-11.5 - parent: 8364 - - uid: 5608 - components: - - type: Transform - pos: -5.5,-9.5 - parent: 8364 - - uid: 5877 - components: - - type: Transform - pos: 12.5,-12.5 - parent: 8364 - uid: 15378 components: - type: Transform @@ -87801,11 +88072,6 @@ entities: - type: Transform pos: 69.5,-49.5 parent: 8364 - - uid: 5340 - components: - - type: Transform - pos: -9.5,-21.5 - parent: 8364 - uid: 7274 components: - type: Transform @@ -87838,6 +88104,11 @@ entities: - type: Transform pos: 40.5,-18.5 parent: 8364 + - uid: 5523 + components: + - type: Transform + pos: -9.5,-23.5 + parent: 8364 - uid: 8767 components: - type: Transform @@ -87865,6 +88136,21 @@ entities: - type: Transform pos: -7.5,-65.5 parent: 8364 + - uid: 5635 + components: + - type: Transform + pos: -13.5,-11.5 + parent: 8364 + - uid: 5645 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 8364 + - uid: 5646 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 8364 - uid: 7293 components: - type: Transform @@ -90139,17 +90425,11 @@ entities: - type: Transform pos: 18.5,-13.5 parent: 8364 - - type: Door - secondsUntilStateChange: -47080.31 - state: Closing - uid: 13388 components: - type: Transform pos: 18.5,-14.5 parent: 8364 - - type: Door - secondsUntilStateChange: -47116.008 - state: Closing - uid: 13389 components: - type: Transform @@ -90305,9 +90585,6 @@ entities: - type: Transform pos: -34.5,-14.5 parent: 8364 - - type: Door - secondsUntilStateChange: -134037.84 - state: Closing - uid: 15010 components: - type: Transform @@ -90958,24 +91235,15 @@ entities: - 1907 - 17159 - 23133 - - uid: 28642 + - uid: 28731 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,45.5 + rot: 3.141592653589793 rad + pos: -7.5,41.5 parent: 8364 - type: DeviceNetwork deviceLists: - - 26323 - - uid: 28643 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,46.5 - parent: 8364 - - type: DeviceNetwork - deviceLists: - - 26323 + - 28739 - proto: Fireplace entities: - uid: 8894 @@ -92599,6 +92867,18 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 13622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,45.5 + parent: 8364 + - uid: 13816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,46.5 + parent: 8364 - uid: 13850 components: - type: Transform @@ -94110,6 +94390,12 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 28689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,45.5 + parent: 8364 - proto: GasPipeFourway entities: - uid: 5316 @@ -94343,13 +94629,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26301 - components: - - type: Transform - pos: -6.5,45.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 26359 components: - type: Transform @@ -94484,6 +94763,12 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,42.5 + parent: 8364 - uid: 567 components: - type: Transform @@ -95567,13 +95852,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7843 - components: - - type: Transform - pos: -10.5,44.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8118 components: - type: Transform @@ -95670,28 +95948,28 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8540 - components: - - type: Transform - pos: -13.5,42.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 8541 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,45.5 + pos: -11.5,43.5 parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 8549 components: - type: Transform - pos: -10.5,43.5 + rot: -1.5707963267948966 rad + pos: -10.5,42.5 + parent: 8364 + - uid: 8558 + components: + - type: Transform + pos: -11.5,44.5 + parent: 8364 + - uid: 8559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,40.5 parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8587 components: - type: Transform @@ -95708,6 +95986,24 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,46.5 + parent: 8364 + - uid: 8662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,42.5 + parent: 8364 + - uid: 8699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,42.5 + parent: 8364 - uid: 8742 components: - type: Transform @@ -95716,6 +96012,12 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,42.5 + parent: 8364 - uid: 8770 components: - type: Transform @@ -95734,10 +96036,8 @@ entities: - uid: 8885 components: - type: Transform - pos: -10.5,45.5 + pos: -6.5,40.5 parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8986 components: - type: Transform @@ -95746,6 +96046,24 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,46.5 + parent: 8364 + - uid: 9100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,46.5 + parent: 8364 + - uid: 9102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,46.5 + parent: 8364 - uid: 9221 components: - type: Transform @@ -96030,6 +96348,11 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10037 + components: + - type: Transform + pos: -13.5,45.5 + parent: 8364 - uid: 10400 components: - type: Transform @@ -96219,6 +96542,12 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 13621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,42.5 + parent: 8364 - uid: 13661 components: - type: Transform @@ -96234,6 +96563,18 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 13817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,45.5 + parent: 8364 + - uid: 13821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,42.5 + parent: 8364 - uid: 13847 components: - type: Transform @@ -111611,20 +111952,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 26284 - components: - - type: Transform - pos: -4.5,40.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26285 - components: - - type: Transform - pos: -4.5,41.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 26286 components: - type: Transform @@ -111649,14 +111976,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26289 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,40.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 26290 components: - type: Transform @@ -111665,14 +111984,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26291 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,42.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 26292 components: - type: Transform @@ -111713,14 +112024,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 26298 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,46.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 26299 components: - type: Transform @@ -111736,14 +112039,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 26302 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,46.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 26303 components: - type: Transform @@ -111759,78 +112054,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26307 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,45.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26308 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,45.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26309 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,45.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26310 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,45.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26311 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,45.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26312 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,42.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26313 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,42.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26314 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,42.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26315 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,42.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 26325 components: - type: Transform @@ -114137,6 +114360,12 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 28701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,42.5 + parent: 8364 - proto: GasPipeTJunction entities: - uid: 834 @@ -114280,14 +114509,12 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 7348 + - uid: 7853 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,42.5 + rot: 3.141592653589793 rad + pos: -9.5,45.5 parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8203 components: - type: Transform @@ -114295,14 +114522,30 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 8436 + - uid: 8540 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,45.5 + pos: -6.5,45.5 + parent: 8364 + - uid: 8544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,42.5 + parent: 8364 + - uid: 8593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,42.5 + parent: 8364 + - uid: 8626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,46.5 parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 8733 components: - type: Transform @@ -114363,6 +114606,12 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 13735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,41.5 + parent: 8364 - uid: 14087 components: - type: Transform @@ -116826,21 +117075,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26294 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,42.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26305 - components: - - type: Transform - pos: -5.5,42.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 26331 components: - type: Transform @@ -119723,7 +119957,7 @@ entities: parent: 8364 - type: DeviceNetwork deviceLists: - - 26323 + - 8404 - type: AtmosPipeColor color: '#0055CCFF' - uid: 28634 @@ -119734,7 +119968,7 @@ entities: parent: 8364 - type: DeviceNetwork deviceLists: - - 26323 + - 28739 - type: AtmosPipeColor color: '#0055CCFF' - proto: GasVentPumpFreezer @@ -119898,6 +120132,20 @@ entities: - 22703 - type: AtmosPipeColor color: '#990000FF' + - uid: 8562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,41.5 + parent: 8364 + - uid: 8577 + components: + - type: Transform + pos: -9.5,46.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 8404 - uid: 9375 components: - type: Transform @@ -121231,17 +121479,6 @@ entities: - 26234 - type: AtmosPipeColor color: '#990000FF' - - uid: 26306 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,41.5 - parent: 8364 - - type: DeviceNetwork - deviceLists: - - 26206 - - type: AtmosPipeColor - color: '#990000FF' - uid: 26333 components: - type: Transform @@ -121704,27 +121941,15 @@ entities: - 28483 - type: AtmosPipeColor color: '#990000FF' - - uid: 28631 + - uid: 28728 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,41.5 + pos: -11.5,41.5 parent: 8364 - type: DeviceNetwork deviceLists: - - 26323 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 28632 - components: - - type: Transform - pos: -10.5,46.5 - parent: 8364 - - type: DeviceNetwork - deviceLists: - - 26323 - - type: AtmosPipeColor - color: '#990000FF' + - 28739 - proto: GasVentScrubberFreezer entities: - uid: 26855 @@ -121927,6 +122152,11 @@ entities: - type: Transform pos: -38.5,17.5 parent: 8364 + - uid: 231 + components: + - type: Transform + pos: -7.5,40.5 + parent: 8364 - uid: 265 components: - type: Transform @@ -126717,11 +126947,6 @@ entities: - type: Transform pos: -15.5,45.5 parent: 8364 - - uid: 8419 - components: - - type: Transform - pos: -15.5,44.5 - parent: 8364 - uid: 8426 components: - type: Transform @@ -126730,7 +126955,7 @@ entities: - uid: 8427 components: - type: Transform - pos: -7.5,41.5 + pos: -10.5,40.5 parent: 8364 - uid: 8430 components: @@ -126742,6 +126967,11 @@ entities: - type: Transform pos: 2.5,39.5 parent: 8364 + - uid: 8436 + components: + - type: Transform + pos: -7.5,46.5 + parent: 8364 - uid: 8442 components: - type: Transform @@ -126792,16 +127022,6 @@ entities: - type: Transform pos: -16.5,46.5 parent: 8364 - - uid: 8626 - components: - - type: Transform - pos: -10.5,43.5 - parent: 8364 - - uid: 8627 - components: - - type: Transform - pos: -9.5,41.5 - parent: 8364 - uid: 8631 components: - type: Transform @@ -126812,11 +127032,6 @@ entities: - type: Transform pos: 6.5,55.5 parent: 8364 - - uid: 8645 - components: - - type: Transform - pos: -12.5,43.5 - parent: 8364 - uid: 8681 components: - type: Transform @@ -128662,11 +128877,6 @@ entities: - type: Transform pos: 43.5,-34.5 parent: 8364 - - uid: 19941 - components: - - type: Transform - pos: -14.5,43.5 - parent: 8364 - uid: 20150 components: - type: Transform @@ -129422,11 +129632,26 @@ entities: - type: Transform pos: -30.5,0.5 parent: 8364 + - uid: 28631 + components: + - type: Transform + pos: -7.5,42.5 + parent: 8364 + - uid: 28632 + components: + - type: Transform + pos: -10.5,42.5 + parent: 8364 - uid: 28638 components: - type: Transform pos: -29.5,0.5 parent: 8364 + - uid: 28643 + components: + - type: Transform + pos: -15.5,43.5 + parent: 8364 - uid: 28653 components: - type: Transform @@ -129437,6 +129662,16 @@ entities: - type: Transform pos: -27.5,0.5 parent: 8364 + - uid: 28686 + components: + - type: Transform + pos: -7.5,45.5 + parent: 8364 + - uid: 28697 + components: + - type: Transform + pos: -14.5,44.5 + parent: 8364 - proto: GrilleBroken entities: - uid: 453 @@ -130023,44 +130258,207 @@ entities: entities: - uid: 7903 components: + - type: MetaData + name: disabler safe (5) - type: Transform + anchored: True pos: -14.5,41.5 parent: 8364 + - type: Lock + locked: False + - type: Physics + bodyType: Static + - type: Label + currentLabel: 5 + - type: NameModifier + baseName: disabler safe - proto: GunSafeLaserCarbine entities: - uid: 26316 components: + - type: MetaData + name: laser safe (4) - type: Transform + anchored: True pos: -8.5,47.5 parent: 8364 + - type: Physics + bodyType: Static + - 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: + - 26291 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Label + currentLabel: 4 + - type: NameModifier + baseName: laser safe - proto: GunSafePistolMk58 entities: - - uid: 4932 + - uid: 4933 components: + - type: MetaData + name: mk58 safe (4) - type: Transform - pos: -14.5,45.5 + anchored: True + pos: -13.5,47.5 parent: 8364 + - type: Physics + bodyType: Static + - type: Label + currentLabel: 4 + - type: NameModifier + baseName: mk58 safe - proto: GunSafeRifleLecter entities: - uid: 25688 components: + - type: MetaData + name: lecter safe (4) - type: Transform + anchored: True pos: -9.5,47.5 parent: 8364 + - type: Physics + bodyType: Static + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 26298 + - 26301 + - 26302 + - 26305 + - 26306 + - 26307 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Label + currentLabel: 4 + - type: NameModifier + baseName: lecter safe - proto: GunSafeShotgunKammerer entities: - uid: 26317 components: + - type: MetaData + name: kammerer safe (3) - type: Transform + anchored: True pos: -8.5,44.5 parent: 8364 + - type: Physics + bodyType: Static + - 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: + - 26308 + - 26309 + - 26310 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Label + currentLabel: 3 + - type: NameModifier + baseName: kammerer safe - proto: GunSafeSubMachineGunDrozd entities: - uid: 8594 components: + - type: MetaData + name: drozd safe (3) - type: Transform + anchored: True pos: -9.5,44.5 parent: 8364 + - type: Physics + bodyType: Static + - 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: + - 26313 + - 26312 + - 26311 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Label + currentLabel: 3 + - type: NameModifier + baseName: drozd safe - proto: GyroscopeUnanchored entities: - uid: 25012 @@ -130095,16 +130493,16 @@ entities: parent: 8364 - proto: HandLabeler entities: - - uid: 561 - components: - - type: Transform - pos: -9.5991,-25.410784 - parent: 8364 - uid: 5001 components: - type: Transform pos: 38.4924,-28.821447 parent: 8364 + - uid: 5909 + components: + - type: Transform + pos: -9.530318,-27.415377 + parent: 8364 - uid: 14338 components: - type: Transform @@ -130181,33 +130579,12 @@ entities: parent: 8364 - proto: HighSecArmoryLocked entities: - - uid: 346 + - uid: 28705 components: - type: MetaData - name: Armory\ + name: high security door (Red Armory) - type: Transform - pos: -9.5,40.5 - parent: 8364 - - uid: 5072 - components: - - type: MetaData - name: Armory - - type: Transform - pos: -9.5,42.5 - parent: 8364 - - uid: 7292 - components: - - type: MetaData - name: High-Sec Armory - - type: Transform - pos: -13.5,43.5 - parent: 8364 - - uid: 7821 - components: - - type: MetaData - name: High-Sec Armory - - type: Transform - pos: -11.5,43.5 + pos: -11.5,44.5 parent: 8364 - proto: HighSecCommandLocked entities: @@ -130338,7 +130715,7 @@ entities: - uid: 23250 components: - type: Transform - pos: -9.5,-23.5 + pos: -8.5,-23.5 parent: 8364 - proto: HolopadCommandHos entities: @@ -130564,10 +130941,10 @@ entities: parent: 8364 - proto: HolopadSecurityArmory entities: - - uid: 19947 + - uid: 28699 components: - type: Transform - pos: -12.5,45.5 + pos: -12.5,42.5 parent: 8364 - proto: HolopadSecurityArrivalsCheckpoint entities: @@ -131368,18 +131745,34 @@ entities: parent: 8364 - proto: JetpackSecurityFilled entities: - - uid: 8562 + - uid: 4931 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.395266,46.522804 - parent: 8364 - - uid: 8593 + parent: 271 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26284 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.634968,46.658318 - parent: 8364 + parent: 19941 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26322 + components: + - type: Transform + parent: 26315 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 28718 + components: + - type: Transform + parent: 28717 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: Jukebox entities: - uid: 28320 @@ -131640,11 +132033,6 @@ entities: parent: 8364 - proto: LandMineExplosive entities: - - uid: 9698 - components: - - type: Transform - pos: -19.547722,47.450706 - parent: 8364 - uid: 9699 components: - type: Transform @@ -131708,65 +132096,6 @@ entities: - type: Transform pos: -28.5095,-5.350807 parent: 8364 -- proto: LockableButtonArmory - entities: - - uid: 8408 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,44.5 - parent: 8364 - - type: DeviceLinkSource - linkedPorts: - 13622: - - - Pressed - - Toggle - - type: Fixtures - fixtures: {} - - uid: 9150 - components: - - type: MetaData - name: Shutters - - type: Transform - pos: -6.5,35.5 - parent: 8364 - - type: DeviceLinkSource - linkedPorts: - 9145: - - - Pressed - - Toggle - 9147: - - - Pressed - - Toggle - 9146: - - - Pressed - - Toggle - 9139: - - - Pressed - - Toggle - 9141: - - - Pressed - - Toggle - 9142: - - - Pressed - - Toggle - 9148: - - - Pressed - - Toggle - 9143: - - - Pressed - - Toggle - 9144: - - - Pressed - - Toggle - 9164: - - - Pressed - - Toggle - 9165: - - - Pressed - - Toggle - - type: Fixtures - fixtures: {} - proto: LockableButtonBrig entities: - uid: 9152 @@ -132712,6 +133041,24 @@ entities: - type: Transform pos: -6.5,34.5 parent: 8364 + - 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: LockerWeldingSuppliesFilled entities: - uid: 1612 @@ -132952,11 +133299,6 @@ entities: parent: 8364 - proto: LootSpawnerSecurity entities: - - uid: 8535 - components: - - type: Transform - pos: -0.5,43.5 - parent: 8364 - uid: 10878 components: - type: Transform @@ -133106,6 +133448,22 @@ entities: - type: Transform pos: 7.4027314,48.74582 parent: 8364 +- proto: MagazinePistolSubMachineGun + entities: + - uid: 26311 + components: + - type: Transform + parent: 8594 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26313 + components: + - type: Transform + parent: 8594 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: MagazinePistolSubMachineGunTopMounted entities: - uid: 965 @@ -133118,6 +133476,36 @@ entities: - type: Transform pos: -1.3689646,53.71386 parent: 8364 +- proto: MagazineRifle + entities: + - uid: 26298 + components: + - type: Transform + parent: 25688 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26301 + components: + - type: Transform + parent: 25688 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26306 + components: + - type: Transform + parent: 25688 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26307 + components: + - type: Transform + parent: 25688 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: MailingUnit entities: - uid: 8179 @@ -133527,10 +133915,10 @@ entities: parent: 8364 - proto: MaterialCloth entities: - - uid: 5868 + - uid: 6390 components: - type: Transform - pos: -9.522169,-25.204441 + pos: -9.606551,-24.320076 parent: 8364 - proto: MaterialDiamond1 entities: @@ -133541,10 +133929,10 @@ entities: parent: 8364 - proto: MaterialDurathread entities: - - uid: 6390 + - uid: 9260 components: - type: Transform - pos: -9.303419,-25.688816 + pos: -9.231335,-24.591099 parent: 8364 - proto: MaterialWoodPlank entities: @@ -134470,16 +134858,58 @@ entities: parent: 8364 - proto: NitrogenTankFilled entities: + - uid: 346 + components: + - type: Transform + parent: 271 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 7286 components: - type: Transform pos: -13.543497,50.592064 parent: 8364 + - uid: 19946 + components: + - type: Transform + parent: 19941 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26321 + components: + - type: Transform + parent: 26315 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 27177 components: - type: Transform pos: 26.471306,-83.42229 parent: 8364 + - uid: 28691 + components: + - type: Transform + parent: 26319 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 28693 + components: + - type: Transform + parent: 26320 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 28720 + components: + - type: Transform + parent: 28717 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: NitrousOxideTankFilled entities: - uid: 21342 @@ -134876,31 +135306,6 @@ entities: - type: Transform pos: 6.2533393,-15.307499 parent: 8364 - - uid: 5743 - components: - - type: Transform - pos: -13.5,-21.5 - parent: 8364 - - uid: 5744 - components: - - type: Transform - pos: -13.5,-21.5 - parent: 8364 - - uid: 5745 - components: - - type: Transform - pos: -13.5,-21.5 - parent: 8364 - - uid: 5746 - components: - - type: Transform - pos: -13.5,-21.5 - parent: 8364 - - uid: 5747 - components: - - type: Transform - pos: -13.5,-21.5 - parent: 8364 - uid: 6426 components: - type: Transform @@ -135165,6 +135570,11 @@ entities: parent: 8364 - proto: PaperBin20 entities: + - uid: 5743 + components: + - type: Transform + pos: -13.5,-21.5 + parent: 8364 - uid: 8551 components: - type: Transform @@ -135345,6 +135755,11 @@ entities: - type: Transform pos: 6.7796197,-15.189568 parent: 8364 + - uid: 5744 + components: + - type: Transform + pos: -13.786074,-21.56161 + parent: 8364 - uid: 5771 components: - type: Transform @@ -135658,12 +136073,33 @@ entities: parent: 8364 - proto: PlasmaWindoorSecureArmoryLocked entities: - - uid: 28635 + - uid: 28503 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,46.5 + rot: 3.141592653589793 rad + pos: -13.5,44.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 26285: + - - DoorStatus + - Close +- proto: PlasmaWindoorSecureSecurityLocked + entities: + - uid: 26285 + components: + - type: Transform + pos: -13.5,44.5 + parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 28503: + - - DoorStatus + - Close - proto: PlasticFlapsAirtightClear entities: - uid: 3067 @@ -135747,6 +136183,11 @@ entities: parent: 8364 - proto: PortableFlasher entities: + - uid: 7349 + components: + - type: Transform + pos: -14.5,47.5 + parent: 8364 - uid: 7631 components: - type: Transform @@ -135767,10 +136208,10 @@ entities: enabled: False - type: Physics bodyType: Dynamic - - uid: 19946 + - uid: 28721 components: - type: Transform - pos: -10.5,44.5 + pos: -10.5,47.5 parent: 8364 - proto: PortableGeneratorJrPacman entities: @@ -136574,14 +137015,6 @@ entities: - type: Transform pos: -10.5,-37.5 parent: 8364 - - uid: 5645 - components: - - type: Transform - pos: -8.5,-27.5 - parent: 8364 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - uid: 5668 components: - type: Transform @@ -136712,6 +137145,11 @@ entities: - type: Transform pos: 73.5,-5.5 parent: 8364 + - uid: 28204 + components: + - type: Transform + pos: -8.5,-27.5 + parent: 8364 - proto: PottedPlantRandomPlastic entities: - uid: 7185 @@ -137151,6 +137589,12 @@ entities: parent: 8364 - type: ApcPowerReceiver powerLoad: 0 + - uid: 6209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-26.5 + parent: 8364 - uid: 6223 components: - type: Transform @@ -139468,12 +139912,6 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-24.5 parent: 8364 - - uid: 28204 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-24.5 - parent: 8364 - uid: 28207 components: - type: Transform @@ -141156,10 +141594,10 @@ entities: - type: Transform pos: 3.5,-59.5 parent: 8364 - - uid: 4933 + - uid: 4932 components: - type: Transform - pos: -12.5,40.5 + pos: -14.5,45.5 parent: 8364 - uid: 5105 components: @@ -141662,6 +142100,11 @@ entities: - type: Transform pos: 81.5,-23.5 parent: 8364 + - uid: 26294 + components: + - type: Transform + pos: -14.5,43.5 + parent: 8364 - uid: 26576 components: - type: Transform @@ -143448,11 +143891,6 @@ entities: - type: Transform pos: -17.5,43.5 parent: 8364 - - uid: 7379 - components: - - type: Transform - pos: -9.5,41.5 - parent: 8364 - uid: 7394 components: - type: Transform @@ -143468,16 +143906,6 @@ entities: - type: Transform pos: -15.5,41.5 parent: 8364 - - uid: 7715 - components: - - type: Transform - pos: -15.5,42.5 - parent: 8364 - - uid: 7787 - components: - - type: Transform - pos: -12.5,43.5 - parent: 8364 - uid: 7833 components: - type: Transform @@ -143496,27 +143924,17 @@ entities: - uid: 8398 components: - type: Transform - pos: -7.5,41.5 - parent: 8364 - - uid: 8420 - components: - - type: Transform - pos: -15.5,44.5 - parent: 8364 - - uid: 8577 - components: - - type: Transform - pos: -14.5,43.5 + pos: -7.5,45.5 parent: 8364 - uid: 8813 components: - type: Transform pos: -17.5,41.5 parent: 8364 - - uid: 13821 + - uid: 13818 components: - type: Transform - pos: -10.5,43.5 + pos: -15.5,43.5 parent: 8364 - uid: 15138 components: @@ -143673,6 +144091,41 @@ entities: - type: Transform pos: 14.5,-53.5 parent: 8364 + - uid: 26289 + components: + - type: Transform + pos: -14.5,44.5 + parent: 8364 + - uid: 26314 + components: + - type: Transform + pos: -7.5,40.5 + parent: 8364 + - uid: 28688 + components: + - type: Transform + pos: -15.5,42.5 + parent: 8364 + - uid: 28737 + components: + - type: Transform + pos: -7.5,42.5 + parent: 8364 + - uid: 28740 + components: + - type: Transform + pos: -10.5,40.5 + parent: 8364 + - uid: 28742 + components: + - type: Transform + pos: -10.5,42.5 + parent: 8364 + - uid: 28743 + components: + - type: Transform + pos: -7.5,46.5 + parent: 8364 - proto: ReinforcedWindow entities: - uid: 22 @@ -148032,6 +148485,11 @@ entities: parent: 8364 - proto: RubberStampApproved entities: + - uid: 5746 + components: + - type: Transform + pos: -11.069336,-21.207197 + parent: 8364 - uid: 10198 components: - type: Transform @@ -148039,6 +148497,11 @@ entities: parent: 8364 - proto: RubberStampDenied entities: + - uid: 5747 + components: + - type: Transform + pos: -11.058914,-21.499067 + parent: 8364 - uid: 14190 components: - type: Transform @@ -148316,10 +148779,10 @@ entities: parent: 8364 - proto: SecurityTechFab entities: - - uid: 8749 + - uid: 28690 components: - type: Transform - pos: -12.5,42.5 + pos: -13.5,44.5 parent: 8364 - type: TechnologyDatabase supportedDisciplines: @@ -148672,7 +149135,7 @@ entities: - uid: 28639 components: - type: Transform - pos: -12.519961,42.618675 + pos: -13.474435,44.52028 parent: 8364 - proto: SheetUranium entities: @@ -148709,11 +149172,34 @@ entities: - type: Transform pos: -31.5,-17.5 parent: 8364 + - uid: 9150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,33.5 + parent: 8364 + - uid: 9164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,32.5 + parent: 8364 + - uid: 9165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,31.5 + parent: 8364 - uid: 9243 components: - type: Transform pos: -30.5,-17.5 parent: 8364 + - uid: 9698 + components: + - type: Transform + pos: -4.5,29.5 + parent: 8364 - uid: 11334 components: - type: Transform @@ -148734,6 +149220,58 @@ entities: - type: Transform pos: 54.5,-15.5 parent: 8364 + - uid: 28642 + components: + - type: Transform + pos: -5.5,29.5 + parent: 8364 + - uid: 28706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,33.5 + parent: 8364 + - uid: 28707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,32.5 + parent: 8364 + - uid: 28708 + components: + - type: Transform + pos: -7.5,30.5 + parent: 8364 + - uid: 28709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,35.5 + parent: 8364 + - uid: 28710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,35.5 + parent: 8364 + - uid: 28711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,35.5 + parent: 8364 + - uid: 28712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,46.5 + parent: 8364 + - uid: 28713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,45.5 + parent: 8364 - proto: ShuttersNormalOpen entities: - uid: 1454 @@ -148818,69 +149356,6 @@ entities: - type: Transform pos: 6.5,-23.5 parent: 8364 - - uid: 9139 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,33.5 - parent: 8364 - - uid: 9141 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,32.5 - parent: 8364 - - uid: 9142 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,31.5 - parent: 8364 - - uid: 9143 - components: - - type: Transform - pos: -4.5,29.5 - parent: 8364 - - uid: 9144 - components: - - type: Transform - pos: -5.5,29.5 - parent: 8364 - - uid: 9145 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,33.5 - parent: 8364 - - uid: 9146 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,32.5 - parent: 8364 - - uid: 9147 - components: - - type: Transform - pos: -7.5,30.5 - parent: 8364 - - uid: 9148 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,35.5 - parent: 8364 - - uid: 9164 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,35.5 - parent: 8364 - - uid: 9165 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,35.5 - parent: 8364 - uid: 9923 components: - type: Transform @@ -150047,6 +150522,104 @@ entities: parent: 8364 - type: Fixtures fixtures: {} +- proto: SignalSwitchDirectional + entities: + - uid: 9148 + components: + - type: MetaData + name: signal switch (Shutters) + - type: Transform + pos: -6.5,35.5 + parent: 8364 + - type: DeviceLinkSource + linkedPorts: + 28709: + - - On + - Open + - - Off + - Close + 9150: + - - On + - Open + - - Off + - Close + 9165: + - - On + - Open + - - Off + - Close + 9698: + - - On + - Open + - - Off + - Close + 28642: + - - On + - Open + - - Off + - Close + 28711: + - - On + - Open + - - Off + - Close + 28710: + - - Off + - Close + - - On + - Open + 28706: + - - Off + - Close + - - On + - Open + 28707: + - - On + - Open + - - Off + - Close + 28708: + - - On + - Open + - - Off + - Close + 9164: + - - On + - Open + - - Off + - Close + - type: Fixtures + fixtures: {} + - type: Label + currentLabel: Shutters + - type: NameModifier + baseName: signal switch + - uid: 28635 + components: + - type: MetaData + name: signal switch (Shutters) + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,44.5 + parent: 8364 + - type: DeviceLinkSource + linkedPorts: + 28713: + - - On + - Open + - - Off + - Close + 28712: + - - On + - Open + - - Off + - Close + - type: Fixtures + fixtures: {} + - type: Label + currentLabel: Shutters + - type: NameModifier + baseName: signal switch - proto: SignAnomaly entities: - uid: 25994 @@ -151355,6 +151928,22 @@ entities: parent: 8364 - type: Fixtures fixtures: {} + - uid: 28685 + components: + - type: Transform + pos: -8.5,43.5 + parent: 8364 + - type: Fixtures + fixtures: {} +- proto: SignSecureMedRed + entities: + - uid: 7821 + components: + - type: Transform + pos: -12.5,44.5 + parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignSecureSmall entities: - uid: 22440 @@ -153765,7 +154354,7 @@ entities: parent: 8364 - proto: SpawnPointHeadOfPersonnel entities: - - uid: 11765 + - uid: 6207 components: - type: Transform pos: -11.5,-22.5 @@ -155114,11 +155703,63 @@ entities: - type: Transform pos: -10.5,29.5 parent: 8364 + - 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: + - 28691 + - 28692 - uid: 26320 components: - type: Transform pos: -9.5,29.5 parent: 8364 + - 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: + - 28693 + - 28694 - proto: SuitStorageHOS entities: - uid: 5096 @@ -155135,10 +155776,12 @@ entities: parent: 8364 - proto: SuitStorageSec entities: - - uid: 174 + - uid: 271 components: + - type: MetaData + name: suit storage unit (Double, Jetpack) - type: Transform - pos: -14.5,47.5 + pos: -8.5,40.5 parent: 8364 - type: EntityStorage air: @@ -155158,18 +155801,6 @@ entities: - 0 - 0 - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 231 - - uid: 7349 - components: - - type: Transform - pos: -10.5,47.5 - parent: 8364 - type: ContainerContainer containers: entity_storage: !type:Container @@ -155177,71 +155808,95 @@ entities: occludes: True ents: - 7350 - - uid: 7415 - components: - - type: Transform - pos: -11.5,47.5 - parent: 8364 - - 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: - - 7416 - - uid: 8558 - components: - - type: Transform - pos: -13.5,47.5 - parent: 8364 - - 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: - - 8559 + - 346 + - 4931 + - type: Label + currentLabel: Double, Jetpack + - type: NameModifier + baseName: suit storage unit - uid: 16531 components: - type: Transform pos: -8.5,3.5 parent: 8364 + - uid: 19941 + components: + - type: MetaData + name: suit storage unit (Double, Jetpack) + - type: Transform + pos: -8.5,42.5 + parent: 8364 + - 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: + - 26284 + - 19947 + - 19946 + - type: Label + currentLabel: Double, Jetpack + - type: NameModifier + baseName: suit storage unit + - uid: 26315 + components: + - type: MetaData + name: suit storage unit (Double, Jetpack) + - type: Transform + pos: -9.5,40.5 + parent: 8364 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 26318 + - 26321 + - 26322 + - type: Label + currentLabel: Double, Jetpack + - type: NameModifier + baseName: suit storage unit + - uid: 28717 + components: + - type: MetaData + name: suit storage unit (Double, Jetpack) + - type: Transform + pos: -9.5,42.5 + parent: 8364 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 28720 + - 28719 + - 28718 + - type: Label + currentLabel: Double, Jetpack + - type: NameModifier + baseName: suit storage unit - proto: SuitStorageWarden entities: - uid: 9085 @@ -155273,17 +155928,6 @@ entities: - SurveillanceCameraCommand nameSet: True id: Conference Room - - uid: 300 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-6.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge West - uid: 301 components: - type: Transform @@ -155400,11 +156044,14 @@ entities: - uid: 28201 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-26.5 + rot: 1.5707963267948966 rad + pos: -7.5,-23.5 parent: 8364 - type: SurveillanceCamera - id: AI Entrance Airlock + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: HOP - uid: 28202 components: - type: Transform @@ -156084,28 +156731,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Main Hall Closet - - uid: 16974 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-7.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Bridge Entrance W - - uid: 17678 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-0.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Main Hall Eva - uid: 17693 components: - type: Transform @@ -156362,14 +156987,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Main Hall Library - - uid: 28203 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-29.5 - parent: 8364 - - type: SurveillanceCamera - id: Hall Outside AI - uid: 28548 components: - type: Transform @@ -157173,7 +157790,10 @@ entities: pos: -12.5,40.5 parent: 8364 - type: SurveillanceCamera - id: Armory - South + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Armory - Blue - uid: 28580 components: - type: Transform @@ -157181,7 +157801,10 @@ entities: pos: -12.5,47.5 parent: 8364 - type: SurveillanceCamera - id: Armory - North + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Armory - Red - uid: 28583 components: - type: Transform @@ -159743,12 +160366,6 @@ entities: - type: Transform pos: -3.5,-24.5 parent: 8364 - - uid: 26321 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,46.5 - parent: 8364 - uid: 26827 components: - type: Transform @@ -159784,6 +160401,12 @@ entities: - type: Transform pos: -3.5,-23.5 parent: 8364 + - uid: 28723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,47.5 + parent: 8364 - proto: TableReinforcedGlass entities: - uid: 3167 @@ -159956,6 +160579,11 @@ entities: - type: Transform pos: -9.5,-27.5 parent: 8364 + - uid: 5877 + components: + - type: Transform + pos: -10.5,-21.5 + parent: 8364 - uid: 6123 components: - type: Transform @@ -159967,11 +160595,6 @@ entities: - type: Transform pos: -7.5,22.5 parent: 8364 - - uid: 6389 - components: - - type: Transform - pos: -9.5,-25.5 - parent: 8364 - uid: 6472 components: - type: Transform @@ -160491,6 +161114,11 @@ entities: - type: Transform pos: -13.5,-14.5 parent: 8364 + - uid: 16974 + components: + - type: Transform + pos: -9.5,-24.5 + parent: 8364 - uid: 18581 components: - type: Transform @@ -160552,6 +161180,11 @@ entities: - type: Transform pos: 18.5,-9.5 parent: 8364 + - uid: 28725 + components: + - type: Transform + pos: -11.5,-21.5 + parent: 8364 - proto: TargetClown entities: - uid: 7612 @@ -162195,11 +162828,6 @@ entities: - type: Transform pos: 75.5,-43.5 parent: 8364 - - uid: 7314 - components: - - type: Transform - pos: -12.5,47.5 - parent: 8364 - uid: 14610 components: - type: Transform @@ -162610,6 +163238,11 @@ entities: rot: 3.141592653589793 rad pos: -32.5,1.5 parent: 8364 + - uid: 217 + components: + - type: Transform + pos: -12.5,44.5 + parent: 8364 - uid: 219 components: - type: Transform @@ -168706,6 +169339,11 @@ entities: - type: Transform pos: -18.5,39.5 parent: 8364 + - uid: 7416 + components: + - type: Transform + pos: -15.5,44.5 + parent: 8364 - uid: 7417 components: - type: Transform @@ -170151,6 +170789,11 @@ entities: - type: Transform pos: -18.5,38.5 parent: 8364 + - uid: 8550 + components: + - type: Transform + pos: -10.5,43.5 + parent: 8364 - uid: 8554 components: - type: Transform @@ -170806,11 +171449,6 @@ entities: - type: Transform pos: -42.5,-20.5 parent: 8364 - - uid: 10037 - components: - - type: Transform - pos: -15.5,43.5 - parent: 8364 - uid: 10534 components: - type: Transform @@ -172406,6 +173044,11 @@ entities: - type: Transform pos: 0.5,-25.5 parent: 8364 + - uid: 28636 + components: + - type: Transform + pos: -10.5,44.5 + parent: 8364 - proto: WallShuttle entities: - uid: 2304 @@ -180502,6 +181145,14 @@ entities: - type: Transform pos: 49.5,12.5 parent: 8364 +- proto: WallWeaponCapacitorRecharger + entities: + - uid: 28715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,43.5 + parent: 8364 - proto: WardrobeAtmospherics entities: - uid: 15758 @@ -181203,33 +181854,6 @@ entities: - type: Transform pos: -5.5,-6.5 parent: 8364 - - uid: 5646 - components: - - type: Transform - pos: -9.5,-27.5 - parent: 8364 - - type: ContainerContainer - containers: - WeaponCapacitorCharger-powerCellContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - charger-slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - charger_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - uid: 5680 components: - type: Transform @@ -181295,11 +181919,11 @@ entities: - type: Transform pos: -9.5,-15.5 parent: 8364 - - uid: 28637 + - uid: 28722 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,46.5 + rot: 3.141592653589793 rad + pos: -11.5,47.5 parent: 8364 - proto: WeaponDisablerPractice entities: @@ -181424,15 +182048,6 @@ entities: deviceLists: - 258 - 28663 - - uid: 217 - components: - - type: Transform - pos: -12.5,44.5 - parent: 8364 - - type: DeviceNetwork - deviceLists: - - 271 - - 270 - uid: 269 components: - type: Transform @@ -181442,6 +182057,22 @@ entities: deviceLists: - 258 - 28663 + - uid: 7715 + components: + - type: Transform + pos: -12.5,43.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 8420 + - uid: 28582 + components: + - type: Transform + pos: -12.5,45.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 8420 - proto: WeaponEnergyTurretSecurityControlPanel entities: - uid: 258 @@ -181453,22 +182084,16 @@ entities: devices: - 203 - 269 - - uid: 270 + - uid: 8420 components: - type: Transform - pos: -9.5,48.5 + rot: 1.5707963267948966 rad + pos: -7.5,39.5 parent: 8364 - type: DeviceList devices: - - 217 - - uid: 271 - components: - - type: Transform - pos: -8.5,43.5 - parent: 8364 - - type: DeviceList - devices: - - 217 + - 7715 + - 28582 - uid: 28663 components: - type: Transform @@ -181479,6 +182104,15 @@ entities: devices: - 203 - 269 +- proto: WeaponLaserCarbine + entities: + - uid: 26291 + components: + - type: Transform + parent: 26316 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: WeaponLaserCarbinePractice entities: - uid: 5107 @@ -181491,13 +182125,49 @@ entities: - type: Transform pos: 10.54466,50.378418 parent: 8364 +- proto: WeaponRifleLecter + entities: + - uid: 26302 + components: + - type: Transform + parent: 25688 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26305 + components: + - type: Transform + parent: 25688 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: WeaponShotgunEnforcer entities: - uid: 9086 components: - type: Transform - pos: -7.4696865,34.5829 + pos: -7.4221897,34.38881 parent: 8364 + - type: BallisticAmmoProvider + proto: ShellShotgunSlug +- proto: WeaponShotgunKammerer + entities: + - uid: 26308 + components: + - type: Transform + parent: 26317 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WeaponSubMachineGunDrozd + entities: + - uid: 26312 + components: + - type: Transform + parent: 8594 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: WeaponSubMachineGunWt550 entities: - uid: 5089 @@ -181747,11 +182417,27 @@ entities: - type: Transform pos: -4.5,29.5 parent: 8364 + - type: DeviceLinkSource + linkedPorts: + 9095: + - - DoorStatus + - Close + 9096: + - - DoorStatus + - Close - uid: 9109 components: - type: Transform pos: -5.5,29.5 parent: 8364 + - type: DeviceLinkSource + linkedPorts: + 9095: + - - DoorStatus + - Close + 9096: + - - DoorStatus + - Close - uid: 9264 components: - type: Transform @@ -181822,6 +182508,63 @@ entities: rot: 3.141592653589793 rad pos: -23.5,39.5 parent: 8364 + - uid: 28702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,31.5 + parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9094: + - - DoorStatus + - Close + 9093: + - - DoorStatus + - Close + 9092: + - - DoorStatus + - Close + - uid: 28703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,32.5 + parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9092: + - - DoorStatus + - Close + 9093: + - - DoorStatus + - Close + 9094: + - - DoorStatus + - Close + - uid: 28704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,33.5 + parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9092: + - - DoorStatus + - Close + 9093: + - - DoorStatus + - Close + 9094: + - - DoorStatus + - Close - proto: WindoorAssembly entities: - uid: 13311 @@ -181944,30 +182687,73 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,33.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 28703: + - - DoorStatus + - Close + 28704: + - - DoorStatus + - Close + 28702: + - - DoorStatus + - Close - uid: 9093 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,32.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 28702: + - - DoorStatus + - Close + 28703: + - - DoorStatus + - Close + 28704: + - - DoorStatus + - Close - uid: 9094 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,31.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 28702: + - - DoorStatus + - Close + 28703: + - - DoorStatus + - Close + 28704: + - - DoorStatus + - Close - uid: 9095 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,29.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 - uid: 9096 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,29.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 - proto: WindoorSecureBrigLocked entities: - uid: 757 @@ -181986,30 +182772,12 @@ entities: rot: 3.141592653589793 rad pos: -10.5,22.5 parent: 8364 - - uid: 9100 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,33.5 - parent: 8364 - - uid: 9102 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,32.5 - parent: 8364 - uid: 9103 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,33.5 parent: 8364 - - uid: 9106 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,31.5 - parent: 8364 - proto: WindoorSecureChemistryLocked entities: - uid: 1758 @@ -182189,12 +182957,6 @@ entities: - type: Transform pos: 79.5,-4.5 parent: 8364 - - uid: 28636 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,46.5 - parent: 8364 - proto: Window entities: - uid: 526 diff --git a/Resources/Maps/elkridge.yml b/Resources/Maps/elkridge.yml index 01129f897a..e3b6021c07 100644 --- a/Resources/Maps/elkridge.yml +++ b/Resources/Maps/elkridge.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Map - engineVersion: 264.0.0 + engineVersion: 266.0.0 forkId: "" forkVersion: "" - time: 07/22/2025 15:38:07 - entityCount: 18654 + time: 08/31/2025 08:35:35 + entityCount: 18658 maps: - 1 grids: @@ -10918,6 +10918,8 @@ entities: - 454 - 18629 - 18628 + - type: Fixtures + fixtures: {} - uid: 811 components: - type: MetaData @@ -10945,6 +10947,8 @@ entities: - 197 - 243 - 1619 + - type: Fixtures + fixtures: {} - uid: 813 components: - type: MetaData @@ -10958,6 +10962,8 @@ entities: - 902 - 909 - 1628 + - type: Fixtures + fixtures: {} - uid: 814 components: - type: MetaData @@ -10976,6 +10982,8 @@ entities: - 265 - 266 - 1629 + - type: Fixtures + fixtures: {} - uid: 817 components: - type: MetaData @@ -10989,6 +10997,8 @@ entities: - 960 - 959 - 975 + - type: Fixtures + fixtures: {} - uid: 818 components: - type: MetaData @@ -11005,6 +11015,8 @@ entities: - 197 - 243 - 1619 + - type: Fixtures + fixtures: {} - uid: 819 components: - type: MetaData @@ -11018,6 +11030,8 @@ entities: - 912 - 911 - 944 + - type: Fixtures + fixtures: {} - uid: 822 components: - type: MetaData @@ -11030,6 +11044,8 @@ entities: - 947 - 946 - 12722 + - type: Fixtures + fixtures: {} - uid: 958 components: - type: MetaData @@ -11051,6 +11067,8 @@ entities: - 10846 - 10847 - 10848 + - type: Fixtures + fixtures: {} - uid: 1136 components: - type: MetaData @@ -11063,6 +11081,8 @@ entities: - 7523 - 13848 - 368 + - type: Fixtures + fixtures: {} - uid: 2196 components: - type: MetaData @@ -11077,6 +11097,8 @@ entities: - 11393 - 14212 - 14136 + - type: Fixtures + fixtures: {} - uid: 2200 components: - type: MetaData @@ -11099,6 +11121,8 @@ entities: - 12452 - 12449 - 12453 + - type: Fixtures + fixtures: {} - uid: 3078 components: - type: MetaData @@ -11112,6 +11136,8 @@ entities: - 1395 - 12516 - 12541 + - type: Fixtures + fixtures: {} - uid: 3330 components: - type: MetaData @@ -11125,6 +11151,8 @@ entities: - 11812 - 12426 - 8895 + - type: Fixtures + fixtures: {} - uid: 3340 components: - type: MetaData @@ -11140,6 +11168,8 @@ entities: - 14465 - 12539 - 12538 + - type: Fixtures + fixtures: {} - uid: 5566 components: - type: MetaData @@ -11151,6 +11181,8 @@ entities: - type: DeviceList devices: - 7952 + - type: Fixtures + fixtures: {} - uid: 5980 components: - type: MetaData @@ -11166,6 +11198,8 @@ entities: - 1029 - 1028 - 9755 + - type: Fixtures + fixtures: {} - uid: 6106 components: - type: Transform @@ -11177,6 +11211,8 @@ entities: - 2280 - 3484 - 10525 + - type: Fixtures + fixtures: {} - uid: 6195 components: - type: MetaData @@ -11185,6 +11221,8 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8141 components: - type: MetaData @@ -11196,6 +11234,8 @@ entities: - type: DeviceList devices: - 13849 + - type: Fixtures + fixtures: {} - uid: 10356 components: - type: MetaData @@ -11204,6 +11244,8 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11015 components: - type: MetaData @@ -11216,6 +11258,8 @@ entities: - 11037 - 11038 - 11039 + - type: Fixtures + fixtures: {} - uid: 11020 components: - type: MetaData @@ -11236,6 +11280,8 @@ entities: - 10804 - 10878 - 10879 + - type: Fixtures + fixtures: {} - uid: 11079 components: - type: MetaData @@ -11250,6 +11296,8 @@ entities: - 10999 - 10876 - 10877 + - type: Fixtures + fixtures: {} - uid: 11080 components: - type: MetaData @@ -11263,6 +11311,8 @@ entities: - 11057 - 11058 - 11065 + - type: Fixtures + fixtures: {} - uid: 11082 components: - type: MetaData @@ -11278,6 +11328,8 @@ entities: - 10998 - 10874 - 10875 + - type: Fixtures + fixtures: {} - uid: 11083 components: - type: MetaData @@ -11292,6 +11344,8 @@ entities: - 5035 - 10874 - 10875 + - type: Fixtures + fixtures: {} - uid: 11197 components: - type: MetaData @@ -11307,6 +11361,8 @@ entities: - 14237 - 11190 - 5155 + - type: Fixtures + fixtures: {} - uid: 11199 components: - type: MetaData @@ -11322,6 +11378,8 @@ entities: - 12751 - 6856 - 16465 + - type: Fixtures + fixtures: {} - uid: 11203 components: - type: MetaData @@ -11334,6 +11392,8 @@ entities: - 13082 - 14784 - 6886 + - type: Fixtures + fixtures: {} - uid: 11204 components: - type: MetaData @@ -11349,6 +11409,8 @@ entities: - 11205 - 16469 - 16468 + - type: Fixtures + fixtures: {} - uid: 11206 components: - type: MetaData @@ -11362,6 +11424,8 @@ entities: - 6737 - 5295 - 11198 + - type: Fixtures + fixtures: {} - uid: 11207 components: - type: MetaData @@ -11377,6 +11441,8 @@ entities: - 11224 - 16478 - 16479 + - type: Fixtures + fixtures: {} - uid: 11208 components: - type: MetaData @@ -11390,6 +11456,8 @@ entities: - 11254 - 13087 - 12921 + - type: Fixtures + fixtures: {} - uid: 11209 components: - type: MetaData @@ -11400,6 +11468,8 @@ entities: - type: DeviceList devices: - 16480 + - type: Fixtures + fixtures: {} - uid: 11210 components: - type: MetaData @@ -11413,6 +11483,8 @@ entities: - 11185 - 11202 - 11150 + - type: Fixtures + fixtures: {} - uid: 11211 components: - type: MetaData @@ -11431,6 +11503,8 @@ entities: - 6856 - 16465 - 16471 + - type: Fixtures + fixtures: {} - uid: 11212 components: - type: MetaData @@ -11445,6 +11519,8 @@ entities: - 11163 - 13967 - 12920 + - type: Fixtures + fixtures: {} - uid: 11289 components: - type: MetaData @@ -11458,6 +11534,8 @@ entities: - 11285 - 5028 - 11257 + - type: Fixtures + fixtures: {} - uid: 11291 components: - type: MetaData @@ -11471,6 +11549,8 @@ entities: - 11288 - 8834 - 1908 + - type: Fixtures + fixtures: {} - uid: 11296 components: - type: MetaData @@ -11483,6 +11563,8 @@ entities: - 5498 - 5500 - 11315 + - type: Fixtures + fixtures: {} - uid: 11297 components: - type: MetaData @@ -11494,6 +11576,8 @@ entities: - type: DeviceList devices: - 11290 + - type: Fixtures + fixtures: {} - uid: 11301 components: - type: MetaData @@ -11507,6 +11591,8 @@ entities: - 11261 - 11258 - 11259 + - type: Fixtures + fixtures: {} - uid: 11357 components: - type: MetaData @@ -11519,6 +11605,8 @@ entities: devices: - 11344 - 357 + - type: Fixtures + fixtures: {} - uid: 11358 components: - type: MetaData @@ -11532,6 +11620,8 @@ entities: - 11320 - 11318 - 11361 + - type: Fixtures + fixtures: {} - uid: 11359 components: - type: MetaData @@ -11545,6 +11635,8 @@ entities: - 11319 - 11321 - 11360 + - type: Fixtures + fixtures: {} - uid: 11397 components: - type: MetaData @@ -11558,6 +11650,8 @@ entities: - 11392 - 11395 - 11394 + - type: Fixtures + fixtures: {} - uid: 11399 components: - type: MetaData @@ -11572,6 +11666,8 @@ entities: - 11410 - 11411 - 10873 + - type: Fixtures + fixtures: {} - uid: 12625 components: - type: MetaData @@ -11586,6 +11682,8 @@ entities: - 12649 - 10376 - 1437 + - type: Fixtures + fixtures: {} - uid: 12674 components: - type: MetaData @@ -11597,6 +11695,8 @@ entities: - type: DeviceList devices: - 2624 + - type: Fixtures + fixtures: {} - uid: 12724 components: - type: MetaData @@ -11616,6 +11716,8 @@ entities: - 3278 - 3622 - 6044 + - type: Fixtures + fixtures: {} - uid: 12725 components: - type: MetaData @@ -11629,6 +11731,8 @@ entities: - 9018 - 9027 - 9028 + - type: Fixtures + fixtures: {} - uid: 12726 components: - type: MetaData @@ -11641,6 +11745,8 @@ entities: - 4927 - 4937 - 9064 + - type: Fixtures + fixtures: {} - uid: 12727 components: - type: MetaData @@ -11654,6 +11760,8 @@ entities: - 8327 - 4923 - 9048 + - type: Fixtures + fixtures: {} - uid: 12729 components: - type: MetaData @@ -11667,6 +11775,8 @@ entities: - 10476 - 10064 - 12703 + - type: Fixtures + fixtures: {} - uid: 12730 components: - type: MetaData @@ -11679,6 +11789,8 @@ entities: - 10444 - 10477 - 10427 + - type: Fixtures + fixtures: {} - uid: 12731 components: - type: MetaData @@ -11690,6 +11802,8 @@ entities: - type: DeviceList devices: - 10065 + - type: Fixtures + fixtures: {} - uid: 12732 components: - type: MetaData @@ -11705,12 +11819,16 @@ entities: - 2768 - 13804 - 13805 + - type: Fixtures + fixtures: {} - uid: 13031 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13789 components: - type: MetaData @@ -11728,6 +11846,8 @@ entities: - 10826 - 10820 - 357 + - type: Fixtures + fixtures: {} - uid: 13790 components: - type: MetaData @@ -11748,6 +11868,8 @@ entities: - 10824 - 10814 - 10812 + - type: Fixtures + fixtures: {} - uid: 13791 components: - type: MetaData @@ -11768,6 +11890,8 @@ entities: - 14212 - 14136 - 18028 + - type: Fixtures + fixtures: {} - uid: 13792 components: - type: MetaData @@ -11786,6 +11910,8 @@ entities: - 11641 - 11644 - 11642 + - type: Fixtures + fixtures: {} - uid: 13793 components: - type: MetaData @@ -11803,6 +11929,8 @@ entities: - 10812 - 10813 - 10817 + - type: Fixtures + fixtures: {} - uid: 13794 components: - type: MetaData @@ -11824,6 +11952,8 @@ entities: - 10832 - 10833 - 12011 + - type: Fixtures + fixtures: {} - uid: 13795 components: - type: MetaData @@ -11841,6 +11971,8 @@ entities: - 10828 - 14970 - 14997 + - type: Fixtures + fixtures: {} - uid: 13800 components: - type: MetaData @@ -11860,6 +11992,8 @@ entities: - 12549 - 12547 - 12548 + - type: Fixtures + fixtures: {} - uid: 13811 components: - type: MetaData @@ -11878,6 +12012,8 @@ entities: - 10898 - 10899 - 13810 + - type: Fixtures + fixtures: {} - uid: 13812 components: - type: MetaData @@ -11892,6 +12028,8 @@ entities: - 8740 - 8741 - 13810 + - type: Fixtures + fixtures: {} - uid: 13813 components: - type: MetaData @@ -11909,6 +12047,8 @@ entities: - 10899 - 10900 - 10901 + - type: Fixtures + fixtures: {} - uid: 13814 components: - type: MetaData @@ -11922,6 +12062,8 @@ entities: - 8713 - 8714 - 8699 + - type: Fixtures + fixtures: {} - uid: 13815 components: - type: MetaData @@ -11935,6 +12077,8 @@ entities: - 8686 - 8677 - 12546 + - type: Fixtures + fixtures: {} - uid: 13816 components: - type: MetaData @@ -11951,6 +12095,8 @@ entities: - 10902 - 10901 - 10900 + - type: Fixtures + fixtures: {} - uid: 13817 components: - type: MetaData @@ -11965,6 +12111,8 @@ entities: - 8695 - 10905 - 4374 + - type: Fixtures + fixtures: {} - uid: 13818 components: - type: MetaData @@ -11977,6 +12125,8 @@ entities: - 5762 - 1428 - 8754 + - type: Fixtures + fixtures: {} - uid: 13819 components: - type: MetaData @@ -11991,6 +12141,8 @@ entities: - 8623 - 8622 - 10902 + - type: Fixtures + fixtures: {} - uid: 13821 components: - type: MetaData @@ -12003,6 +12155,8 @@ entities: - 8799 - 8800 - 8814 + - type: Fixtures + fixtures: {} - uid: 13822 components: - type: MetaData @@ -12015,6 +12169,8 @@ entities: - 8781 - 8782 - 8780 + - type: Fixtures + fixtures: {} - uid: 13823 components: - type: MetaData @@ -12028,6 +12184,8 @@ entities: - 8790 - 8792 - 8791 + - type: Fixtures + fixtures: {} - uid: 13824 components: - type: MetaData @@ -12040,6 +12198,8 @@ entities: - 8757 - 8756 - 8758 + - type: Fixtures + fixtures: {} - uid: 13825 components: - type: MetaData @@ -12053,6 +12213,8 @@ entities: - 8733 - 8731 - 8732 + - type: Fixtures + fixtures: {} - uid: 13852 components: - type: MetaData @@ -12067,6 +12229,8 @@ entities: - 2835 - 10412 - 10907 + - type: Fixtures + fixtures: {} - uid: 13862 components: - type: MetaData @@ -12087,6 +12251,8 @@ entities: - 10891 - 10890 - 11143 + - type: Fixtures + fixtures: {} - uid: 13863 components: - type: MetaData @@ -12107,6 +12273,8 @@ entities: - 12542 - 10894 - 10895 + - type: Fixtures + fixtures: {} - uid: 13864 components: - type: MetaData @@ -12120,6 +12288,8 @@ entities: - 12469 - 12468 - 12471 + - type: Fixtures + fixtures: {} - uid: 13865 components: - type: MetaData @@ -12133,6 +12303,8 @@ entities: - 12454 - 12455 - 12470 + - type: Fixtures + fixtures: {} - uid: 13870 components: - type: MetaData @@ -12159,6 +12331,8 @@ entities: - 11224 - 16478 - 16479 + - type: Fixtures + fixtures: {} - uid: 13933 components: - type: MetaData @@ -12178,6 +12352,8 @@ entities: - 10883 - 10840 - 10841 + - type: Fixtures + fixtures: {} - uid: 13934 components: - type: MetaData @@ -12191,6 +12367,8 @@ entities: - 12395 - 12398 - 12401 + - type: Fixtures + fixtures: {} - uid: 13935 components: - type: MetaData @@ -12205,6 +12383,8 @@ entities: - 12400 - 12403 - 10883 + - type: Fixtures + fixtures: {} - uid: 13962 components: - type: MetaData @@ -12222,6 +12402,8 @@ entities: - 12404 - 10840 - 10841 + - type: Fixtures + fixtures: {} - uid: 13971 components: - type: MetaData @@ -12234,6 +12416,8 @@ entities: - 12647 - 10859 - 18302 + - type: Fixtures + fixtures: {} - uid: 14483 components: - type: MetaData @@ -12246,6 +12430,8 @@ entities: devices: - 18031 - 18032 + - type: Fixtures + fixtures: {} - uid: 14484 components: - type: MetaData @@ -12258,6 +12444,8 @@ entities: - 18029 - 18028 - 18030 + - type: Fixtures + fixtures: {} - uid: 14486 components: - type: MetaData @@ -12269,6 +12457,8 @@ entities: - type: DeviceList devices: - 18033 + - type: Fixtures + fixtures: {} - uid: 14552 components: - type: MetaData @@ -12287,6 +12477,8 @@ entities: - 13834 - 13835 - 13850 + - type: Fixtures + fixtures: {} - uid: 14605 components: - type: MetaData @@ -12306,6 +12498,8 @@ entities: - 18030 - 18031 - 18032 + - type: Fixtures + fixtures: {} - uid: 14859 components: - type: MetaData @@ -12322,6 +12516,8 @@ entities: - 14998 - 14999 - 4973 + - type: Fixtures + fixtures: {} - uid: 15065 components: - type: MetaData @@ -12336,6 +12532,8 @@ entities: - 11896 - 1879 - 1878 + - type: Fixtures + fixtures: {} - uid: 15066 components: - type: MetaData @@ -12351,6 +12549,8 @@ entities: - 14847 - 14970 - 14997 + - type: Fixtures + fixtures: {} - uid: 15067 components: - type: MetaData @@ -12365,6 +12565,8 @@ entities: - 13746 - 13539 - 4973 + - type: Fixtures + fixtures: {} - uid: 15069 components: - type: MetaData @@ -12380,6 +12582,8 @@ entities: - 14029 - 14998 - 14999 + - type: Fixtures + fixtures: {} - uid: 15093 components: - type: MetaData @@ -12388,6 +12592,8 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15135 components: - type: MetaData @@ -12398,6 +12604,8 @@ entities: - type: DeviceList devices: - 13744 + - type: Fixtures + fixtures: {} - uid: 15190 components: - type: MetaData @@ -12410,6 +12618,8 @@ entities: - 12743 - 5665 - 11808 + - type: Fixtures + fixtures: {} - uid: 15197 components: - type: MetaData @@ -12418,6 +12628,8 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15328 components: - type: MetaData @@ -12442,6 +12654,8 @@ entities: - 1879 - 1878 - 18033 + - type: Fixtures + fixtures: {} - uid: 15382 components: - type: MetaData @@ -12455,6 +12669,8 @@ entities: - 1782 - 4448 - 15429 + - type: Fixtures + fixtures: {} - uid: 15453 components: - type: MetaData @@ -12466,6 +12682,8 @@ entities: devices: - 15450 - 15454 + - type: Fixtures + fixtures: {} - uid: 15456 components: - type: MetaData @@ -12489,6 +12707,8 @@ entities: - 10854 - 10853 - 10852 + - type: Fixtures + fixtures: {} - uid: 15650 components: - type: MetaData @@ -12500,6 +12720,8 @@ entities: - type: DeviceList devices: - 15649 + - type: Fixtures + fixtures: {} - uid: 15720 components: - type: MetaData @@ -12513,6 +12735,8 @@ entities: - 15571 - 15318 - 15319 + - type: Fixtures + fixtures: {} - uid: 15876 components: - type: MetaData @@ -12526,6 +12750,8 @@ entities: - 6491 - 15875 - 6202 + - type: Fixtures + fixtures: {} - uid: 15940 components: - type: MetaData @@ -12539,6 +12765,8 @@ entities: - 15941 - 15942 - 15943 + - type: Fixtures + fixtures: {} - uid: 16172 components: - type: MetaData @@ -12552,6 +12780,8 @@ entities: - 8812 - 8811 - 8813 + - type: Fixtures + fixtures: {} - uid: 16745 components: - type: MetaData @@ -12560,6 +12790,8 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16808 components: - type: MetaData @@ -12576,6 +12808,8 @@ entities: - 16807 - 10890 - 10891 + - type: Fixtures + fixtures: {} - uid: 17020 components: - type: MetaData @@ -12594,6 +12828,8 @@ entities: - 11224 - 16478 - 16479 + - type: Fixtures + fixtures: {} - uid: 17459 components: - type: MetaData @@ -12606,6 +12842,8 @@ entities: - 17521 - 17463 - 17520 + - type: Fixtures + fixtures: {} - uid: 17460 components: - type: MetaData @@ -12618,6 +12856,8 @@ entities: - 17498 - 17531 - 17499 + - type: Fixtures + fixtures: {} - uid: 17461 components: - type: MetaData @@ -12631,6 +12871,8 @@ entities: - 17484 - 17464 - 17488 + - type: Fixtures + fixtures: {} - uid: 17462 components: - type: MetaData @@ -12644,6 +12886,8 @@ entities: - 17529 - 17530 - 17465 + - type: Fixtures + fixtures: {} - uid: 17609 components: - type: MetaData @@ -12662,6 +12906,8 @@ entities: - 15890 - 963 - 14946 + - type: Fixtures + fixtures: {} - uid: 18230 components: - type: MetaData @@ -12680,6 +12926,8 @@ entities: - 8973 - 10077 - 13803 + - type: Fixtures + fixtures: {} - uid: 18231 components: - type: MetaData @@ -12693,6 +12941,8 @@ entities: - 5367 - 1054 - 1053 + - type: Fixtures + fixtures: {} - uid: 18303 components: - type: MetaData @@ -12719,6 +12969,8 @@ entities: - 10810 - 10811 - 10804 + - type: Fixtures + fixtures: {} - proto: AirAlarmElectronics entities: - uid: 1784 @@ -12741,6 +12993,8 @@ entities: - 1388 - 290 - 1430 + - type: Fixtures + fixtures: {} - proto: AirCanister entities: - uid: 6295 @@ -16219,6 +16473,8 @@ entities: - type: Transform pos: -2.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 431 components: - type: MetaData @@ -16227,6 +16483,8 @@ entities: rot: 3.141592653589793 rad pos: 3.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 432 components: - type: MetaData @@ -16235,6 +16493,8 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 505 components: - type: MetaData @@ -16242,6 +16502,8 @@ entities: - type: Transform pos: -31.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 653 components: - type: MetaData @@ -16250,6 +16512,8 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 682 components: - type: MetaData @@ -16258,6 +16522,8 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 972 components: - type: MetaData @@ -16266,6 +16532,8 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1149 components: - type: MetaData @@ -16274,6 +16542,8 @@ entities: rot: 3.141592653589793 rad pos: 40.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1393 components: - type: MetaData @@ -16282,6 +16552,8 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1419 components: - type: MetaData @@ -16290,6 +16562,8 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1562 components: - type: MetaData @@ -16297,6 +16571,8 @@ entities: - type: Transform pos: 25.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2556 components: - type: MetaData @@ -16305,6 +16581,8 @@ entities: rot: 3.141592653589793 rad pos: 40.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2584 components: - type: MetaData @@ -16312,6 +16590,8 @@ entities: - type: Transform pos: -24.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2771 components: - type: MetaData @@ -16320,6 +16600,8 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2809 components: - type: MetaData @@ -16328,6 +16610,8 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3295 components: - type: MetaData @@ -16336,6 +16620,8 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3297 components: - type: MetaData @@ -16344,6 +16630,8 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3298 components: - type: MetaData @@ -16351,6 +16639,8 @@ entities: - type: Transform pos: -29.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3433 components: - type: MetaData @@ -16359,6 +16649,8 @@ entities: rot: 3.141592653589793 rad pos: -19.5,-44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3445 components: - type: MetaData @@ -16366,6 +16658,8 @@ entities: - type: Transform pos: -24.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3587 components: - type: MetaData @@ -16374,6 +16668,8 @@ entities: rot: 3.141592653589793 rad pos: -14.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4449 components: - type: MetaData @@ -16382,6 +16678,8 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4473 components: - type: MetaData @@ -16389,6 +16687,8 @@ entities: - type: Transform pos: -32.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4776 components: - type: MetaData @@ -16397,6 +16697,8 @@ entities: rot: 3.141592653589793 rad pos: -37.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4827 components: - type: MetaData @@ -16405,6 +16707,8 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4829 components: - type: MetaData @@ -16412,6 +16716,8 @@ entities: - type: Transform pos: -17.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5097 components: - type: MetaData @@ -16420,6 +16726,8 @@ entities: rot: 3.141592653589793 rad pos: -23.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5175 components: - type: MetaData @@ -16427,6 +16735,8 @@ entities: - type: Transform pos: -24.5,16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5210 components: - type: MetaData @@ -16435,6 +16745,8 @@ entities: rot: 3.141592653589793 rad pos: -43.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5241 components: - type: MetaData @@ -16443,6 +16755,8 @@ entities: rot: 3.141592653589793 rad pos: -15.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5371 components: - type: MetaData @@ -16451,6 +16765,8 @@ entities: rot: -1.5707963267948966 rad pos: -43.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5484 components: - type: MetaData @@ -16459,6 +16775,8 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5734 components: - type: MetaData @@ -16467,6 +16785,8 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5739 components: - type: MetaData @@ -16474,6 +16794,8 @@ entities: - type: Transform pos: -1.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5740 components: - type: MetaData @@ -16482,6 +16804,8 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5836 components: - type: MetaData @@ -16489,6 +16813,8 @@ entities: - type: Transform pos: -5.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5926 components: - type: MetaData @@ -16497,6 +16823,8 @@ entities: rot: 3.141592653589793 rad pos: -33.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6151 components: - type: MetaData @@ -16505,6 +16833,8 @@ entities: rot: 1.5707963267948966 rad pos: -38.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6163 components: - type: MetaData @@ -16513,6 +16843,8 @@ entities: rot: 3.141592653589793 rad pos: -15.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6267 components: - type: MetaData @@ -16521,6 +16853,8 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,-44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6860 components: - type: MetaData @@ -16528,6 +16862,8 @@ entities: - type: Transform pos: -11.5,23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6933 components: - type: MetaData @@ -16536,6 +16872,8 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6978 components: - type: MetaData @@ -16544,6 +16882,8 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6981 components: - type: MetaData @@ -16552,6 +16892,8 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6985 components: - type: MetaData @@ -16559,6 +16901,8 @@ entities: - type: Transform pos: -38.5,17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6999 components: - type: MetaData @@ -16566,6 +16910,8 @@ entities: - type: Transform pos: -15.5,31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7325 components: - type: MetaData @@ -16574,6 +16920,8 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7326 components: - type: MetaData @@ -16582,6 +16930,8 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7328 components: - type: MetaData @@ -16590,6 +16940,8 @@ entities: rot: 3.141592653589793 rad pos: -9.5,53.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7483 components: - type: MetaData @@ -16597,6 +16949,8 @@ entities: - type: Transform pos: 3.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7510 components: - type: MetaData @@ -16604,6 +16958,8 @@ entities: - type: Transform pos: 13.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7516 components: - type: MetaData @@ -16612,6 +16968,8 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7517 components: - type: MetaData @@ -16620,6 +16978,8 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7518 components: - type: MetaData @@ -16628,6 +16988,8 @@ entities: rot: 3.141592653589793 rad pos: 11.5,32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7519 components: - type: MetaData @@ -16636,6 +16998,8 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7780 components: - type: MetaData @@ -16644,6 +17008,8 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7943 components: - type: MetaData @@ -16651,6 +17017,8 @@ entities: - type: Transform pos: 21.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8241 components: - type: MetaData @@ -16659,6 +17027,8 @@ entities: rot: 1.5707963267948966 rad pos: 39.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8616 components: - type: MetaData @@ -16666,6 +17036,8 @@ entities: - type: Transform pos: -46.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8620 components: - type: MetaData @@ -16674,6 +17046,8 @@ entities: rot: 3.141592653589793 rad pos: -3.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8751 components: - type: MetaData @@ -16681,6 +17055,8 @@ entities: - type: Transform pos: 40.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8945 components: - type: MetaData @@ -16689,6 +17065,8 @@ entities: rot: 3.141592653589793 rad pos: 35.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9111 components: - type: MetaData @@ -16697,6 +17075,8 @@ entities: rot: -1.5707963267948966 rad pos: 49.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9157 components: - type: MetaData @@ -16704,6 +17084,8 @@ entities: - type: Transform pos: 33.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9201 components: - type: MetaData @@ -16712,6 +17094,8 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9281 components: - type: MetaData @@ -16720,6 +17104,8 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9297 components: - type: MetaData @@ -16728,6 +17114,8 @@ entities: rot: 3.141592653589793 rad pos: 21.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9632 components: - type: MetaData @@ -16736,6 +17124,8 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9695 components: - type: MetaData @@ -16743,6 +17133,8 @@ entities: - type: Transform pos: 34.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9696 components: - type: MetaData @@ -16750,6 +17142,8 @@ entities: - type: Transform pos: 26.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9697 components: - type: MetaData @@ -16758,6 +17152,8 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9698 components: - type: MetaData @@ -16765,6 +17161,8 @@ entities: - type: Transform pos: 39.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9700 components: - type: MetaData @@ -16772,6 +17170,8 @@ entities: - type: Transform pos: 34.5,16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9701 components: - type: MetaData @@ -16779,6 +17179,8 @@ entities: - type: Transform pos: 22.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9702 components: - type: MetaData @@ -16787,6 +17189,8 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9703 components: - type: MetaData @@ -16794,6 +17198,8 @@ entities: - type: Transform pos: 29.5,24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9704 components: - type: MetaData @@ -16801,6 +17207,8 @@ entities: - type: Transform pos: 35.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9822 components: - type: MetaData @@ -16809,6 +17217,8 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9910 components: - type: MetaData @@ -16816,6 +17226,8 @@ entities: - type: Transform pos: 18.5,16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9937 components: - type: MetaData @@ -16824,6 +17236,8 @@ entities: rot: 3.141592653589793 rad pos: 1.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9944 components: - type: MetaData @@ -16832,6 +17246,8 @@ entities: rot: 3.141592653589793 rad pos: -8.5,27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9950 components: - type: MetaData @@ -16840,6 +17256,8 @@ entities: rot: 3.141592653589793 rad pos: -6.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9996 components: - type: MetaData @@ -16848,6 +17266,8 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10027 components: - type: MetaData @@ -16855,6 +17275,8 @@ entities: - type: Transform pos: 0.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10100 components: - type: MetaData @@ -16863,6 +17285,8 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10521 components: - type: MetaData @@ -16871,6 +17295,8 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10558 components: - type: MetaData @@ -16879,6 +17305,8 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10755 components: - type: MetaData @@ -16886,6 +17314,8 @@ entities: - type: Transform pos: 34.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11177 components: - type: MetaData @@ -16894,6 +17324,8 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11819 components: - type: MetaData @@ -16902,6 +17334,8 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12084 components: - type: MetaData @@ -16910,6 +17344,8 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12187 components: - type: MetaData @@ -16918,6 +17354,8 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12212 components: - type: MetaData @@ -16925,6 +17363,8 @@ entities: - type: Transform pos: 34.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13643 components: - type: MetaData @@ -16933,6 +17373,8 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14028 components: - type: MetaData @@ -16941,6 +17383,8 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14169 components: - type: MetaData @@ -16949,6 +17393,8 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14312 components: - type: MetaData @@ -16957,6 +17403,8 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15147 components: - type: MetaData @@ -16964,6 +17412,8 @@ entities: - type: Transform pos: -1.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15387 components: - type: MetaData @@ -16971,6 +17421,8 @@ entities: - type: Transform pos: 6.5,14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15615 components: - type: MetaData @@ -16978,6 +17430,8 @@ entities: - type: Transform pos: 38.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15627 components: - type: MetaData @@ -16986,6 +17440,8 @@ entities: rot: 3.141592653589793 rad pos: 45.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15823 components: - type: MetaData @@ -16994,6 +17450,8 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15931 components: - type: MetaData @@ -17002,6 +17460,8 @@ entities: rot: -1.5707963267948966 rad pos: -41.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16014 components: - type: MetaData @@ -17010,6 +17470,8 @@ entities: rot: 1.5707963267948966 rad pos: -15.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16809 components: - type: MetaData @@ -17017,6 +17479,8 @@ entities: - type: Transform pos: 11.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17039 components: - type: MetaData @@ -17024,6 +17488,8 @@ entities: - type: Transform pos: -36.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18312 components: - type: MetaData @@ -17032,6 +17498,8 @@ entities: rot: 3.141592653589793 rad pos: 18.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: APCElectronics entities: - uid: 1789 @@ -17064,6 +17532,8 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: AppraisalTool entities: - uid: 14317 @@ -17078,24 +17548,32 @@ entities: - type: Transform pos: -8.5,32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14633 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14634 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,49.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14635 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,42.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ArtistCircuitBoard entities: - uid: 5380 @@ -21561,6 +22039,8 @@ entities: - type: Transform pos: 1.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: BarSignSpacebucks entities: - uid: 5917 @@ -21568,6 +22048,8 @@ entities: - type: Transform pos: -17.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: BarSpoon entities: - uid: 11927 @@ -51585,6 +52067,8 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ClosetBombFilled entities: - uid: 5817 @@ -55259,52 +55743,70 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13950 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13951 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14424 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15297 components: - type: Transform pos: 10.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15476 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15520 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18081 components: - type: Transform pos: -59.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18082 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,48.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: DeployableBarrier entities: - uid: 2999 @@ -61480,6 +61982,8 @@ entities: - type: Transform pos: 7.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ExtinguisherCabinetFilled entities: - uid: 1257 @@ -61487,102 +61991,138 @@ entities: - type: Transform pos: 25.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4487 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7216 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15963 components: - type: Transform pos: -42.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15964 components: - type: Transform pos: -27.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15965 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15966 components: - type: Transform pos: -2.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15969 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15970 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15971 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15972 components: - type: Transform pos: 27.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15973 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15974 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15977 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15980 components: - type: Transform pos: -46.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15981 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18107 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18108 components: - type: Transform pos: -5.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: FaxMachineBase entities: - uid: 4025 @@ -61830,6 +62370,8 @@ entities: - 15890 - 963 - 14946 + - type: Fixtures + fixtures: {} - uid: 8138 components: - type: MetaData @@ -61846,6 +62388,8 @@ entities: - 10849 - 10850 - 10851 + - type: Fixtures + fixtures: {} - uid: 10771 components: - type: MetaData @@ -61854,6 +62398,8 @@ entities: rot: 3.141592653589793 rad pos: 29.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11390 components: - type: MetaData @@ -61866,6 +62412,8 @@ entities: - 10822 - 10823 - 10824 + - type: Fixtures + fixtures: {} - uid: 11391 components: - type: MetaData @@ -61888,6 +62436,8 @@ entities: - 10839 - 1938 - 1437 + - type: Fixtures + fixtures: {} - uid: 11574 components: - type: MetaData @@ -61907,6 +62457,8 @@ entities: - 10832 - 10833 - 12011 + - type: Fixtures + fixtures: {} - uid: 11575 components: - type: MetaData @@ -61928,6 +62480,8 @@ entities: - 1879 - 1878 - 18033 + - type: Fixtures + fixtures: {} - uid: 11576 components: - type: MetaData @@ -61943,6 +62497,8 @@ entities: - 10829 - 14970 - 14997 + - type: Fixtures + fixtures: {} - uid: 12224 components: - type: MetaData @@ -61966,6 +62522,8 @@ entities: - 11224 - 16478 - 16479 + - type: Fixtures + fixtures: {} - uid: 12225 components: - type: MetaData @@ -61982,6 +62540,8 @@ entities: - 10883 - 10841 - 10840 + - type: Fixtures + fixtures: {} - uid: 12226 components: - type: MetaData @@ -61994,6 +62554,8 @@ entities: devices: - 10841 - 10840 + - type: Fixtures + fixtures: {} - uid: 12553 components: - type: MetaData @@ -62005,6 +62567,8 @@ entities: - type: DeviceList devices: - 13803 + - type: Fixtures + fixtures: {} - uid: 13456 components: - type: MetaData @@ -62024,6 +62588,8 @@ entities: - 10907 - 1630 - 15890 + - type: Fixtures + fixtures: {} - uid: 13457 components: - type: MetaData @@ -62044,6 +62610,8 @@ entities: - 10846 - 10847 - 10848 + - type: Fixtures + fixtures: {} - uid: 13936 components: - type: MetaData @@ -62062,6 +62630,8 @@ entities: - 10887 - 10889 - 10888 + - type: Fixtures + fixtures: {} - uid: 14119 components: - type: MetaData @@ -62076,6 +62646,8 @@ entities: - 10825 - 10827 - 357 + - type: Fixtures + fixtures: {} - uid: 14126 components: - type: MetaData @@ -62089,6 +62661,8 @@ entities: - 10814 - 10813 - 10817 + - type: Fixtures + fixtures: {} - uid: 14128 components: - type: MetaData @@ -62106,6 +62680,8 @@ entities: - 10822 - 10823 - 10824 + - type: Fixtures + fixtures: {} - uid: 14129 components: - type: MetaData @@ -62123,6 +62699,8 @@ entities: - 10820 - 10826 - 18028 + - type: Fixtures + fixtures: {} - uid: 14279 components: - type: MetaData @@ -62137,6 +62715,8 @@ entities: - 10876 - 10875 - 10874 + - type: Fixtures + fixtures: {} - uid: 14525 components: - type: MetaData @@ -62149,6 +62729,8 @@ entities: - 18029 - 18028 - 18030 + - type: Fixtures + fixtures: {} - uid: 14526 components: - type: MetaData @@ -62162,6 +62744,8 @@ entities: - 18030 - 18031 - 18032 + - type: Fixtures + fixtures: {} - uid: 14641 components: - type: MetaData @@ -62185,6 +62769,8 @@ entities: - 266 - 1628 - 1629 + - type: Fixtures + fixtures: {} - uid: 14651 components: - type: MetaData @@ -62201,6 +62787,8 @@ entities: - 1629 - 963 - 14946 + - type: Fixtures + fixtures: {} - uid: 14652 components: - type: MetaData @@ -62213,6 +62801,8 @@ entities: devices: - 243 - 197 + - type: Fixtures + fixtures: {} - uid: 14654 components: - type: MetaData @@ -62230,6 +62820,8 @@ entities: - 10810 - 10811 - 10804 + - type: Fixtures + fixtures: {} - uid: 14655 components: - type: MetaData @@ -62242,6 +62834,8 @@ entities: devices: - 10875 - 10874 + - type: Fixtures + fixtures: {} - uid: 14656 components: - type: MetaData @@ -62253,6 +62847,8 @@ entities: - type: DeviceList devices: - 10873 + - type: Fixtures + fixtures: {} - uid: 14665 components: - type: MetaData @@ -62268,6 +62864,8 @@ entities: - 13835 - 13834 - 13850 + - type: Fixtures + fixtures: {} - uid: 14667 components: - type: MetaData @@ -62281,6 +62879,8 @@ entities: - 13835 - 13834 - 13850 + - type: Fixtures + fixtures: {} - uid: 14668 components: - type: MetaData @@ -62296,6 +62896,8 @@ entities: - 10853 - 10854 - 13810 + - type: Fixtures + fixtures: {} - uid: 14669 components: - type: MetaData @@ -62310,6 +62912,8 @@ entities: - 10900 - 10898 - 10899 + - type: Fixtures + fixtures: {} - uid: 14671 components: - type: MetaData @@ -62325,6 +62929,8 @@ entities: - 10901 - 10902 - 14672 + - type: Fixtures + fixtures: {} - uid: 14673 components: - type: MetaData @@ -62339,6 +62945,8 @@ entities: - 14670 - 10905 - 4374 + - type: Fixtures + fixtures: {} - uid: 14675 components: - type: MetaData @@ -62350,6 +62958,8 @@ entities: - type: DeviceList devices: - 10902 + - type: Fixtures + fixtures: {} - uid: 14677 components: - type: MetaData @@ -62366,6 +62976,8 @@ entities: - 10893 - 10892 - 11143 + - type: Fixtures + fixtures: {} - uid: 14678 components: - type: MetaData @@ -62382,6 +62994,8 @@ entities: - 10893 - 10894 - 10895 + - type: Fixtures + fixtures: {} - uid: 14679 components: - type: MetaData @@ -62394,6 +63008,8 @@ entities: devices: - 10894 - 10895 + - type: Fixtures + fixtures: {} - uid: 14683 components: - type: MetaData @@ -62405,6 +63021,8 @@ entities: - type: DeviceList devices: - 13810 + - type: Fixtures + fixtures: {} - uid: 14684 components: - type: MetaData @@ -62416,6 +63034,8 @@ entities: - type: DeviceList devices: - 10907 + - type: Fixtures + fixtures: {} - uid: 15059 components: - type: MetaData @@ -62428,6 +63048,8 @@ entities: devices: - 14970 - 14997 + - type: Fixtures + fixtures: {} - uid: 15060 components: - type: MetaData @@ -62441,6 +63063,8 @@ entities: - 14998 - 14999 - 4973 + - type: Fixtures + fixtures: {} - uid: 15061 components: - type: Transform @@ -62451,6 +63075,8 @@ entities: devices: - 1879 - 1878 + - type: Fixtures + fixtures: {} - uid: 15232 components: - type: MetaData @@ -62462,6 +63088,8 @@ entities: devices: - 14998 - 14999 + - type: Fixtures + fixtures: {} - uid: 15794 components: - type: MetaData @@ -62474,6 +63102,8 @@ entities: devices: - 14212 - 14136 + - type: Fixtures + fixtures: {} - uid: 15796 components: - type: MetaData @@ -62485,6 +63115,8 @@ entities: - type: DeviceList devices: - 357 + - type: Fixtures + fixtures: {} - uid: 16327 components: - type: MetaData @@ -62498,6 +63130,8 @@ entities: - 18629 - 18628 - 1628 + - type: Fixtures + fixtures: {} - uid: 16472 components: - type: MetaData @@ -62510,6 +63144,8 @@ entities: devices: - 16467 - 16470 + - type: Fixtures + fixtures: {} - uid: 16473 components: - type: MetaData @@ -62528,6 +63164,8 @@ entities: - 6856 - 16465 - 16471 + - type: Fixtures + fixtures: {} - uid: 16474 components: - type: MetaData @@ -62539,6 +63177,8 @@ entities: devices: - 6856 - 16465 + - type: Fixtures + fixtures: {} - uid: 16475 components: - type: MetaData @@ -62550,6 +63190,8 @@ entities: - type: DeviceList devices: - 16471 + - type: Fixtures + fixtures: {} - uid: 16476 components: - type: MetaData @@ -62562,6 +63204,8 @@ entities: devices: - 16469 - 16468 + - type: Fixtures + fixtures: {} - uid: 16477 components: - type: MetaData @@ -62574,6 +63218,8 @@ entities: - 16479 - 16478 - 11224 + - type: Fixtures + fixtures: {} - uid: 16827 components: - type: MetaData @@ -62588,6 +63234,8 @@ entities: - 10891 - 16806 - 16807 + - type: Fixtures + fixtures: {} - uid: 17019 components: - type: MetaData @@ -62603,6 +63251,8 @@ entities: - 11224 - 16478 - 16479 + - type: Fixtures + fixtures: {} - proto: FireAlarmElectronics entities: - uid: 2284 @@ -62617,12 +63267,16 @@ entities: - type: Transform pos: 30.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15812 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: FireExtinguisher entities: - uid: 1914 @@ -89041,17 +89695,23 @@ entities: - type: Transform pos: -26.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17256 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17442 components: - type: Transform pos: -42.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomAssembly entities: - uid: 16722 @@ -89068,12 +89728,16 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14474 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomEngineering entities: - uid: 8816 @@ -89082,6 +89746,8 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomMedical entities: - uid: 4076 @@ -89090,6 +89756,8 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomScience entities: - uid: 11181 @@ -89098,6 +89766,8 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomSecurity entities: - uid: 3496 @@ -89106,17 +89776,23 @@ entities: rot: -1.5707963267948966 rad pos: -32.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8618 components: - type: Transform pos: -2.5,31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15299 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomService entities: - uid: 15899 @@ -89125,6 +89801,8 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomSupply entities: - uid: 9995 @@ -89133,6 +89811,8 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: JanitorialTrolley entities: - uid: 7354 @@ -89486,6 +90166,8 @@ entities: 3436: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonCaptain entities: - uid: 13976 @@ -89515,6 +90197,8 @@ entities: 11048: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonChiefEngineer entities: - uid: 16183 @@ -89539,6 +90223,8 @@ entities: 8126: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonChiefMedicalOfficer entities: - uid: 16176 @@ -89555,6 +90241,8 @@ entities: 16174: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonCommand entities: - uid: 11097 @@ -89602,6 +90290,8 @@ entities: 15279: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 18607 components: - type: MetaData @@ -89627,6 +90317,8 @@ entities: - Open - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - proto: LockableButtonEngineering entities: - uid: 2911 @@ -89641,6 +90333,8 @@ entities: 12655: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonExternal entities: - uid: 6221 @@ -89667,6 +90361,8 @@ entities: 15143: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 8194 components: - type: MetaData @@ -89692,6 +90388,8 @@ entities: 15143: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonHeadOfPersonnel entities: - uid: 14619 @@ -89714,6 +90412,8 @@ entities: 3135: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonHeadOfSecurity entities: - uid: 18105 @@ -89732,6 +90432,8 @@ entities: 15186: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonKitchen entities: - uid: 4481 @@ -89755,6 +90457,8 @@ entities: 16222: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonMedical entities: - uid: 9089 @@ -89773,6 +90477,8 @@ entities: 3916: - - Pressed - Open + - type: Fixtures + fixtures: {} - uid: 13575 components: - type: MetaData @@ -89789,6 +90495,8 @@ entities: 4706: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 13768 components: - type: MetaData @@ -89804,6 +90512,8 @@ entities: 5080: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 16210 components: - type: MetaData @@ -89820,6 +90530,8 @@ entities: 16147: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonQuartermaster entities: - uid: 16161 @@ -89847,6 +90559,8 @@ entities: 16155: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonResearchDirector entities: - uid: 11128 @@ -89866,6 +90580,8 @@ entities: 11182: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockerAtmosphericsFilled entities: - uid: 2107 @@ -91504,21 +92220,29 @@ entities: - type: Transform pos: -0.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 281 components: - type: Transform pos: 1.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 282 components: - type: Transform pos: 3.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18053 components: - type: Transform pos: -9.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: MonkeyCube entities: - uid: 15919 @@ -91711,32 +92435,44 @@ entities: - type: Transform pos: 3.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13678 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13679 components: - type: Transform pos: 24.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13680 components: - type: Transform pos: 5.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13681 components: - type: Transform pos: -32.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15881 components: - type: Transform pos: -12.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: NTDefaultCircuitBoard entities: - uid: 1594 @@ -91879,6 +92615,8 @@ entities: - type: Transform pos: 3.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PairedChopsticks entities: - uid: 317 @@ -92594,6 +93332,8 @@ entities: - type: Transform pos: 36.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandC20r entities: - uid: 16064 @@ -92601,6 +93341,8 @@ entities: - type: Transform pos: -16.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandEnlistGorlex entities: - uid: 6322 @@ -92608,6 +93350,8 @@ entities: - type: Transform pos: -19.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandFunPolice entities: - uid: 16063 @@ -92615,6 +93359,8 @@ entities: - type: Transform pos: -14.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandNuclearDeviceInformational entities: - uid: 18596 @@ -92622,6 +93368,8 @@ entities: - type: Transform pos: 9.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandSyndicateRecruitment entities: - uid: 16054 @@ -92629,6 +93377,8 @@ entities: - type: Transform pos: -18.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitFoamForceAd entities: - uid: 2970 @@ -92636,6 +93386,8 @@ entities: - type: Transform pos: 18.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitNanotrasenLogo entities: - uid: 3227 @@ -92644,12 +93396,16 @@ entities: rot: 3.141592653589793 rad pos: -24.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3230 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PottedPlantRandom entities: - uid: 759 @@ -98902,83 +99658,113 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13525 components: - type: Transform pos: -63.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14555 components: - type: Transform pos: -51.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14636 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14637 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14638 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14640 components: - type: Transform pos: 2.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14642 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14644 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14645 components: - type: Transform pos: -35.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14647 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14648 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14916 components: - type: Transform pos: 29.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15097 components: - type: Transform pos: -18.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17582 components: - type: Transform pos: -1.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: Screwdriver entities: - uid: 15457 @@ -99648,16 +100434,22 @@ entities: - type: Transform pos: -9.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3809 components: - type: Transform pos: -39.5,17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5468 components: - type: Transform pos: -34.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignalButton entities: - uid: 18100 @@ -99685,6 +100477,8 @@ entities: 18098: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: SignalButtonDirectional entities: - uid: 841 @@ -99695,6 +100489,8 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1491 components: - type: MetaData @@ -99714,6 +100510,8 @@ entities: 11766: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 2449 components: - type: MetaData @@ -99727,6 +100525,8 @@ entities: 12655: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 2643 components: - type: MetaData @@ -99743,6 +100543,8 @@ entities: 2360: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 3473 components: - type: MetaData @@ -99762,6 +100564,8 @@ entities: 6996: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 6029 components: - type: MetaData @@ -99774,6 +100578,8 @@ entities: 7748: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 7024 components: - type: MetaData @@ -99790,6 +100596,8 @@ entities: 16017: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 9353 components: - type: MetaData @@ -99803,6 +100611,8 @@ entities: 8133: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 9658 components: - type: MetaData @@ -99822,6 +100632,8 @@ entities: 2332: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 10510 components: - type: MetaData @@ -99834,6 +100646,8 @@ entities: 9968: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 11169 components: - type: MetaData @@ -99847,6 +100661,8 @@ entities: 14013: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 11201 components: - type: MetaData @@ -99862,6 +100678,8 @@ entities: 11215: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 11351 components: - type: MetaData @@ -99883,6 +100701,8 @@ entities: 1514: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 12773 components: - type: MetaData @@ -99899,6 +100719,8 @@ entities: 5141: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 12908 components: - type: MetaData @@ -99921,6 +100743,8 @@ entities: 1443: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 13629 components: - type: MetaData @@ -99934,6 +100758,8 @@ entities: 15892: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 14428 components: - type: MetaData @@ -99949,6 +100775,8 @@ entities: 7942: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 14431 components: - type: MetaData @@ -99964,6 +100792,8 @@ entities: 2526: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 14435 components: - type: MetaData @@ -99979,6 +100809,8 @@ entities: 3916: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 14437 components: - type: MetaData @@ -99995,6 +100827,8 @@ entities: 2588: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 14511 components: - type: MetaData @@ -100011,6 +100845,8 @@ entities: 4514: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 14512 components: - type: MetaData @@ -100027,6 +100863,8 @@ entities: 4531: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 15612 components: - type: MetaData @@ -100035,6 +100873,8 @@ entities: rot: 1.5707963267948966 rad pos: -1.5549712,-18.496132 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15737 components: - type: MetaData @@ -100051,6 +100891,8 @@ entities: 1256: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 15861 components: - type: MetaData @@ -100064,6 +100906,8 @@ entities: 6033: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 15865 components: - type: MetaData @@ -100077,6 +100921,8 @@ entities: 6303: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 15868 components: - type: MetaData @@ -100090,6 +100936,8 @@ entities: 15857: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 15871 components: - type: MetaData @@ -100103,6 +100951,8 @@ entities: 15872: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 15880 components: - type: MetaData @@ -100116,6 +100966,8 @@ entities: 15856: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 15886 components: - type: MetaData @@ -100129,6 +100981,8 @@ entities: 15884: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 15889 components: - type: MetaData @@ -100142,6 +100996,8 @@ entities: 15888: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 15895 components: - type: MetaData @@ -100155,6 +101011,8 @@ entities: 3590: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 16553 components: - type: MetaData @@ -100168,6 +101026,8 @@ entities: 16579: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 18047 components: - type: MetaData @@ -100181,6 +101041,8 @@ entities: 18048: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 18062 components: - type: MetaData @@ -100197,6 +101059,8 @@ entities: 3047: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: SignalSwitchDirectional entities: - uid: 9640 @@ -100258,6 +101122,8 @@ entities: - Forward - - Off - Off + - type: Fixtures + fixtures: {} - proto: SignAnomaly entities: - uid: 16169 @@ -100265,6 +101131,8 @@ entities: - type: Transform pos: -19.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignAnomaly2 entities: - uid: 5317 @@ -100272,6 +101140,8 @@ entities: - type: Transform pos: -22.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignArmory entities: - uid: 5648 @@ -100280,6 +101150,8 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignAtmos entities: - uid: 12611 @@ -100287,6 +101159,8 @@ entities: - type: Transform pos: 35.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBar entities: - uid: 21 @@ -100295,6 +101169,8 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBath entities: - uid: 15938 @@ -100302,6 +101178,8 @@ entities: - type: Transform pos: -43.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBiohazardMed entities: - uid: 12777 @@ -100309,11 +101187,15 @@ entities: - type: Transform pos: 26.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12778 components: - type: Transform pos: 22.5,27.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCans entities: - uid: 1377 @@ -100321,6 +101203,8 @@ entities: - type: Transform pos: 36.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCargo entities: - uid: 4218 @@ -100328,6 +101212,8 @@ entities: - type: Transform pos: 8.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCargoDock entities: - uid: 6506 @@ -100335,11 +101221,15 @@ entities: - type: Transform pos: 8.5,42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6507 components: - type: Transform pos: 8.5,40.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignChapel entities: - uid: 3245 @@ -100348,6 +101238,8 @@ entities: rot: -1.5707963267948966 rad pos: -35.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignChem entities: - uid: 1930 @@ -100356,11 +101248,15 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4110 components: - type: Transform pos: 29.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCryo entities: - uid: 4171 @@ -100369,6 +101265,8 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCryogenicsMed entities: - uid: 4068 @@ -100376,11 +101274,15 @@ entities: - type: Transform pos: 36.5,16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6308 components: - type: Transform pos: 12.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDetective entities: - uid: 5848 @@ -100388,6 +101290,8 @@ entities: - type: Transform pos: 1.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalBar entities: - uid: 11727 @@ -100396,12 +101300,16 @@ entities: rot: 1.5707963267948966 rad pos: -20.501694,-14.704858 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14742 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.497725,-40.304935 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalBridge entities: - uid: 11753 @@ -100409,35 +101317,47 @@ entities: - type: Transform pos: -4.4989257,18.304083 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12812 components: - type: Transform pos: 18.501328,3.7005234 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12951 components: - type: Transform rot: 3.141592653589793 rad pos: -23.50321,-14.303962 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14761 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15032 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15040 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.498208,18.692 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalChapel entities: - uid: 15044 @@ -100445,6 +101365,8 @@ entities: - type: Transform pos: -14.498813,-14.699825 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalCryo entities: - uid: 11734 @@ -100453,30 +101375,40 @@ entities: rot: 1.5707963267948966 rad pos: -26.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13582 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.498813,-14.304178 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14344 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.496222,-1.7055917 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14744 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.50147,15.697969 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15047 components: - type: Transform rot: 3.141592653589793 rad pos: 12.502421,15.691843 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalDorms entities: - uid: 6112 @@ -100484,11 +101416,15 @@ entities: - type: Transform pos: -32.50111,-32.70194 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15039 components: - type: Transform pos: -14.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalEng entities: - uid: 11096 @@ -100497,40 +101433,54 @@ entities: rot: 3.141592653589793 rad pos: -17.495373,-27.69906 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11754 components: - type: Transform rot: 3.141592653589793 rad pos: 14.500077,-11.300287 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13531 components: - type: Transform pos: 18.497702,12.302287 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13624 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.50321,-14.6975975 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13693 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5034904,-11.692226 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14762 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.503107,-40.69738 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15042 components: - type: Transform pos: -6.4968357,11.693296 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalEscapePod entities: - uid: 5555 @@ -100539,70 +101489,94 @@ entities: rot: 3.141592653589793 rad pos: -8.5,53.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8427 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11590 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13877 components: - type: Transform pos: -28.5,-44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13878 components: - type: Transform pos: -37.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14105 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14740 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.49834,18.307442 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15035 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.497536,-2.7050738 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17328 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17331 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17332 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17371 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,33.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalEvac entities: - uid: 11723 @@ -100610,77 +101584,105 @@ entities: - type: Transform pos: -6.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11729 components: - type: Transform pos: -17.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13536 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13690 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13726 components: - type: Transform pos: 18.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14123 components: - type: Transform pos: -18.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14162 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14708 components: - type: Transform pos: -10.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14733 components: - type: Transform pos: -4.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14840 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14993 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15036 components: - type: Transform pos: -20.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15043 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15891 components: - type: Transform pos: 18.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalFood entities: - uid: 12758 @@ -100689,18 +101691,24 @@ entities: rot: 1.5707963267948966 rad pos: -26.497725,-40.69556 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14000 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.496222,-1.2993416 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14764 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalHop entities: - uid: 11902 @@ -100709,12 +101717,16 @@ entities: rot: 1.5707963267948966 rad pos: -20.501694,-14.30642 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18358 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.498719,15.302658 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalMed entities: - uid: 627 @@ -100722,53 +101734,71 @@ entities: - type: Transform pos: 18.497702,12.692912 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11725 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.497272,-28.30454 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12017 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.49786,-18.297403 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13339 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.50076,15.701214 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14104 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.499932,-11.301019 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14524 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14719 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.4997537,15.306389 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14845 components: - type: Transform rot: 3.141592653589793 rad pos: -18.496513,-31.303017 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15045 components: - type: Transform pos: -10.496966,-2.2960353 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSci entities: - uid: 11051 @@ -100777,42 +101807,56 @@ entities: rot: 3.141592653589793 rad pos: -17.50317,-27.31334 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11728 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.498208,18.301374 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13689 components: - type: Transform rot: 3.141592653589793 rad pos: -10.502838,-11.307338 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14520 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5002685,18.692705 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14676 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15033 components: - type: Transform rot: 3.141592653589793 rad pos: 18.499554,-2.3014147 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15046 components: - type: Transform rot: 3.141592653589793 rad pos: -10.4983835,3.2940526 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSec entities: - uid: 11430 @@ -100820,57 +101864,77 @@ entities: - type: Transform pos: 18.498915,3.3042421 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11724 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.501745,-40.300663 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11726 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.497155,-11.7099 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12860 components: - type: Transform pos: -10.498068,-2.7127101 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13225 components: - type: Transform pos: 18.500702,-2.6998522 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14994 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.49976,15.29352 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14995 components: - type: Transform rot: 3.141592653589793 rad pos: -18.501804,-31.709396 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15037 components: - type: Transform pos: -6.5035267,11.294012 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15038 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.497272,-28.702978 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15049 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.50137,-18.69309 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSolar entities: - uid: 1299 @@ -100878,59 +101942,79 @@ entities: - type: Transform pos: 13.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15068 components: - type: Transform pos: 5.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15071 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15072 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15982 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15983 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15984 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15985 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15986 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15987 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSupply entities: - uid: 6117 @@ -100939,36 +102023,48 @@ entities: rot: 3.141592653589793 rad pos: -17.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11735 components: - type: Transform rot: 3.141592653589793 rad pos: -10.500978,-11.697264 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11903 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14739 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15034 components: - type: Transform rot: 3.141592653589793 rad pos: -10.4983835,3.708115 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15041 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalWash entities: - uid: 14836 @@ -100977,6 +102073,8 @@ entities: rot: -1.5707963267948966 rad pos: -32.501183,-32.302574 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDisposalSpace entities: - uid: 12615 @@ -100984,11 +102082,15 @@ entities: - type: Transform pos: 46.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12616 components: - type: Transform pos: 46.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignElectricalMed entities: - uid: 1354 @@ -100996,121 +102098,167 @@ entities: - type: Transform pos: 61.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1448 components: - type: Transform pos: 44.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1450 components: - type: Transform pos: 61.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1496 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1498 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1601 components: - type: Transform pos: 44.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1956 components: - type: Transform pos: 15.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4286 components: - type: Transform pos: -6.5,55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4287 components: - type: Transform pos: 1.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5070 components: - type: Transform pos: -34.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5231 components: - type: Transform pos: -10.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6134 components: - type: Transform pos: -29.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6283 components: - type: Transform pos: 43.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7945 components: - type: Transform rot: 1.5707963267948966 rad pos: 61.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8292 components: - type: Transform rot: 1.5707963267948966 rad pos: 61.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8355 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10472 components: - type: Transform pos: 40.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11477 components: - type: Transform pos: 26.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11483 components: - type: Transform pos: 12.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12776 components: - type: Transform pos: 35.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18070 components: - type: Transform pos: -16.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18074 components: - type: Transform pos: -13.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18075 components: - type: Transform pos: -10.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEngine entities: - uid: 75 @@ -101118,16 +102266,22 @@ entities: - type: Transform pos: 30.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12736 components: - type: Transform pos: 38.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12745 components: - type: Transform pos: 37.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEngineering entities: - uid: 1447 @@ -101135,6 +102289,8 @@ entities: - type: Transform pos: 25.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEscapePods entities: - uid: 5443 @@ -101142,31 +102298,43 @@ entities: - type: Transform pos: 45.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13889 components: - type: Transform pos: -27.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14358 components: - type: Transform pos: 45.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14775 components: - type: Transform pos: -23.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15024 components: - type: Transform pos: -28.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17377 components: - type: Transform pos: -20.5,56.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEVA entities: - uid: 7 @@ -101174,11 +102342,15 @@ entities: - type: Transform pos: -17.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16466 components: - type: Transform pos: -8.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignExamroom entities: - uid: 12705 @@ -101186,6 +102358,8 @@ entities: - type: Transform pos: 32.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignFlammableMed entities: - uid: 5548 @@ -101193,16 +102367,22 @@ entities: - type: Transform pos: 27.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6138 components: - type: Transform pos: 30.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15260 components: - type: Transform pos: 28.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignGenpop entities: - uid: 6110 @@ -101210,11 +102390,15 @@ entities: - type: Transform pos: -9.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6500 components: - type: Transform pos: -13.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignGravity entities: - uid: 8365 @@ -101222,6 +102406,8 @@ entities: - type: Transform pos: 38.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignHead entities: - uid: 2269 @@ -101229,11 +102415,15 @@ entities: - type: Transform pos: -29.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10518 components: - type: Transform pos: -11.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignHydro1 entities: - uid: 12734 @@ -101241,6 +102431,8 @@ entities: - type: Transform pos: 13.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignInterrogation entities: - uid: 5512 @@ -101248,6 +102440,8 @@ entities: - type: Transform pos: -2.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignJanitor entities: - uid: 410 @@ -101255,12 +102449,16 @@ entities: - type: Transform pos: -5.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 426 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignKitchen entities: - uid: 343 @@ -101268,6 +102466,8 @@ entities: - type: Transform pos: 7.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignLawyer entities: - uid: 2761 @@ -101275,11 +102475,15 @@ entities: - type: Transform pos: -32.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15874 components: - type: Transform pos: -20.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignLibrary entities: - uid: 2194 @@ -101287,6 +102491,8 @@ entities: - type: Transform pos: -17.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMagneticsMed entities: - uid: 14324 @@ -101294,11 +102500,15 @@ entities: - type: Transform pos: 22.5,44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15687 components: - type: Transform pos: 44.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMail entities: - uid: 16820 @@ -101306,6 +102516,8 @@ entities: - type: Transform pos: 9.5,25.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMaterials entities: - uid: 12670 @@ -101313,6 +102525,8 @@ entities: - type: Transform pos: 34.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMedical entities: - uid: 1065 @@ -101320,6 +102534,8 @@ entities: - type: Transform pos: 22.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMorgue entities: - uid: 4020 @@ -101328,6 +102544,8 @@ entities: rot: 1.5707963267948966 rad pos: 41.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignNews entities: - uid: 12735 @@ -101335,6 +102553,8 @@ entities: - type: Transform pos: -29.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignNosmoking entities: - uid: 12769 @@ -101342,16 +102562,22 @@ entities: - type: Transform pos: 34.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12772 components: - type: Transform pos: 27.5,17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15250 components: - type: Transform pos: 16.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignPrison entities: - uid: 1645 @@ -101359,11 +102585,15 @@ entities: - type: Transform pos: -7.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11776 components: - type: Transform pos: -6.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignPsychology entities: - uid: 4211 @@ -101371,6 +102601,8 @@ entities: - type: Transform pos: 5.5,19.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRadiationMed entities: - uid: 18595 @@ -101378,6 +102610,8 @@ entities: - type: Transform pos: 8.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRND entities: - uid: 11141 @@ -101385,6 +102619,8 @@ entities: - type: Transform pos: -15.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRobo entities: - uid: 10494 @@ -101392,6 +102628,8 @@ entities: - type: Transform pos: -16.5,14.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSalvage entities: - uid: 12749 @@ -101399,6 +102637,8 @@ entities: - type: Transform pos: 17.5,37.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignScience entities: - uid: 11170 @@ -101406,6 +102646,8 @@ entities: - type: Transform pos: -8.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecureMed entities: - uid: 4492 @@ -101413,31 +102655,43 @@ entities: - type: Transform pos: -23.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5599 components: - type: Transform pos: -11.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5749 components: - type: Transform pos: -9.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6599 components: - type: Transform pos: -13.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12767 components: - type: Transform pos: 37.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15471 components: - type: Transform pos: -5.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecurity entities: - uid: 5558 @@ -101445,21 +102699,29 @@ entities: - type: Transform pos: -2.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6622 components: - type: Transform pos: -34.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6646 components: - type: Transform pos: -4.5,28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8658 components: - type: Transform pos: 18.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignShipDock entities: - uid: 10122 @@ -101467,21 +102729,29 @@ entities: - type: Transform pos: -53.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12617 components: - type: Transform pos: -43.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15792 components: - type: Transform pos: -53.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15793 components: - type: Transform pos: -61.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSmoking entities: - uid: 6034 @@ -101489,16 +102759,22 @@ entities: - type: Transform pos: 32.5,16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12679 components: - type: Transform pos: 28.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12771 components: - type: Transform pos: 38.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSpace entities: - uid: 2151 @@ -101506,46 +102782,64 @@ entities: - type: Transform pos: 13.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6108 components: - type: Transform pos: -38.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12753 components: - type: Transform pos: 30.5,32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12754 components: - type: Transform pos: 47.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12755 components: - type: Transform pos: 38.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12756 components: - type: Transform pos: 41.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16101 components: - type: Transform pos: -22.5,55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17642 components: - type: Transform pos: 23.5,42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18605 components: - type: Transform pos: 48.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSurgery entities: - uid: 4067 @@ -101553,6 +102847,8 @@ entities: - type: Transform pos: 33.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignTelecomms entities: - uid: 7999 @@ -101560,6 +102856,8 @@ entities: - type: Transform pos: 31.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignTheater entities: - uid: 344 @@ -101567,6 +102865,8 @@ entities: - type: Transform pos: 5.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignToolStorage entities: - uid: 8238 @@ -101574,6 +102874,8 @@ entities: - type: Transform pos: -3.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignVault entities: - uid: 15513 @@ -101581,6 +102883,8 @@ entities: - type: Transform pos: 8.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignVirology entities: - uid: 3978 @@ -101589,6 +102893,8 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignXenobio entities: - uid: 5402 @@ -101596,6 +102902,8 @@ entities: - type: Transform pos: -31.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SilverRingDiamond entities: - uid: 10378 @@ -102896,6 +104204,28 @@ entities: - type: Transform pos: -4.5,6.5 parent: 2 +- proto: SpawnPointLatejoin + entities: + - uid: 18655 + components: + - type: Transform + pos: -5.5,46.5 + parent: 2 + - uid: 18656 + components: + - type: Transform + pos: -5.5,45.5 + parent: 2 + - uid: 18657 + components: + - type: Transform + pos: -5.5,40.5 + parent: 2 + - uid: 18658 + components: + - type: Transform + pos: -5.5,39.5 + parent: 2 - proto: SpawnPointLawyer entities: - uid: 7804 @@ -103678,69 +105008,93 @@ entities: - type: Transform pos: -17.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12867 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14620 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14621 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,43.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14623 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14624 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14626 components: - type: Transform pos: -27.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14880 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15927 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17229 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17581 components: - type: Transform pos: -0.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18357 components: - type: Transform pos: 11.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: StationMapBroken entities: - uid: 14628 @@ -103749,6 +105103,8 @@ entities: rot: 1.5707963267948966 rad pos: -40.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SteelBench entities: - uid: 1309 @@ -106085,6 +107441,8 @@ entities: - type: Transform pos: -14.5,-49.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SyndieHandyFlag entities: - uid: 16078 @@ -122375,6 +123733,8 @@ entities: - type: Transform pos: 37.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningN2 entities: - uid: 14218 @@ -122382,6 +123742,8 @@ entities: - type: Transform pos: 37.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningO2 entities: - uid: 13985 @@ -122389,6 +123751,8 @@ entities: - type: Transform pos: 37.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningPlasma entities: - uid: 13984 @@ -122397,6 +123761,8 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningTritium entities: - uid: 13983 @@ -122405,6 +123771,8 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningWaste entities: - uid: 13982 @@ -122413,6 +123781,8 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WaterCooler entities: - uid: 1683 diff --git a/Resources/Maps/exo.yml b/Resources/Maps/exo.yml index d00cb05179..512da6036f 100644 --- a/Resources/Maps/exo.yml +++ b/Resources/Maps/exo.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Map - engineVersion: 265.0.0 + engineVersion: 266.0.0 forkId: "" forkVersion: "" - time: 07/31/2025 15:20:28 - entityCount: 20082 + time: 08/31/2025 08:35:05 + entityCount: 19817 maps: - 1 grids: @@ -16,6 +16,7 @@ tilemap: 0: Space 51: FloorAsteroidIronsandBorderless 28: FloorAstroGrass + 52: FloorAstroSnow 50: FloorBlue 19: FloorBlueCircuit 21: FloorBoxing @@ -100,95 +101,95 @@ entities: chunks: 0,0: ind: 0,0 - tiles: YAAAAAAAAGAAAAAAAABgAAAAAAIAYAAAAAADAGAAAAAAAwBgAAAAAAIAYAAAAAAAAGAAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAQBgAAAAAAAAYAAAAAACAGAAAAAAAwBgAAAAAAEAYAAAAAABAGAAAAAAAgBgAAAAAAEAYAAAAAACAIEAAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAEAYAAAAAABAGAAAAAAAABgAAAAAAMAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: YAAAAAABAGAAAAAAAwBgAAAAAAMAYAAAAAABAGAAAAAAAwBgAAAAAAMAYAAAAAABAGAAAAAAAQCBAAAAAAAAgQAAAAAAAG8AAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAABAGAAAAAAAwBgAAAAAAEAYAAAAAADAGAAAAAAAgBgAAAAAAMAYAAAAAAAAIEAAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAEAYAAAAAAAAGAAAAAAAwBgAAAAAAEAYAAAAAACAGAAAAAAAQBgAAAAAAEAYAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAFgAAAAADABYAAAAAAgAWAAAAAAEAFgAAAAABABYAAAAAAABgAAAAAAMAYAAAAAABAGAAAAAAAABgAAAAAAEAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAABYAAAAAAQAWAAAAAAEAFgAAAAAAABYAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAABgAAAAAAIAYAAAAAADAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABYAAAAAAAAWAAAAAAMAgQAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAABAGAAAAAAAQBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAAAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAFgAAAAADABYAAAAAAwAWAAAAAAIAFgAAAAADABYAAAAAAwBgAAAAAAAAYAAAAAADAGAAAAAAAwBgAAAAAAMAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAABYAAAAAAAAWAAAAAAMAFgAAAAABABYAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAgBgAAAAAAEAYAAAAAAAAGAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABYAAAAAAwAWAAAAAAEAgQAAAAAAAGAAAAAAAQBgAAAAAAEAYAAAAAABAGAAAAAAAQBgAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAAAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAA== version: 7 0,-1: ind: 0,-1 - tiles: JQAAAAABACUAAAAAAgAlAAAAAAIAgQAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAABAGAAAAAAAwCBAAAAAAAAYAAAAAADAGAAAAAAAgBgAAAAAAIAYAAAAAACAGAAAAAAAACBAAAAAAAAYAAAAAAAAIEAAAAAAAAlAAAAAAMAJQAAAAABAIEAAAAAAACBAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAEAJQAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACUAAAAAAACBAAAAAAAAKwAAAAAAACsAAAAAAACBAAAAAAAAKwAAAAAAACsAAAAAAwArAAAAAAIAKwAAAAACACsAAAAAAwArAAAAAAEAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADgQAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAbwAAAAAAAIEAAAAAAACBAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAEAYAAAAAAAAGAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAMAYAAAAAADAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAEAYAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAAAYAAAAAACAGAAAAAAAABgAAAAAAAAYAAAAAABAGAAAAAAAABgAAAAAAIAgQAAAAAAAG8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAABAGAAAAAAAQBgAAAAAAMAYAAAAAADAGAAAAAAAgBgAAAAAAIAgQAAAAAAAIEAAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAIAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADAGAAAAAAAABgAAAAAAIAYAAAAAADAIEAAAAAAABgAAAAAAEAYAAAAAAAAGAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAABgAAAAAAIAYAAAAAAAAGAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAIAYAAAAAADAGAAAAAAAQBgAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAAAYAAAAAABAIEAAAAAAABgAAAAAAAAYAAAAAACAGAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: JQAAAAABACUAAAAAAgAlAAAAAAEAgQAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAAAAGAAAAAAAwCBAAAAAAAAYAAAAAABAGAAAAAAAgBgAAAAAAIAYAAAAAAAAGAAAAAAAACBAAAAAAAAYAAAAAADAIEAAAAAAAAlAAAAAAIAJQAAAAABAIEAAAAAAACBAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAEAJQAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACUAAAAAAwCBAAAAAAAAKwAAAAABACsAAAAAAwCBAAAAAAAAKwAAAAABACsAAAAAAAArAAAAAAEAKwAAAAADACsAAAAAAQArAAAAAAEAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADgQAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAbwAAAAAAAIEAAAAAAACBAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAwCBAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAAAYAAAAAACAGAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAYAAAAAADAGAAAAAAAwBgAAAAAAEAYAAAAAABAGAAAAAAAgBgAAAAAAIAYAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACAGAAAAAAAwBgAAAAAAMAYAAAAAACAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAAAgQAAAAAAAG8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAABAGAAAAAAAABgAAAAAAAAYAAAAAABAGAAAAAAAABgAAAAAAMAgQAAAAAAAIEAAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAEAYAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADAGAAAAAAAgBgAAAAAAIAYAAAAAADAIEAAAAAAABgAAAAAAMAYAAAAAAAAGAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAABAGAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAIAYAAAAAACAGAAAAAAAgBgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAADAIEAAAAAAABgAAAAAAAAYAAAAAADAGAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -1,-1: ind: -1,-1 - tiles: gQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAIEAAAAAAAAkAAAAAAMAJAAAAAADAIEAAAAAAAAlAAAAAAIAJQAAAAAAACUAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAAAACUAAAAAAgAlAAAAAAIAgQAAAAAAAGAAAAAAAgBgAAAAAAMAgQAAAAAAACUAAAAAAAAtAAAAAAADLQAAAAAAAxgAAAAAAAAYAAAAAAAAGAAAAAAAAC0AAAAAAAEYAAAAAAAALQAAAAAAAS4AAAAAAAMlAAAAAAEARAAAAAAAAGAAAAAAAgBgAAAAAAAAYAAAAAAAAEQAAAAAAAAlAAAAAAEAKwAAAAABACsAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAArAAAAAAEAGAAAAAAAACUAAAAAAAAtAAAAAAAAJQAAAAABAIEAAAAAAACBAAAAAAAARAAAAAAAAEQAAAAAAACBAAAAAAAAJQAAAAACAC0AAAAAAAMtAAAAAAADGAAAAAAAABgAAAAAAAAYAAAAAAAALQAAAAAAARgAAAAAAAAtAAAAAAABLgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACUAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAYAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAADAGAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAEAgQAAAAAAAGAAAAAAAQBgAAAAAAEAYAAAAAACAGAAAAAAAABgAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAAAAIEAAAAAAABgAAAAAAAAYAAAAAACAGAAAAAAAgBgAAAAAAEAYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAAAAGAAAAAAAgBgAAAAAAEAYAAAAAACAGAAAAAAAgBgAAAAAAIAYAAAAAABAGAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAACAIEAAAAAAABgAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAgBgAAAAAAIAYAAAAAABAIEAAAAAAABgAAAAAAMAYAAAAAABAGAAAAAAAQCBAAAAAAAAYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAEAYAAAAAABAGAAAAAAAwBgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAMAgQAAAAAAAGAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAMAgQAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAABAIEAAAAAAABgAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAAAAGAAAAAAAACBAAAAAAAAgQAAAAAAAA== + tiles: gQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAIEAAAAAAAAkAAAAAAIAJAAAAAADAIEAAAAAAAAlAAAAAAAAJQAAAAABACUAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAABACUAAAAAAAAlAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAAAgQAAAAAAACUAAAAAAQAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAEYAAAAAAAALQAAAAAAAS4AAAAAAAMlAAAAAAIARAAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAACAEQAAAAAAAAlAAAAAAIAKwAAAAAAACsAAAAAAAArAAAAAAIAKwAAAAACACsAAAAAAgArAAAAAAEAGAAAAAAAACUAAAAAAQAtAAAAAAAAJQAAAAADAIEAAAAAAACBAAAAAAAARAAAAAAAAEQAAAAAAACBAAAAAAAAJQAAAAADAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAARgAAAAAAAAtAAAAAAABLgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACUAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAABAGAAAAAAAwAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAACAGAAAAAAAwBgAAAAAAEAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAgBgAAAAAAIAYAAAAAABAIEAAAAAAABgAAAAAAAAYAAAAAADAGAAAAAAAgBgAAAAAAIAYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAEAYAAAAAABAGAAAAAAAQBgAAAAAAMAYAAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAABAGAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAABAIEAAAAAAABgAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAADAIEAAAAAAABgAAAAAAMAYAAAAAABAGAAAAAAAwCBAAAAAAAAYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAIAYAAAAAACAGAAAAAAAQBgAAAAAAMAYAAAAAADAGAAAAAAAQBgAAAAAAIAgQAAAAAAAGAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAACAGAAAAAAAwBgAAAAAAMAgQAAAAAAAGAAAAAAAgBgAAAAAAIAYAAAAAADAIEAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAADAGAAAAAAAwCBAAAAAAAAgQAAAAAAAA== version: 7 -1,-2: ind: -1,-2 - tiles: gQAAAAAAAC4AAAAAAAEuAAAAAAADLgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAC4AAAAAAAItAAAAAAAAJQAAAAABAIEAAAAAAACBAAAAAAAALgAAAAAAAS4AAAAAAAMlAAAAAAAAJQAAAAAAAC4AAAAAAAItAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAy4AAAAAAAIuAAAAAAAALQAAAAAAACsAAAAAAQeBAAAAAAAAgQAAAAAAACAAAAAAAwCBAAAAAAAAJQAAAAAAACUAAAAAAgCBAAAAAAAAJAAAAAAAACQAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAIHgQAAAAAAACAAAAAAAgAgAAAAAAMAIAAAAAACACUAAAAAAQAlAAAAAAMAgQAAAAAAACQAAAAAAAAkAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAEAIAAAAAADAIEAAAAAAAAtAAAAAAAAKwAAAAABB4EAAAAAAAAgAAAAAAMALgAAAAAAAi0AAAAAAAMuAAAAAAADIAAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAAAgAAAAAAIAIAAAAAADACAAAAAAAQCBAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAIAAAAAABAC0AAAAAAAAEAAAAAAAALQAAAAAAACAAAAAAAAAgAAAAAAEAgQAAAAAAAC0AAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAMHIAAAAAACACAAAAAAAgAuAAAAAAABLQAAAAAAAy4AAAAAAAAgAAAAAAMAIAAAAAADACAAAAAAAgAtAAAAAAAAIAAAAAACABQAAAAAAAAUAAAAAAAAFAAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAACByAAAAAAAgAgAAAAAAAAIAAAAAABACAAAAAAAQAgAAAAAAIAIAAAAAABACAAAAAAAgAgAAAAAAAALQAAAAAAACAAAAAAAwAUAAAAAAAAFAAAAAAAABQAAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAQeBAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAEAAgAAAAAAAAIAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAEHRAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAEQAAAAAAAAtAAAAAAAAGAAAAAAAACQAAAAAAwAkAAAAAAIAJAAAAAADAIEAAAAAAAAtAAAAAAAAKwAAAAACBy0AAAAAAAAuAAAAAAADLQAAAAAAAC4AAAAAAAIuAAAAAAACLQAAAAAAAy0AAAAAAAAuAAAAAAACLgAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAACQAAAAAAgCBAAAAAAAALQAAAAAAACsAAAAAAgcuAAAAAAAALgAAAAAAAS0AAAAAAAAuAAAAAAAALgAAAAAAAi0AAAAAAAMuAAAAAAAALQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAkAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAMHLQAAAAAAAy0AAAAAAAMtAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAAYAAAAAAAAGAAAAAAAACQAAAAAAgAkAAAAAAMAJAAAAAABAIEAAAAAAAAtAAAAAAAAKwAAAAAABy8AAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAAAvAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAACUAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAACQAAAAAAACBAAAAAAAAgQAAAAAAACQAAAAAAgAkAAAAAAMAJQAAAAACACUAAAAAAwAlAAAAAAAAJQAAAAADAC4AAAAAAAEtAAAAAAADgQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAIEAAAAAAAAkAAAAAAIAJAAAAAAAAC8AAAAAAAAkAAAAAAAAJQAAAAAAACUAAAAAAQAlAAAAAAEAJQAAAAAAACUAAAAAAQAlAAAAAAIAJQAAAAACAA== + tiles: GAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAC4AAAAAAAItAAAAAAAAJQAAAAABABgAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAABHAAAAAAAARwAAAAAAAC4AAAAAAAItAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAy4AAAAAAAIuAAAAAAAALQAAAAAAACsAAAAAAAeBAAAAAAAAgQAAAAAAACAAAAAAAQCBAAAAAAAARwAAAAAAAEcAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAIHgQAAAAAAACAAAAAAAQAgAAAAAAEAIAAAAAADAEcAAAAAAABHAAAAAAAAgQAAAAAAACAAAAAAAgAgAAAAAAIAgQAAAAAAACAAAAAAAQAgAAAAAAMAIAAAAAACAIEAAAAAAAAtAAAAAAAAKwAAAAABB4EAAAAAAAAgAAAAAAIALgAAAAAAAi0AAAAAAAMuAAAAAAADIAAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAAAgAAAAAAMAIAAAAAADACAAAAAAAQCBAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAIAAAAAABAC0AAAAAAAAEAAAAAAAALQAAAAAAACAAAAAAAQAgAAAAAAEAgQAAAAAAAC0AAAAAAAAZAAAAAAEAGQAAAAACABkAAAAAAgAZAAAAAAEAgQAAAAAAAC0AAAAAAAArAAAAAAIHIAAAAAADACAAAAAAAQAuAAAAAAABLQAAAAAAAy4AAAAAAAAgAAAAAAMAIAAAAAACACAAAAAAAQAtAAAAAAAAHgAAAAAAABkAAAAAAQAZAAAAAAEAGQAAAAACAIEAAAAAAAAtAAAAAAAAKwAAAAABByAAAAAAAAAgAAAAAAMAIAAAAAABACAAAAAAAAAgAAAAAAMAIAAAAAACACAAAAAAAwAgAAAAAAMALQAAAAAAAB4AAAAAAAAZAAAAAAIAGQAAAAAAABkAAAAAAwCBAAAAAAAALQAAAAAAACsAAAAAAQeBAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAAAAgAAAAAAAAIAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAEHRAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAEQAAAAAAAAtAAAAAAAAGAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAACBy0AAAAAAAAuAAAAAAADLQAAAAAAAC4AAAAAAAIuAAAAAAACLQAAAAAAAy0AAAAAAAAuAAAAAAACLgAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAB4AAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAgcuAAAAAAAALgAAAAAAAS0AAAAAAAAuAAAAAAAALgAAAAAAAi0AAAAAAAMuAAAAAAAALQAAAAAAABgAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAeAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAEHLQAAAAAAAy0AAAAAAAMtAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAAYAAAAAAAAGAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAADBy8AAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAAAvAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAACUAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAACQAAAAAAgCBAAAAAAAAgQAAAAAAACQAAAAAAwAkAAAAAAMAJQAAAAACACUAAAAAAAAlAAAAAAIAJQAAAAAAAC4AAAAAAAEtAAAAAAADgQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAIEAAAAAAAAkAAAAAAEAJAAAAAACAC8AAAAAAAAkAAAAAAMAJQAAAAADACUAAAAAAgAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAABAA== version: 7 0,-2: ind: 0,-2 - tiles: KwAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAABAC4AAAAAAAKBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAABgAAAAAAAAYAAAAAADAGAAAAAAAABgAAAAAAIAYAAAAAABAGAAAAAAAgAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAgQAAAAAAAG8AAAAAAABgAAAAAAEAYAAAAAADAGAAAAAAAQBgAAAAAAMAYAAAAAABAGAAAAAAAABgAAAAAAIALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAADAGAAAAAAAgCBAAAAAAAAYAAAAAABAGAAAAAAAwBgAAAAAAAAYAAAAAADABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAMAYAAAAAACAGAAAAAAAABgAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAABAGAAAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAgBgAAAAAAAAYAAAAAACAGAAAAAAAABgAAAAAAMAYAAAAAACAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgAVAAAAAAAAFQAAAAABABUAAAAAAwBgAAAAAAMAYAAAAAADAGAAAAAAAwAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAMAFQAAAAACABUAAAAAAAAVAAAAAAIAYAAAAAADAGAAAAAAAgBgAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAAAYAAAAAADAGAAAAAAAgCBAAAAAAAAYAAAAAABABUAAAAAAAAVAAAAAAMAFQAAAAACAGAAAAAAAAAyAAAAAAAAMgAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAADAGAAAAAAAQBgAAAAAAMAgQAAAAAAAGAAAAAAAQBgAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAEAgQAAAAAAAIEAAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAIAYAAAAAACAGAAAAAAAQBgAAAAAAMAYAAAAAABAGAAAAAAAABgAAAAAAMALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAAAAGAAAAAAAwCBAAAAAAAAYAAAAAABAGAAAAAAAwBgAAAAAAMAYAAAAAAAAGAAAAAAAABgAAAAAAMAYAAAAAADAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAAAJQAAAAABACUAAAAAAACBAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAYAAAAAADAIEAAAAAAABgAAAAAAIAYAAAAAADAGAAAAAAAQBgAAAAAAAAYAAAAAACAIEAAAAAAABgAAAAAAEAJQAAAAACAIEAAAAAAABEAAAAAAAARAAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAADAGAAAAAAAQBgAAAAAAIAYAAAAAABAGAAAAAAAgBgAAAAAAMAYAAAAAADAG8AAAAAAACBAAAAAAAAYAAAAAADAA== + tiles: KwAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAABgAAAAAAMAYAAAAAACAC4AAAAAAAKBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAABgAAAAAAAAYAAAAAABAGAAAAAAAwBgAAAAAAIAYAAAAAAAAGAAAAAAAgAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAgQAAAAAAAG8AAAAAAABgAAAAAAIAYAAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAACAGAAAAAAAQBgAAAAAAMALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAIAYAAAAAAAAIEAAAAAAABgAAAAAAAAYAAAAAACAGAAAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAAAYAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAAAAGAAAAAAAwBgAAAAAAEAYAAAAAADAGAAAAAAAwBgAAAAAAEAgQAAAAAAAGAAAAAAAgBgAAAAAAAAYAAAAAAAAGAAAAAAAwAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAgBgAAAAAAEAYAAAAAADAGAAAAAAAQBgAAAAAAAAYAAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgAVAAAAAAEAFQAAAAAAABUAAAAAAwBgAAAAAAIAYAAAAAADAGAAAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAEAFQAAAAACABUAAAAAAwAVAAAAAAAAYAAAAAADAGAAAAAAAgBgAAAAAAIALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAADAGAAAAAAAACBAAAAAAAAYAAAAAACABUAAAAAAgAVAAAAAAMAFQAAAAACAGAAAAAAAAAyAAAAAAAAMgAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAABAGAAAAAAAwBgAAAAAAEAgQAAAAAAAGAAAAAAAABgAAAAAAIAYAAAAAACAGAAAAAAAwBgAAAAAAEAgQAAAAAAAIEAAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAABAGAAAAAAAwBgAAAAAAIAYAAAAAACAGAAAAAAAQBgAAAAAAEAYAAAAAADAGAAAAAAAQBgAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAADAGAAAAAAAgCBAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAMAYAAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAACAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAAAJQAAAAABACUAAAAAAwCBAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAYAAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAAAAGAAAAAAAgBgAAAAAAAAYAAAAAABAIEAAAAAAABgAAAAAAEAJQAAAAACAIEAAAAAAABEAAAAAAAARAAAAAAAAGAAAAAAAgBgAAAAAAIAYAAAAAACAGAAAAAAAABgAAAAAAEAYAAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAABAG8AAAAAAACBAAAAAAAAYAAAAAADAA== version: 7 1,-1: ind: 1,-1 - tiles: YAAAAAACAGAAAAAAAABgAAAAAAMAYAAAAAABAGAAAAAAAwBgAAAAAAMAYAAAAAABAIEAAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAAMtAAAAAAAAgQAAAAAAACkAAAAAAAApAAAAAAEAKQAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAi4AAAAAAAArAAAAAAADLQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACkAAAAAAwAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAAlAAAAAAIAJQAAAAAAAC4AAAAAAAEtAAAAAAADLgAAAAAAA4EAAAAAAACBAAAAAAAAKwAAAAAAACsAAAAAAwArAAAAAAMAKwAAAAADACsAAAAAAAArAAAAAAAAKwAAAAACACUAAAAAAQAlAAAAAAIAJQAAAAADACUAAAAAAAArAAAAAAAAJQAAAAAAAC0AAAAAAACBAAAAAAAAKQAAAAADAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAAgQAAAAAAACkAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAgCBAAAAAAAAIAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: YAAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAACAGAAAAAAAQBgAAAAAAMAYAAAAAACAIEAAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAAMtAAAAAAAAgQAAAAAAACkAAAAAAQApAAAAAAMAKQAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAi4AAAAAAAArAAAAAAADLQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACkAAAAAAQAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAAlAAAAAAAAJQAAAAABAC4AAAAAAAEtAAAAAAADLgAAAAAAA4EAAAAAAACBAAAAAAAAKwAAAAAAACsAAAAAAQArAAAAAAAAKwAAAAABACsAAAAAAgArAAAAAAMAKwAAAAACACUAAAAAAQAlAAAAAAEAJQAAAAADACUAAAAAAQArAAAAAAEAJQAAAAADAC0AAAAAAACBAAAAAAAAKQAAAAABAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAAgQAAAAAAACkAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAACBAAAAAAAAIAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 1,-2: ind: 1,-2 - tiles: YAAAAAAAAGAAAAAAAABgAAAAAAMAYAAAAAAAAGAAAAAAAABgAAAAAAAAgQAAAAAAAC0AAAAAAAAlAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAKQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAADAGAAAAAAAABgAAAAAAAAYAAAAAAAAIEAAAAAAAAuAAAAAAABLQAAAAAAAy4AAAAAAACBAAAAAAAAKQAAAAADACkAAAAAAwApAAAAAAAAJQAAAAABACUAAAAAAwBgAAAAAAAAYAAAAAABAGAAAAAAAgBgAAAAAAAAYAAAAAADAGAAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAACkAAAAAAwAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAACAGAAAAAAAgBgAAAAAAIAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAApAAAAAAEAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAACAGAAAAAAAQBgAAAAAAMAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAKQAAAAACABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADgQAAAAAAAIEAAAAAAAApAAAAAAEAKQAAAAABACUAAAAAAwAlAAAAAAIAgQAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAADABYAAAAAAwCBAAAAAAAAgQAAAAAAAC4AAAAAAAItAAAAAAADLQAAAAAAAy4AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAAAAGAAAAAAAgBgAAAAAAIAgQAAAAAAAIEAAAAAAAAtAAAAAAAALgAAAAAAAi4AAAAAAAMuAAAAAAABLQAAAAAAAykAAAAAAgApAAAAAAIALQAAAAAAAy0AAAAAAANgAAAAAAEAYAAAAAADAGAAAAAAAwBgAAAAAAAAYAAAAAACAGAAAAAAAwBgAAAAAAAAYAAAAAAAAC4AAAAAAAEuAAAAAAAAJQAAAAACACsAAAAAAgArAAAAAAIAKwAAAAACACsAAAAAAwArAAAAAAMAgQAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAABAGAAAAAAAwBgAAAAAAMAYAAAAAAAAGAAAAAAAQAtAAAAAAADLgAAAAAAAysAAAAAAwMuAAAAAAACLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAA4EAAAAAAABgAAAAAAAAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAy0AAAAAAAArAAAAAAEDLQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAABgAAAAAAEAYAAAAAADAGAAAAAAAwBgAAAAAAEAYAAAAAAAAGAAAAAAAwBgAAAAAAEAgQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAAAAy0AAAAAAACBAAAAAAAAKQAAAAAAACkAAAAAAQApAAAAAAIAYAAAAAABAGAAAAAAAABgAAAAAAIAYAAAAAACAGAAAAAAAABgAAAAAAEAYAAAAAACAGAAAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAwMtAAAAAAAAGAAAAAAAACkAAAAAAAApAAAAAAAAKQAAAAABAGAAAAAAAABgAAAAAAIAYAAAAAABAGAAAAAAAQBgAAAAAAMAYAAAAAADAGAAAAAAAgBgAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAIDLQAAAAAAABgAAAAAAAApAAAAAAIAKQAAAAAAACkAAAAAAABgAAAAAAIAYAAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAABAGAAAAAAAABgAAAAAAIAYAAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAADAy0AAAAAAACBAAAAAAAAKQAAAAAAACkAAAAAAAApAAAAAAEAYAAAAAABAGAAAAAAAQBgAAAAAAMAYAAAAAADAGAAAAAAAABgAAAAAAMAYAAAAAAAAGAAAAAAAQCBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAAApAAAAAAMAKQAAAAACAA== + tiles: YAAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAACAGAAAAAAAgBgAAAAAAEAgQAAAAAAAC0AAAAAAAAlAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAKQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAMAYAAAAAADAGAAAAAAAgBgAAAAAAIAYAAAAAADAIEAAAAAAAAuAAAAAAABLQAAAAAAAy4AAAAAAACBAAAAAAAAKQAAAAADACkAAAAAAwApAAAAAAAAJQAAAAADACUAAAAAAABgAAAAAAMAYAAAAAABAGAAAAAAAgBgAAAAAAMAYAAAAAAAAGAAAAAAAwCBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAACkAAAAAAQAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAABAGAAAAAAAQBgAAAAAAIAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAApAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAEAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAKQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADgQAAAAAAAIEAAAAAAAApAAAAAAEAKQAAAAAAACUAAAAAAQAlAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAACABYAAAAAAgCBAAAAAAAAgQAAAAAAAC4AAAAAAAItAAAAAAADLQAAAAAAAy4AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAAAYAAAAAABAGAAAAAAAABgAAAAAAMAgQAAAAAAAIEAAAAAAAAeAAAAAAAALgAAAAAAAi4AAAAAAAMuAAAAAAABHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAC0AAAAAAANgAAAAAAEAYAAAAAACAGAAAAAAAwBgAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAMAHgAAAAAAAC4AAAAAAAEuAAAAAAAAJQAAAAACACsAAAAAAQArAAAAAAIAKwAAAAAAACsAAAAAAwArAAAAAAIAgQAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAACAGAAAAAAAQBgAAAAAAIAYAAAAAAAAB4AAAAAAAAtAAAAAAADLgAAAAAAAysAAAAAAwMuAAAAAAACLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAA4EAAAAAAABgAAAAAAMAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAy0AAAAAAAArAAAAAAADLQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAABgAAAAAAMAYAAAAAACAGAAAAAAAABgAAAAAAEAYAAAAAADAGAAAAAAAQBgAAAAAAEAgQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAACAy0AAAAAAACBAAAAAAAAKQAAAAAAACkAAAAAAQApAAAAAAMAYAAAAAABAGAAAAAAAABgAAAAAAAAYAAAAAACAGAAAAAAAgBgAAAAAAAAYAAAAAABAGAAAAAAAQCBAAAAAAAALQAAAAAAACsAAAAAAgMtAAAAAAAAGAAAAAAAACkAAAAAAwApAAAAAAIAKQAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAABAGAAAAAAAQBgAAAAAAIAYAAAAAACAGAAAAAAAQBgAAAAAAIAgQAAAAAAAC0AAAAAAAArAAAAAAIDLQAAAAAAABgAAAAAAAApAAAAAAEAKQAAAAAAACkAAAAAAABgAAAAAAEAYAAAAAACAGAAAAAAAwBgAAAAAAEAYAAAAAADAGAAAAAAAABgAAAAAAAAYAAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAADAy0AAAAAAACBAAAAAAAAKQAAAAACACkAAAAAAgApAAAAAAEAYAAAAAADAGAAAAAAAwBgAAAAAAMAYAAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAACAGAAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAAApAAAAAAEAKQAAAAACAA== version: 7 0,-3: ind: 0,-3 - tiles: IAAAAAACAAMAAAAAAAADAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAAIAAAAAAAACUAAAAAAQAlAAAAAAIAJQAAAAACACUAAAAAAAAlAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAcAAAAAAAADAAAAAAAAAwAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAALgAAAAAAAi0AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAi4AAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADgQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADLQAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAYAAAAAAAAJAAAAAABABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAgQAAAAAAAC0AAAAAAAAlAAAAAAEALQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAIEAAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAAABy0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAS4AAAAAAAOBAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAuAAAAAAABLQAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAEHLQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAAKwAAAAACBy4AAAAAAAEYAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADKwAAAAABACsAAAAAAAArAAAAAAAAKwAAAAABACUAAAAAAQArAAAAAAIAGAAAAAAAACsAAAAAAgArAAAAAAEAKwAAAAAAACsAAAAAAgArAAAAAAAAKwAAAAABACsAAAAAAgArAAAAAAMAKwAAAAAAAC4AAAAAAAItAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAxgAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAABAA== + tiles: IAAAAAACAAMAAAAAAAADAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAAIAAAAAAAACUAAAAAAAAlAAAAAAIAJQAAAAACACUAAAAAAwAlAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAcAAAAAAAADAAAAAAAAAwAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAALgAAAAAAAi0AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAi4AAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAgQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAgQAAAAAAAC0AAAAAAAAlAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAIEAAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAS4AAAAAAAOBAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAuAAAAAAABLQAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAAHLQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAAKwAAAAADBy4AAAAAAAEYAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADKwAAAAAAACsAAAAAAAArAAAAAAAAKwAAAAAAACUAAAAAAwArAAAAAAMAGAAAAAAAACsAAAAAAgArAAAAAAEAKwAAAAAAACsAAAAAAwArAAAAAAMAKwAAAAADACsAAAAAAgArAAAAAAEAKwAAAAACAC4AAAAAAAItAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAxgAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAACAA== version: 7 1,-3: ind: 1,-3 - tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAYAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAADFwAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAJQAAAAABACUAAAAAAAAlAAAAAAMAJQAAAAACACUAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAS4AAAAAAAOBAAAAAAAAIAAAAAAAACsAAAAAAgAgAAAAAAMAgQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAADACUAAAAAAgAlAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAIHLQAAAAAAABgAAAAAAAAlAAAAAAIAJQAAAAADACUAAAAAAQAlAAAAAAIAJQAAAAADAC4AAAAAAAItAAAAAAADLgAAAAAAA4EAAAAAAACBAAAAAAAALQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAAABy0AAAAAAAAYAAAAAAAAJQAAAAACACUAAAAAAQAlAAAAAAEAJQAAAAACACUAAAAAAQAtAAAAAAAABAAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAQctAAAAAAAAgQAAAAAAACUAAAAAAQAlAAAAAAEAJQAAAAAAACUAAAAAAQAlAAAAAAIALgAAAAAAAS0AAAAAAAMuAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAMHLQAAAAAAAIEAAAAAAAAlAAAAAAEAJQAAAAAAACUAAAAAAwAlAAAAAAMAJQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAAABy0AAAAAAACBAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAEAJQAAAAABACUAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAi4AAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAActAAAAAAAAgQAAAAAAACUAAAAAAAAlAAAAAAEAJQAAAAACACUAAAAAAwAlAAAAAAIALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAAXAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAQAAAAAAAAEAAAAAADABAAAAAAAgAQAAAAAAIAJQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAADBy0AAAAAAACBAAAAAAAAEAAAAAABABAAAAAAAAAQAAAAAAIAEAAAAAAAACUAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMYAAAAAAAALgAAAAAAACsAAAAAAActAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAKwAAAAACACsAAAAAAwArAAAAAAEAKwAAAAAAACsAAAAAAgArAAAAAAEAGAAAAAAAACsAAAAAAAAlAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAxgAAAAAAAAuAAAAAAADKwAAAAACBy0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAOBAAAAAAAALQAAAAAAACsAAAAAAQctAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAYAAAAAAAAGAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAIHLQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== + tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAYAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAADFwAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAS4AAAAAAAOBAAAAAAAAIAAAAAABACsAAAAAAAAgAAAAAAIAgQAAAAAAAG8AAAAAAAAlAAAAAAMAJQAAAAACACUAAAAAAQAlAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAAHLQAAAAAAABgAAAAAAABvAAAAAAAAJQAAAAACACUAAAAAAAAlAAAAAAEAJQAAAAADAAkAAAAAAAAJAAAAAAAACQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAAAYAAAAAAAAbwAAAAAAACUAAAAAAgAlAAAAAAMAJQAAAAAAACUAAAAAAAAJAAAAAAAABAAAAAAAAAkAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAActAAAAAAAAgQAAAAAAAG8AAAAAAAAlAAAAAAMAJQAAAAACACUAAAAAAQAlAAAAAAMACQAAAAAAAAkAAAAAAAAJAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAAHLQAAAAAAAIEAAAAAAABvAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAACBAAAAAAAAbwAAAAAAACUAAAAAAAAlAAAAAAIAJQAAAAACACUAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAi4AAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAActAAAAAAAAgQAAAAAAAG8AAAAAAAAlAAAAAAMAJQAAAAABACUAAAAAAQAlAAAAAAEALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAAXAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAQAAAAAAAAEAAAAAABABAAAAAAAAAQAAAAAAIAJQAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAACBAAAAAAAAEAAAAAABABAAAAAAAAAQAAAAAAMAEAAAAAABAG8AAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMYAAAAAAAALgAAAAAAACsAAAAAAQctAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAKwAAAAACACsAAAAAAQArAAAAAAEAKwAAAAADACsAAAAAAAArAAAAAAMAGAAAAAAAACsAAAAAAQAlAAAAAAIALQAAAAAAAC0AAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAxgAAAAAAAAuAAAAAAADKwAAAAACBy0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAOBAAAAAAAALQAAAAAAACsAAAAAAwctAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAYAAAAAADAGAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAAHLQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== version: 7 -1,-3: ind: -1,-3 - tiles: gQAAAAAAAC0AAAAAAAArAAAAAAAHLQAAAAAAAIEAAAAAAABvAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAIAIAAAAAAAACAAAAAAAgCBAAAAAAAAIAAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAAABy0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAwAgAAAAAAMALQAAAAAAACsAAAAAAQctAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAAAgAAAAAAIAgQAAAAAAAC0AAAAAAAArAAAAAAIHLQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAIAAAAAACAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAJAAAAAABACQAAAAAAwAkAAAAAAIAJAAAAAABACQAAAAAAQCBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAwctAAAAAAAAgQAAAAAAACQAAAAAAAAkAAAAAAEAJAAAAAAAACQAAAAAAwAkAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAIHLQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAEAgQAAAAAAAIEAAAAAAAAuAAAAAAACLQAAAAAABy4AAAAAAAOBAAAAAAAAFwAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAAAuAAAAAAABLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAABcAAAAAAAAYAAAAAAAALQAAAAAAACUAAAAAAgArAAAAAAMAJQAAAAAAAC4AAAAAAAItAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAAtAAAAAAAALQAAAAAAACAAAAAAAACBAAAAAAAAGAAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAC4AAAAAAAIuAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAC4AAAAAAAEtAAAAAAAHLgAAAAAAAxgAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAAAuAAAAAAABGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAuAAAAAAACLQAAAAAABy4AAAAAAAWBAAAAAAAALQAAAAAAAC0AAAAAAAAuAAAAAAABLQAAAAAAAy0AAAAAAAMYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAALQAAAAAAAC4AAAAAAAEtAAAAAAADgQAAAAAAAC0AAAAAAAAuAAAAAAABLQAAAAAAA4EAAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAJQAAAAABAIEAAAAAAAAuAAAAAAABLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAxgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAtAAAAAAAALQAAAAAAACsAAAAAAAeBAAAAAAAALQAAAAAAAC0AAAAAAAAuAAAAAAABLgAAAAAAAxgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAALQAAAAAAAC0AAAAAAAArAAAAAAAHgQAAAAAAAC0AAAAAAAAuAAAAAAABLgAAAAAAAy4AAAAAAAEtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAAtAAAAAAAAKwAAAAAABw== + tiles: gQAAAAAAAC0AAAAAAAArAAAAAAMHLQAAAAAAAIEAAAAAAAAeAAAAAAAAIAAAAAABACAAAAAAAQAgAAAAAAMAgQAAAAAAACAAAAAAAwAgAAAAAAMAIAAAAAAAACAAAAAAAwCBAAAAAAAAIAAAAAADAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAAAYAAAAAAAALQAAAAAAACsAAAAAAgctAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAALwAAAAAAAIEAAAAAAAAgAAAAAAMAgQAAAAAAAC0AAAAAAAArAAAAAAAHLQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAC8AAAAAAACBAAAAAAAAIAAAAAADAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAwctAAAAAAAAgQAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAIHLQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAFwAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAAAuAAAAAAABLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAxgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAABcAAAAAAAAYAAAAAAAALQAAAAAAACUAAAAAAwArAAAAAAEAJQAAAAADAC4AAAAAAAItAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAxgAAAAAAAAYAAAAAAAAGAAAAAAAACAAAAAAAgCBAAAAAAAAGAAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABvAAAAAAAALQAAAAAABxgAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAuAAAAAAABbwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAbwAAAAAAAC4AAAAAAAEtAAAAAAADGAAAAAAAAIEAAAAAAAAYAAAAAAAALQAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAAAYAAAAAAAAJQAAAAACABgAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABvAAAAAAAALQAAAAAAACsAAAAAAAcYAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAbwAAAAAAAC0AAAAAAAArAAAAAAMHGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAAAtAAAAAAAAKwAAAAABBw== version: 7 -2,-2: ind: -2,-2 - tiles: gQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAACBAAAAAAAAIAAAAAACAAEAAAAAAgAYAAAAAAAAAAAAAAAAAIEAAAAAAAABAAAAAAEAAQAAAAABAAEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAACAAAAAAAAABAAAAAAIAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAAYAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAMHLQAAAAAAAIEAAAAAAAAgAAAAAAEAAQAAAAABAAEAAAAAAgAmAAAAAAIAJgAAAAABABgAAAAAAAAGAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAABgAAAAABABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAvAAAAAAAALQAAAAAAACsAAAAAAgctAAAAAAAAgQAAAAAAACAAAAAAAgAgAAAAAAEAIAAAAAACAAEAAAAAAwABAAAAAAEAAQAAAAABAAYAAAAAAwABAAAAAAMAAQAAAAADAAEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAMHLQAAAAAAACAAAAAAAQAgAAAAAAIALgAAAAAAAi0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAMgAAAAAAIALgAAAAAAA4EAAAAAAAAtAAAAAAAAKwAAAAAABy0AAAAAAACBAAAAAAAAIAAAAAACAC4AAAAAAAEtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAAIAAAAAADAC4AAAAAAAAYAAAAAAAALQAAAAAAACsAAAAAAActAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAMAIAAAAAADACAAAAAAAgAgAAAAAAAAIAAAAAACACAAAAAAAgAgAAAAAAMAIAAAAAACACAAAAAAAwAuAAAAAAADGAAAAAAAAC0AAAAAAAArAAAAAAMHLQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAALQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAARAAAAAAAAEQAAAAAAAAYAAAAAAAARAAAAAAAAC0AAAAAAAAYAAAAAAAALQAAAAAAACsAAAAAAwctAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAC4AAAAAAAItAAAAAAADLQAAAAAAAy4AAAAAAAMuAAAAAAAAGAAAAAAAAC0AAAAAAAArAAAAAAMHLQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAABgAAAAAAAAtAAAAAAAAGAAAAAAAABgAAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAA4EAAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAwctAAAAAAAALQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAGAAAAAAAAEQAAAAAAACBAAAAAAAAIAAAAAACAC0AAAAAAAArAAAAAAMHLQAAAAAAAC0AAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAABEAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAAAtAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAEAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAA== + tiles: gQAAAAAAAIEAAAAAAAAtAAAAAAAAJQAAAAAAAC0AAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAAAAAAAAAAIEAAAAAAAABAAAAAAAAAQAAAAADAAEAAAAAAQAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAB4AAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAAHLQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAeAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAHgAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAvAAAAAAAALQAAAAAAACsAAAAAAgctAAAAAAAAgQAAAAAAACAAAAAAAgAgAAAAAAMAIAAAAAADAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAIHLQAAAAAAACAAAAAAAwAgAAAAAAAALgAAAAAAAi0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAMgAAAAAAAALgAAAAAAA4EAAAAAAAAtAAAAAAAAKwAAAAADBy0AAAAAAACBAAAAAAAAIAAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAAIAAAAAADAC4AAAAAAAAYAAAAAAAALQAAAAAAACsAAAAAAgctAAAAAAAAgQAAAAAAACAAAAAAAwAgAAAAAAIAIAAAAAABACAAAAAAAwAgAAAAAAEAIAAAAAACACAAAAAAAwAgAAAAAAAAIAAAAAABACAAAAAAAwAuAAAAAAADGAAAAAAAAC0AAAAAAAArAAAAAAMHLQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAALQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAAABy0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAARAAAAAAAAEQAAAAAAAAYAAAAAAAARAAAAAAAAC0AAAAAAAAYAAAAAAAALQAAAAAAACsAAAAAAActAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAC4AAAAAAAItAAAAAAADLQAAAAAAAy4AAAAAAAMuAAAAAAAAGAAAAAAAAC0AAAAAAAArAAAAAAAHLQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAABgAAAAAAAAtAAAAAAAAGAAAAAAAABgAAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAxgAAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAwctAAAAAAAALQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAGAAAAAAAAEQAAAAAAAAYAAAAAAAAGAAAAAAAAC0AAAAAAAArAAAAAAAHLQAAAAAAAC0AAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAABEAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAACBy0AAAAAAAAtAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAEAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAA== version: 7 -2,-1: ind: -2,-1 - tiles: IAAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAAABy0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAABEAAAAAAAARAAAAAAAACAAAAAAAgAgAAAAAAIALQAAAAAAACsAAAAAAgctAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAIALgAAAAAAAi4AAAAAAAArAAAAAAAHLgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADGAAAAAAAABgAAAAAAAAtAAAAAAADLQAAAAAAAy4AAAAAAAAlAAAAAAMAJQAAAAADACsAAAAAAgArAAAAAAIAKwAAAAAAACsAAAAAAwArAAAAAAEAKwAAAAACACsAAAAAAAArAAAAAAEAKwAAAAADABgAAAAAAAAYAAAAAAAAKwAAAAACACsAAAAAAQArAAAAAAMAJQAAAAACAC4AAAAAAAItAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMYAAAAAAAAGAAAAAAAAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABAIEAAAAAAAAgAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAACBAAAAAAAAIAAAAAACAIEAAAAAAACBAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAgAAAAAAMAgQAAAAAAACAAAAAAAwCBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: HgAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAABEAAAAAAAARAAAAAAAAB4AAAAAAAAeAAAAAAAALQAAAAAAACsAAAAAAActAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAALgAAAAAAAi4AAAAAAAArAAAAAAIHLgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAAlAAAAAAAAJQAAAAACACsAAAAAAQArAAAAAAAAKwAAAAAAACsAAAAAAgArAAAAAAIAKwAAAAACACsAAAAAAwArAAAAAAMAKwAAAAAAACsAAAAAAQArAAAAAAEAKwAAAAACACsAAAAAAwArAAAAAAMAJQAAAAABAC4AAAAAAAItAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -2,-3: ind: -2,-3 - tiles: gQAAAAAAAIEAAAAAAAAlAAAAAAMAAQAAAAABACUAAAAAAwAlAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAADACAAAAAAAAAgAAAAAAMAIAAAAAACAIEAAAAAAACBAAAAAAAALwAAAAAAAAAAAAAAAACBAAAAAAAAJQAAAAADAAEAAAAAAgAlAAAAAAEAJQAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAwAgAAAAAAAAIAAAAAAAACAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAgQAAAAAAACUAAAAAAwABAAAAAAAAJQAAAAACACUAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAMAIAAAAAAAACAAAAAAAwAgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAIEAAAAAAAAlAAAAAAMAAQAAAAAAACUAAAAAAAAlAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAAAACAAAAAAAgAgAAAAAAEAIAAAAAACAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAAAAAEAAAAAAwAlAAAAAAIAJQAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAwAlAAAAAAIAJQAAAAACACUAAAAAAQAgAAAAAAMAgQAAAAAAAIEAAAAAAAAgAAAAAAIAIAAAAAAAACAAAAAAAQAgAAAAAAIAIAAAAAACACAAAAAAAAAgAAAAAAAAGAAAAAAAACUAAAAAAwAlAAAAAAIAJQAAAAACACUAAAAAAAAlAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABACAAAAAAAAAgAAAAAAMAIAAAAAACACAAAAAAAgAgAAAAAAAAIAAAAAADAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAMAIAAAAAABACAAAAAAAAAgAAAAAAMAIAAAAAAAACAAAAAAAwAYAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAMAJQAAAAABAIEAAAAAAAAgAAAAAAIAIAAAAAAAACAAAAAAAwAgAAAAAAMAIAAAAAACACAAAAAAAwAgAAAAAAMAIAAAAAAAACAAAAAAAwAgAAAAAAEAGAAAAAAAABgAAAAAAAAlAAAAAAAAJQAAAAADACUAAAAAAQCBAAAAAAAAIAAAAAADACAAAAAAAwAgAAAAAAIAIAAAAAABACAAAAAAAgAgAAAAAAMAIAAAAAACACAAAAAAAAAgAAAAAAAAIAAAAAABABgAAAAAAAAYAAAAAAAAGAAAAAAAACUAAAAAAgAlAAAAAAAAGAAAAAAAACAAAAAAAwABAAAAAAAAAQAAAAADAAEAAAAAAgABAAAAAAEAAQAAAAABAAYAAAAAAQABAAAAAAAAAQAAAAACAAEAAAAAAQCBAAAAAAAAGAAAAAAAABgAAAAAAAAlAAAAAAMAJQAAAAAAABgAAAAAAAAgAAAAAAIAAQAAAAACABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAABAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAJQAAAAADACUAAAAAAAAYAAAAAAAAIAAAAAADAAEAAAAAAwABAAAAAAMAJgAAAAAAACYAAAAAAgAYAAAAAAAABgAAAAACABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAJQAAAAACACUAAAAAAQAlAAAAAAMAgQAAAAAAACAAAAAAAgABAAAAAAMAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAAYAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAJQAAAAADACUAAAAAAwAlAAAAAAAAJQAAAAABAIEAAAAAAAAgAAAAAAIAAQAAAAADABgAAAAAAAAAAAAAAAAAgQAAAAAAAAEAAAAAAQABAAAAAAMAAQAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAJQAAAAAAAC0AAAAAAACBAAAAAAAAIAAAAAADAAEAAAAAAAAYAAAAAAAAAAAAAAAAAIEAAAAAAAArAAAAAAMAKwAAAAABACsAAAAAAgAYAAAAAAAAGAAAAAAAAA== + tiles: gQAAAAAAAIEAAAAAAAAtAAAAAAACKwAAAAABARgAAAAAAAAtAAAAAAACgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABACAAAAAAAAAgAAAAAAIAIAAAAAADAIEAAAAAAACBAAAAAAAALwAAAAAAAAAAAAAAAACBAAAAAAAALQAAAAAAAisAAAAAAQEYAAAAAAAALQAAAAAAAoEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAIAIAAAAAACACAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAgQAAAAAAAC0AAAAAAAIrAAAAAAEBGAAAAAAAAC0AAAAAAAKBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAIAIAAAAAADACAAAAAAAgAgAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAIEAAAAAAAAtAAAAAAACKwAAAAAAARgAAAAAAAAtAAAAAAACgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABACAAAAAAAgAgAAAAAAMAIAAAAAACAIEAAAAAAAAYAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAisAAAAAAwEYAAAAAAAALQAAAAAAAoEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAC0AAAAAAAIrAAAAAAEBGAAAAAAAAC0AAAAAAAIYAAAAAAAAGAAAAAAAAIEAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAtAAAAAAACKwAAAAAAAS4AAAAAAAIuAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAeAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAHgAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAB4AAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAAAAAAAAAAgQAAAAAAAAEAAAAAAAABAAAAAAMAAQAAAAADABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAACLQAAAAAAAS4AAAAAAAOBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAAAAAAAAAAIEAAAAAAAArAAAAAAIAKwAAAAADACsAAAAAAgAYAAAAAAAAGAAAAAAAAA== version: 7 0,-4: ind: 0,-4 - tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAArAAAAAAIHKwAAAAABB4EAAAAAAAAYAAAAAAAAgQAAAAAAACAAAAAAAgAgAAAAAAIAIAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAKwAAAAABBysAAAAAAQeBAAAAAAAAGAAAAAAAACAAAAAAAQAgAAAAAAIAIAAAAAADACAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAABkAAAAAAACBAAAAAAAAIAAAAAAAACAAAAAAAwAgAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAACAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAgAgAAAAAAAAIAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAGAAAAAAAQAwAAAAAAMAGgAAAAAAACAAAAAAAgAgAAAAAAMAIAAAAAACACAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAEALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAADEAAAAAAgCBAAAAAAAAIAAAAAABACAAAAAAAAAgAAAAAAIAIAAAAAABACAAAAAAAAAgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAAAxAAAAAAMAIAAAAAABACAAAAAAAQAgAAAAAAAAIAAAAAADACAAAAAAAgAgAAAAAAIAIAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAMQAAAAAAAIEAAAAAAAAgAAAAAAMAIAAAAAABACAAAAAAAgAgAAAAAAIAIAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAADEAAAAAAwCBAAAAAAAAgQAAAAAAACAAAAAAAwCBAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAALgAAAAAAAi0AAAAAAAMtAAAAAAADGAAAAAAAAC4AAAAAAAAtAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAyAAAAAAAgAgAAAAAAAAIAAAAAACAC0AAAAAAAAlAAAAAAAAKwAAAAABABgAAAAAAAArAAAAAAAAKwAAAAAAACsAAAAAAgArAAAAAAIAKwAAAAADACsAAAAAAAArAAAAAAIAKwAAAAADACsAAAAAAQAgAAAAAAEAIAAAAAADACAAAAAAAQAtAAAAAAAALQAAAAAAAC4AAAAAAAIYAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAAMAAAAAAAADAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAAAlAAAAAAMAJQAAAAABACUAAAAAAQAlAAAAAAIAJQAAAAAAAIEAAAAAAAAgAAAAAAAALgAAAAAAAi0AAAAAAAMDAAAAAAAAAwAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAAAgAAAAAAIAJQAAAAABACAAAAAAAAAgAAAAAAMAIAAAAAADACUAAAAAAACBAAAAAAAAIAAAAAADAC0AAAAAAAAlAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAACUAAAAAAQAgAAAAAAEAIAAAAAACACAAAAAAAQAlAAAAAAAAgQAAAAAAACAAAAAAAAAuAAAAAAABLQAAAAAAAw== + tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAArAAAAAAMHKwAAAAACB4EAAAAAAAAYAAAAAAAAgQAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAACAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAKwAAAAACBysAAAAAAgeBAAAAAAAAGAAAAAAAACAAAAAAAAAgAAAAAAEAIAAAAAAAACAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAABkAAAAAAwCBAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAAAgAAAAAAEAIAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAABvAAAAAAAAbwAAAAAAACAAAAAAAwAgAAAAAAIAIAAAAAABACAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAG8AAAAAAACBAAAAAAAAIAAAAAAAACAAAAAAAgAgAAAAAAIAIAAAAAACACAAAAAAAAAgAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAABvAAAAAAAAIAAAAAADACAAAAAAAgAgAAAAAAEAIAAAAAADACAAAAAAAwAgAAAAAAAAIAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAbwAAAAAAAIEAAAAAAAAgAAAAAAAAIAAAAAADACAAAAAAAQAgAAAAAAAAIAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAG8AAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAgCBAAAAAAAAIAAAAAACACAAAAAAAgAgAAAAAAAALgAAAAAAAi0AAAAAAAMtAAAAAAADGAAAAAAAAC4AAAAAAAAtAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAyAAAAAAAAAgAAAAAAEAIAAAAAACAC0AAAAAAAAlAAAAAAEAKwAAAAAAABgAAAAAAAArAAAAAAEAKwAAAAACACsAAAAAAQArAAAAAAEAKwAAAAACACsAAAAAAwArAAAAAAMAKwAAAAADACsAAAAAAwAgAAAAAAIAIAAAAAADACAAAAAAAQAtAAAAAAAALQAAAAAAAC4AAAAAAAIYAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAAMAAAAAAAADAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAAAlAAAAAAIAJQAAAAADACUAAAAAAwAlAAAAAAIAJQAAAAAAAIEAAAAAAAAgAAAAAAEALgAAAAAAAi0AAAAAAAMDAAAAAAAAAwAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAAAgAAAAAAIAJQAAAAAAACAAAAAAAgAgAAAAAAMAIAAAAAABACUAAAAAAwCBAAAAAAAAIAAAAAABAC0AAAAAAAAlAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAACUAAAAAAgAgAAAAAAMAIAAAAAABACAAAAAAAAAlAAAAAAEAgQAAAAAAACAAAAAAAwAuAAAAAAABLQAAAAAAAw== version: 7 1,-4: ind: 1,-4 - tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAMHLQAAAAAAAIEAAAAAAAAgAAAAAAMAIAAAAAABAIEAAAAAAAAKAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAADBy0AAAAAAACBAAAAAAAAIAAAAAABACAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAACACsAAAAAAQAgAAAAAAIAgQAAAAAAACAAAAAAAwAgAAAAAAIAIAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAgAAAAAAMAIAAAAAADACAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAGAAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAItAAAAAAADLgAAAAAAABgAAAAAAAAuAAAAAAABLQAAAAAAAy4AAAAAAAOBAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAIuAAAAAAAAGAAAAAAAABgAAAAAAAAlAAAAAAEAGAAAAAAAABgAAAAAAAAuAAAAAAABLgAAAAAAA4EAAAAAAACBAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAIuAAAAAAAAGAAAAAAAABgAAAAAAAAuAAAAAAACLQAAAAAAAy4AAAAAAAMYAAAAAAAAGAAAAAAAAC4AAAAAAAEuAAAAAAADgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAGAAAAAAAABgAAAAAAAAuAAAAAAACLgAAAAAAAGAAAAAAAQAuAAAAAAABLgAAAAAAAxgAAAAAAAAYAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABABgAAAAAAAAtAAAAAAADLgAAAAAAABgAAAAAAAAuAAAAAAACLgAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAC4AAAAAAAEuAAAAAAADGAAAAAAAAC4AAAAAAAEtAAAAAAADGAAAAAAAACsAAAAAAgAYAAAAAAAAGAAAAAAAABgAAAAAAAAlAAAAAAAALQAAAAAAAGAAAAAAAAAYAAAAAAAAEwAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAACUAAAAAAgAYAAAAAAAAGAAAAAAAABgAAAAAAAAgAAAAAAEAGAAAAAAAAC0AAAAAAAMuAAAAAAADGAAAAAAAAC4AAAAAAAEuAAAAAAADGAAAAAAAABgAAAAAAAAYAAAAAAAALgAAAAAAAi4AAAAAAAAYAAAAAAAALgAAAAAAAi0AAAAAAAMYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAABgAAAAAAAAYAAAAAAAALgAAAAAAAS4AAAAAAANgAAAAAAAALgAAAAAAAi4AAAAAAAAYAAAAAAAAGAAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMuAAAAAAADgQAAAAAAAC4AAAAAAAEuAAAAAAADGAAAAAAAABgAAAAAAAAuAAAAAAABLQAAAAAAAy4AAAAAAAAYAAAAAAAAGAAAAAAAAC4AAAAAAAIuAAAAAAAAgQAAAAAAACAAAAAAAwAlAAAAAAIALQAAAAAAAIEAAAAAAAAuAAAAAAADLgAAAAAAAS4AAAAAAAMYAAAAAAAAGAAAAAAAACUAAAAAAgAYAAAAAAAAGAAAAAAAAC4AAAAAAAIuAAAAAAAALgAAAAAAAoEAAAAAAAAgAAAAAAIALQAAAAAAAy4AAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAAuAAAAAAABLQAAAAAAAy4AAAAAAAMYAAAAAAAALgAAAAAAAi0AAAAAAAMuAAAAAAAALgAAAAAAAi4AAAAAAACBAAAAAAAAIAAAAAABAA== + tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAIHLQAAAAAAAIEAAAAAAAAgAAAAAAEAIAAAAAADAIEAAAAAAAAKAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAAABy0AAAAAAACBAAAAAAAAIAAAAAACACAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABACsAAAAAAAAgAAAAAAEAgQAAAAAAACAAAAAAAgAgAAAAAAMAIAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAgAAAAAAEAIAAAAAACACAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAGAAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAItAAAAAAADLgAAAAAAABgAAAAAAAAuAAAAAAABLQAAAAAAAy4AAAAAAAOBAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAIuAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAuAAAAAAABLgAAAAAAA4EAAAAAAACBAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAIuAAAAAAAAGAAAAAAAABgAAAAAAAAuAAAAAAACLQAAAAAAAy4AAAAAAAMYAAAAAAAAGAAAAAAAAC4AAAAAAAEuAAAAAAADgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAGAAAAAAAABgAAAAAAAAuAAAAAAACHgAAAAAAAB4AAAAAAAAeAAAAAAAALgAAAAAAAxgAAAAAAAAYAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAADABgAAAAAAAAtAAAAAAADLgAAAAAAABgAAAAAAAAuAAAAAAACHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAAAuAAAAAAADGAAAAAAAAC4AAAAAAAEtAAAAAAADGAAAAAAAACsAAAAAAwAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAALQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAgAAAAAAMAGAAAAAAAAC0AAAAAAAMuAAAAAAADGAAAAAAAAC4AAAAAAAEeAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAC4AAAAAAAAYAAAAAAAALgAAAAAAAi0AAAAAAAMYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAABgAAAAAAAAYAAAAAAAALgAAAAAAAR4AAAAAAAAeAAAAAAAAHgAAAAAAAC4AAAAAAAAYAAAAAAAAGAAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMuAAAAAAADgQAAAAAAAC4AAAAAAAEuAAAAAAADGAAAAAAAABgAAAAAAAAuAAAAAAABLQAAAAAAAy4AAAAAAAAYAAAAAAAAGAAAAAAAAC4AAAAAAAIuAAAAAAAAgQAAAAAAACAAAAAAAAAlAAAAAAAALQAAAAAAAIEAAAAAAAAuAAAAAAADLgAAAAAAAS4AAAAAAAMYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAC4AAAAAAAIuAAAAAAAALgAAAAAAAoEAAAAAAAAgAAAAAAEALQAAAAAAAy4AAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAAuAAAAAAABLQAAAAAAAy4AAAAAAAMYAAAAAAAALgAAAAAAAi0AAAAAAAMuAAAAAAAALgAAAAAAAi4AAAAAAACBAAAAAAAAIAAAAAABAA== version: 7 -1,-4: ind: -1,-4 - tiles: gQAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAACBAAAAAAAAIAAAAAADACAAAAAAAwAgAAAAAAEAIAAAAAABACAAAAAAAAAgAAAAAAMAIAAAAAACACAAAAAAAwAgAAAAAAAAIAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAMAIAAAAAACACAAAAAAAgAgAAAAAAIAIAAAAAADACAAAAAAAgAgAAAAAAIAIAAAAAADACAAAAAAAABgAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAAAYAAAAAABAIEAAAAAAAAgAAAAAAEAIAAAAAACACAAAAAAAQAgAAAAAAMAIAAAAAACACAAAAAAAwAgAAAAAAIAIAAAAAADACAAAAAAAwAgAAAAAAEAYAAAAAADAGAAAAAAAgBgAAAAAAIAYAAAAAACAGAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAAAAGAAAAAAAQBgAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAAAYAAAAAADAGAAAAAAAABgAAAAAAAAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAcAAAAAAAAgAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAAIAAAAAABAC0AAAAAAAMuAAAAAAADLwAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAHAAAAAAAAIAAAAAAAACAAAAAAAQAgAAAAAAEAIAAAAAAAACAAAAAAAwAlAAAAAAEALgAAAAAAAS4AAAAAAAMvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAABwAAAAAAACAAAAAAAAAgAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAAJQAAAAAAACUAAAAAAQAuAAAAAAABLgAAAAAAA4EAAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAgQAAAAAAAAcAAAAAAAAgAAAAAAEAIAAAAAABACAAAAAAAgAgAAAAAAIAIAAAAAAAAC4AAAAAAAMlAAAAAAEAJQAAAAABACAAAAAAAQBvAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAIEAAAAAAAAgAAAAAAEAIAAAAAADACAAAAAAAAAgAAAAAAAAIAAAAAACACAAAAAAAwAuAAAAAAABLgAAAAAAAyUAAAAAAQAgAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAQCBAAAAAAAAIAAAAAAAAIEAAAAAAAAgAAAAAAMAgQAAAAAAAC0AAAAAAAArAAAAAAEHIAAAAAACAG8AAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAgQAAAAAAACAAAAAAAAAgAAAAAAIAgQAAAAAAACAAAAAAAACBAAAAAAAAIAAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAACBy0AAAAAAACBAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAIEAAAAAAAAHAAAAAAAABwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAgCBAAAAAAAALQAAAAAAACsAAAAAAwctAAAAAAAAgQAAAAAAAG8AAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAAAAIEAAAAAAAAgAAAAAAIAgQAAAAAAAC0AAAAAAAArAAAAAAIHLQAAAAAAACAAAAAAAQBvAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAgQAAAAAAACAAAAAAAAAgAAAAAAEAIAAAAAAAACAAAAAAAAAgAAAAAAIAIAAAAAABAA== + tiles: gQAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAACBAAAAAAAAIAAAAAABACAAAAAAAwAgAAAAAAMAIAAAAAAAACAAAAAAAQAgAAAAAAEAIAAAAAADACAAAAAAAgAgAAAAAAEAIAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAgAgAAAAAAIAIAAAAAAAACAAAAAAAgAgAAAAAAMAIAAAAAABACAAAAAAAgAgAAAAAAMAIAAAAAAAACAAAAAAAgBgAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAAAYAAAAAABAIEAAAAAAAAgAAAAAAIAIAAAAAAAACAAAAAAAgAgAAAAAAAAIAAAAAABACAAAAAAAQAgAAAAAAAAIAAAAAABACAAAAAAAwAgAAAAAAIAYAAAAAABAGAAAAAAAABgAAAAAAEAYAAAAAADAGAAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAAAYAAAAAACAGAAAAAAAQBgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAIAYAAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAcAAAAAAAAgAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAIAAAAAACAC0AAAAAAAMuAAAAAAADLwAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAAAHAAAAAAAAIAAAAAAAACAAAAAAAgAgAAAAAAAAIAAAAAADACAAAAAAAAAlAAAAAAAALgAAAAAAAS4AAAAAAAMvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAABwAAAAAAACAAAAAAAAAgAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAAJQAAAAAAACUAAAAAAQAuAAAAAAABLgAAAAAAA4EAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAAcAAAAAAAAgAAAAAAAAIAAAAAABACAAAAAAAAAgAAAAAAAAIAAAAAACAC4AAAAAAAMlAAAAAAMAJQAAAAABACAAAAAAAQBvAAAAAAAAHgAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAIEAAAAAAAAgAAAAAAMAIAAAAAAAACAAAAAAAgAgAAAAAAIAIAAAAAADACAAAAAAAQAuAAAAAAABLgAAAAAAAyUAAAAAAwAgAAAAAAEAbwAAAAAAAB4AAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAgCBAAAAAAAAIAAAAAACAIEAAAAAAAAgAAAAAAEAgQAAAAAAAC0AAAAAAAArAAAAAAEHIAAAAAACAG8AAAAAAAAeAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAEAgQAAAAAAACAAAAAAAACBAAAAAAAAIAAAAAACAIEAAAAAAAAtAAAAAAAAKwAAAAAABy0AAAAAAACBAAAAAAAAHgAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAIEAAAAAAAAHAAAAAAAABwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAActAAAAAAAAgQAAAAAAAB4AAAAAAAAgAAAAAAIAIAAAAAADACAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABAIEAAAAAAAAgAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAEHLQAAAAAAACAAAAAAAAAeAAAAAAAAIAAAAAADACAAAAAAAQAgAAAAAAIAgQAAAAAAACAAAAAAAgAgAAAAAAAAIAAAAAADACAAAAAAAQAgAAAAAAAAIAAAAAACAA== version: 7 0,-5: ind: 0,-5 - tiles: LwAAAAAAAIEAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAACLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy8AAAAAAACBAAAAAAAAGwAAAAAAACkAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAACUAAAAAAQArAAAAAAEAKwAAAAADACsAAAAAAQArAAAAAAMAJQAAAAADACsAAAAAAgAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACkAAAAAAgCBAAAAAAAAgQAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAysAAAAAAAcuAAAAAAACgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAEHLQAAAAAAABsAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAApAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAABACUAAAAAAQAlAAAAAAIAJQAAAAACAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAApAAAAAAEAgQAAAAAAACkAAAAAAwCBAAAAAAAAgQAAAAAAACUAAAAAAQAlAAAAAAAAJQAAAAACAIEAAAAAAAAuAAAAAAAALQAAAAAAACsAAAAAAActAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAKQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAACLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAArAAAAAAEHLQAAAAAAABsAAAAAAACBAAAAAAAAKQAAAAACACkAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAACUAAAAAAgArAAAAAAMAKwAAAAADACsAAAAAAAArAAAAAAMAJQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAApAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAIHLgAAAAAAAi0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAALQAAAAAAAy0AAAAAAAMuAAAAAAADgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAADAC0AAAAAAAMuAAAAAAADLQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAQctAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAABAGAAAAAAAAAgAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAAHLQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAgCBAAAAAAAAIAAAAAABAC0AAAAAAAAuAAAAAAABLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAAKwAAAAAABy0AAAAAAACBAAAAAAAAJAAAAAACACQAAAAAAAAgAAAAAAMAJAAAAAAAACAAAAAAAAAtAAAAAAAAJQAAAAADACsAAAAAAQArAAAAAAMAKwAAAAADACsAAAAAAAArAAAAAAIAKwAAAAAAACUAAAAAAwAtAAAAAAAAIAAAAAADACAAAAAAAQAgAAAAAAAAIAAAAAABACAAAAAAAAAgAAAAAAMALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAIEAAAAAAAAKAAAAAAAACgAAAAAAACAAAAAAAgAgAAAAAAIAgQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== + tiles: LwAAAAAAAIEAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAACLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy8AAAAAAACBAAAAAAAAGwAAAAAAACkAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAACUAAAAAAAArAAAAAAMAKwAAAAADACsAAAAAAwArAAAAAAIAJQAAAAABACsAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACkAAAAAAQCBAAAAAAAAgQAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAysAAAAAAAcuAAAAAAACgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAAHLQAAAAAAABsAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAApAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAAAACUAAAAAAgAlAAAAAAIAJQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAApAAAAAAMAgQAAAAAAACkAAAAAAQCBAAAAAAAAgQAAAAAAACUAAAAAAwAlAAAAAAMAJQAAAAACAIEAAAAAAAAuAAAAAAAALQAAAAAAACsAAAAAAQctAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAKQAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAACLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAArAAAAAAEHLQAAAAAAABsAAAAAAACBAAAAAAAAKQAAAAAAACkAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAACUAAAAAAwArAAAAAAMAKwAAAAADACsAAAAAAQArAAAAAAMAJQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAApAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAEHLgAAAAAAAi0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAALQAAAAAAAy0AAAAAAAMuAAAAAAADgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAADBy0AAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAABAC0AAAAAAAMuAAAAAAADLQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAgctAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAADAGAAAAAAAQAgAAAAAAIALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAEHLQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAIAAAAAACAC0AAAAAAAAuAAAAAAABLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAAKwAAAAABBy0AAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAACAAAAAAAQAtAAAAAAAAJQAAAAACACsAAAAAAgArAAAAAAIAKwAAAAACACsAAAAAAgArAAAAAAAAKwAAAAACACUAAAAAAwAtAAAAAAAAIAAAAAADAB4AAAAAAAAgAAAAAAMAIAAAAAAAACAAAAAAAAAgAAAAAAEALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAIEAAAAAAAAKAAAAAAAACgAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== version: 7 -2,-4: ind: -2,-4 - tiles: YAAAAAACAGAAAAAAAgCBAAAAAAAAYAAAAAAAAGAAAAAAAgBgAAAAAAIAYAAAAAADAGAAAAAAAABgAAAAAAMAYAAAAAADAGAAAAAAAQBgAAAAAAAAYAAAAAACAGAAAAAAAgBgAAAAAAMAYAAAAAACAGAAAAAAAgBgAAAAAAAAgQAAAAAAACAAAAAAAgCBAAAAAAAAYAAAAAACAGAAAAAAAQBgAAAAAAEAYAAAAAADAGAAAAAAAQBgAAAAAAAAYAAAAAADAGAAAAAAAgCBAAAAAAAAgQAAAAAAACAAAAAAAQBgAAAAAAIAYAAAAAAAAGAAAAAAAwBgAAAAAAIAgQAAAAAAAGAAAAAAAwBgAAAAAAEAYAAAAAABAGAAAAAAAgBgAAAAAAAAYAAAAAADAGAAAAAAAgBgAAAAAAMAgQAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAEAYAAAAAAAAIEAAAAAAABrAAAAAAMAawAAAAAAAGsAAAAAAQBrAAAAAAIAgQAAAAAAAGAAAAAAAwBgAAAAAAEAYAAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAAAAGAAAAAAAwCBAAAAAAAAYAAAAAAAAGAAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAIAYAAAAAADAGAAAAAAAgCBAAAAAAAAgQAAAAAAAA8AAAAAAwCBAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAMAGAAAAAAAACUAAAAAAQAlAAAAAAEAJQAAAAAAACUAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAA4EAAAAAAACBAAAAAAAAIAAAAAABABgAAAAAAAAYAAAAAAAAJQAAAAADACUAAAAAAAAlAAAAAAEAJQAAAAADACsAAAAAAwArAAAAAAIAKwAAAAADACsAAAAAAgAlAAAAAAIAJQAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAy0AAAAAAAMYAAAAAAAAGAAAAAAAABgAAAAAAAAlAAAAAAMAJQAAAAABAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAADJQAAAAABACUAAAAAAAArAAAAAAEAKwAAAAADACsAAAAAAwAlAAAAAAEAgQAAAAAAABgAAAAAAAAYAAAAAAAAJQAAAAAAACUAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAxgAAAAAAAAYAAAAAAAAGAAAAAAAACUAAAAAAwAlAAAAAAAAgQAAAAAAAC8AAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAy4AAAAAAAEYAAAAAAAAGAAAAAAAACUAAAAAAgAlAAAAAAIAJQAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAEAJQAAAAAAACUAAAAAAQBgAAAAAAIAgQAAAAAAAIEAAAAAAAAuAAAAAAADGAAAAAAAACUAAAAAAAAlAAAAAAIAJQAAAAABACUAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACACUAAAAAAQAlAAAAAAAAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAGAAAAAAAwAlAAAAAAAAJQAAAAAAAGAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAJQAAAAABACUAAAAAAwAlAAAAAAMAJQAAAAADACUAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAAAJQAAAAACACUAAAAAAgBgAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAJQAAAAADACUAAAAAAQAlAAAAAAMAJQAAAAABACUAAAAAAgAlAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== + tiles: YAAAAAADAGAAAAAAAwCBAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAACAGAAAAAAAABgAAAAAAEAYAAAAAAAAGAAAAAAAgBgAAAAAAAAYAAAAAAAAGAAAAAAAgBgAAAAAAAAYAAAAAADAGAAAAAAAwBgAAAAAAMAgQAAAAAAACAAAAAAAgCBAAAAAAAAYAAAAAABAGAAAAAAAABgAAAAAAAAYAAAAAABAGAAAAAAAwBgAAAAAAAAYAAAAAADAGAAAAAAAwCBAAAAAAAAgQAAAAAAACAAAAAAAQBgAAAAAAIAYAAAAAACAGAAAAAAAwBgAAAAAAMAgQAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAACAGAAAAAAAgBgAAAAAAEAgQAAAAAAAGAAAAAAAgBgAAAAAAEAYAAAAAADAGAAAAAAAgBgAAAAAAAAYAAAAAADAIEAAAAAAABrAAAAAAEAawAAAAACAGsAAAAAAwBrAAAAAAEAgQAAAAAAAGAAAAAAAgBgAAAAAAIAYAAAAAADAIEAAAAAAABgAAAAAAEAYAAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAACAGAAAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAgAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAA8AAAAAAQCBAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAA4EAAAAAAACBAAAAAAAAIAAAAAABABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAArAAAAAAAAKwAAAAACACsAAAAAAgAlAAAAAAMAJQAAAAACAC4AAAAAAAEtAAAAAAADLQAAAAAAAy0AAAAAAAMYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAuAAAAAAADJQAAAAABACUAAAAAAQArAAAAAAEAKwAAAAADACsAAAAAAgAlAAAAAAIABAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAxgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAC8AAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAy4AAAAAAAEYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAADGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABACUAAAAAAgAlAAAAAAIAIAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAGAAAAAAAACAAAAAAAQAlAAAAAAAAJQAAAAABACAAAAAAAQAYAAAAAAAAGAAAAAAAABgAAAAAAAAeAAAAAAAAHgAAAAAAAC0AAAAAAAIrAAAAAAMBLgAAAAAAAS4AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAMAIAAAAAACACAAAAAAAQAgAAAAAAIAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAB4AAAAAAAAtAAAAAAACKwAAAAACARgAAAAAAAAtAAAAAAACgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAA== version: 7 -3,-4: ind: -3,-4 - tiles: gQAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAQctAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAIHLQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAtAAAAAAAAJQAAAAACAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAALgAAAAAAAS0AAAAAAAMuAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAlAAAAAAEAJQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAEAJQAAAAAAABgAAAAAAAAuAAAAAAADgQAAAAAAABgAAAAAAAAYAAAAAAAALgAAAAAAAi0AAAAAAAMtAAAAAAADIAAAAAADAIEAAAAAAAAgAAAAAAMAIAAAAAACAIEAAAAAAACBAAAAAAAAJQAAAAABABgAAAAAAAAYAAAAAAAALQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAC0AAAAAAAAgAAAAAAMAIAAAAAABACAAAAAAAACBAAAAAAAAIAAAAAABACAAAAAAAgCBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAAIAAAAAAAACAAAAAAAQAgAAAAAAEAIAAAAAACACAAAAAAAQAgAAAAAAIAgQAAAAAAAIEAAAAAAAAlAAAAAAMAGAAAAAAAABgAAAAAAAAtAAAAAAADgQAAAAAAACAAAAAAAQAgAAAAAAIAIAAAAAACACAAAAAAAQAgAAAAAAMAIAAAAAADAIEAAAAAAAAgAAAAAAEAIAAAAAABAIEAAAAAAACBAAAAAAAAJQAAAAAAACUAAAAAAQAYAAAAAAAALQAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAACAC0AAAAAAAMtAAAAAAAALQAAAAAAAC0AAAAAAAMuAAAAAAADLgAAAAAAAi0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAAC0AAAAAAAAuAAAAAAADLQAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAxgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAALQAAAAAAAy0AAAAAAAOBAAAAAAAALQAAAAAAAC0AAAAAAAAuAAAAAAACLQAAAAAAAy0AAAAAAAMYAAAAAAAALQAAAAAAAy0AAAAAAAMuAAAAAAADLQAAAAAAAC0AAAAAAAAlAAAAAAIAJQAAAAABAA== + tiles: gQAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAwctAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAIHLQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAtAAAAAAAAJQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAALgAAAAAAAS0AAAAAAAMuAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAuAAAAAAADgQAAAAAAABgAAAAAAAAYAAAAAAAALgAAAAAAAi0AAAAAAAMtAAAAAAADIAAAAAADAIEAAAAAAAAgAAAAAAMAIAAAAAADAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAALQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAC0AAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAwCBAAAAAAAAIAAAAAAAACAAAAAAAQCBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAAIAAAAAADACAAAAAAAgAgAAAAAAEAIAAAAAAAACAAAAAAAgAgAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAtAAAAAAADgQAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAACACAAAAAAAwAgAAAAAAEAIAAAAAAAAIEAAAAAAAAgAAAAAAIAIAAAAAABAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAALQAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAC0AAAAAAAMtAAAAAAAALQAAAAAAAC0AAAAAAAMuAAAAAAADLgAAAAAAAi0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAAC0AAAAAAAAuAAAAAAADLQAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAxgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAB4AAAAAAAAeAAAAAAAALQAAAAAAAy0AAAAAAAOBAAAAAAAALQAAAAAAAC0AAAAAAAAuAAAAAAACLQAAAAAAAy0AAAAAAAMYAAAAAAAALQAAAAAAAy0AAAAAAAMuAAAAAAADLQAAAAAAAC0AAAAAAAAeAAAAAAAAgQAAAAAAAA== version: 7 -3,-3: ind: -3,-3 - tiles: LQAAAAAAAC4AAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAACBAAAAAAAAJAAAAAABACQAAAAAAgAkAAAAAAMAIAAAAAADAIEAAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAIEAAAAAAAAkAAAAAAMAJAAAAAACACQAAAAAAAAgAAAAAAEAgQAAAAAAAC0AAAAAAAAuAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAA4EAAAAAAAAtAAAAAAAALQAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAxgAAAAAAAAtAAAAAAADLQAAAAAAAy4AAAAAAAAtAAAAAAAALQAAAAAAACUAAAAAAQAlAAAAAAEALQAAAAAAAy0AAAAAAAAtAAAAAAAALgAAAAAAAC0AAAAAAAAuAAAAAAACLQAAAAAAAy0AAAAAAAMYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAC0AAAAAAAMtAAAAAAAALQAAAAAAAC0AAAAAAAMuAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADgQAAAAAAAIEAAAAAAAAtAAAAAAADgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACQAAAAAAgAkAAAAAAIAKQAAAAABACkAAAAAAgAkAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAEALQAAAAAAA4EAAAAAAAAkAAAAAAMAJAAAAAADAIEAAAAAAACBAAAAAAAAJAAAAAADACQAAAAAAwAkAAAAAAAAJAAAAAABAIEAAAAAAACBAAAAAAAAJQAAAAAAACUAAAAAAwAlAAAAAAEAGAAAAAAAAC4AAAAAAAKBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACUAAAAAAgAlAAAAAAMAGAAAAAAAABgAAAAAAAAtAAAAAAAAIAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAALgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAADACUAAAAAAgAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAIAJQAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAMAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAEAgQAAAAAAAA== + tiles: LQAAAAAAAC4AAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAIEAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAC0AAAAAAAAuAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAA4EAAAAAAAAtAAAAAAAALQAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAxgAAAAAAAAtAAAAAAADLQAAAAAAAy4AAAAAAAAtAAAAAAAALQAAAAAAAB4AAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAAtAAAAAAAALgAAAAAAAC0AAAAAAAAuAAAAAAACLQAAAAAAAy0AAAAAAAMYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAeAAAAAAAAHgAAAAAAAC0AAAAAAAMtAAAAAAAALQAAAAAAAC0AAAAAAAMuAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADgQAAAAAAAIEAAAAAAAAtAAAAAAADgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACQAAAAAAwAkAAAAAAEAKQAAAAACACkAAAAAAwAkAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAALQAAAAAAA4EAAAAAAAAkAAAAAAMAJAAAAAAAAIEAAAAAAACBAAAAAAAAJAAAAAACACQAAAAAAwAkAAAAAAAAJAAAAAADAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAC4AAAAAAAKBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAtAAAAAAAAIAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAALgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAAA== version: 7 -3,-2: ind: -3,-2 - tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAACgAAAAAAAIEAAAAAAAAKAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAKAAAAAAAAgQAAAAAAAAoAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAACLQAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAAALgAAAAAAAS0AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAItAAAAAAADgQAAAAAAAC8AAAAAAAAvAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAEtAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFgAAAAACABYAAAAAAwCBAAAAAAAALgAAAAAAAi0AAAAAAAMuAAAAAAADgQAAAAAAAA== + tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAACgAAAAAAAIEAAAAAAAAKAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAAAKAAAAAAAAgQAAAAAAAAoAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAACLQAAAAAAA4EAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAIALgAAAAAAAS0AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAItAAAAAAADgQAAAAAAAC8AAAAAAAAvAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAEtAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFgAAAAABABYAAAAAAwCBAAAAAAAALgAAAAAAAi0AAAAAAAMuAAAAAAADgQAAAAAAAA== version: 7 -3,-1: ind: -3,-1 - tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABYAAAAAAQAWAAAAAAAAFgAAAAADABYAAAAAAQCBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLgAAAAAAAoEAAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAAAWAAAAAAAAFgAAAAABABYAAAAAAQAWAAAAAAIAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAAAgAAAAAAMALQAAAAAAAC0AAAAAAAAvAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFgAAAAADAIEAAAAAAAAuAAAAAAABLQAAAAAAAy4AAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMuAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAC4AAAAAAAItAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAC8AAAAAAAAtAAAAAAAAJQAAAAAAACsAAAAAAgArAAAAAAAAKwAAAAADACsAAAAAAQArAAAAAAIAKwAAAAAAACsAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAIAgQAAAAAAACAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABAIEAAAAAAAAgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAACAAAAAAAgCBAAAAAAAAIAAAAAADAIEAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABYAAAAAAwAWAAAAAAEAFgAAAAABABYAAAAAAwCBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLgAAAAAAAoEAAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAAAWAAAAAAIAFgAAAAACABYAAAAAAQAWAAAAAAIAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAAAgAAAAAAAALQAAAAAAAC0AAAAAAAAvAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFgAAAAAAAIEAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMuAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAC8AAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -4,-1: ind: -4,-1 @@ -196,7 +197,7 @@ entities: version: 7 -4,-2: ind: -4,-2 - tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAAsAAAAAAACBAAAAAAAACQAAAAAAAAkAAAAAAAArAAAAAAIAKwAAAAADACAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAALAAAAAAAAgQAAAAAAAAkAAAAAAAAJAAAAAAAAKwAAAAADACsAAAAAAQAgAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAACwAAAAAAAIEAAAAAAAAJAAAAAAAACQAAAAAAACsAAAAAAQArAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAADMAAAAAAAAzAAAAAAwAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAMwAAAAAJAIEAAAAAAAAvAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== + tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAAsAAAAAAACBAAAAAAAACQAAAAAAAAkAAAAAAAArAAAAAAIAKwAAAAABACAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAALAAAAAAAAgQAAAAAAAAkAAAAAAAAJAAAAAAAAKwAAAAADACsAAAAAAQAgAAAAAAMAgQAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAACwAAAAAAAIEAAAAAAAAJAAAAAAAACQAAAAAAACsAAAAAAgArAAAAAAIAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAADMAAAAADAAzAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAMwAAAAAHAIEAAAAAAAAvAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== version: 7 -5,-2: ind: -5,-2 @@ -204,7 +205,7 @@ entities: version: 7 -4,-4: ind: -4,-4 - tiles: DAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAALAAAAAAAAgQAAAAAAAA0AAAAAAAANAAAAAAAAKwAAAAADACsAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAQCBAAAAAAAAgQAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACwAAAAAAAIEAAAAAAAANAAAAAAAADQAAAAAAACsAAAAAAAArAAAAAAEAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAsAAAAAAACBAAAAAAAADQAAAAAAAA0AAAAAAAArAAAAAAIAKwAAAAACAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADAAAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAxcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAAAuAAAAAAABFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAAuAAAAAAABLQAAAAAAAxcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAtAAAAAAADLgAAAAAAAy4AAAAAAAIuAAAAAAAALgAAAAAAAi0AAAAAAAMXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAALgAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAy4AAAAAAAAuAAAAAAACFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALgAAAAAAAYEAAAAAAACBAAAAAAAALgAAAAAAAQ== + tiles: DAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAALAAAAAAAAgQAAAAAAAA0AAAAAAAANAAAAAAAAKwAAAAABACsAAAAAAQCBAAAAAAAAgQAAAAAAACAAAAAAAQCBAAAAAAAAgQAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACwAAAAAAAIEAAAAAAAANAAAAAAAADQAAAAAAACsAAAAAAAArAAAAAAEAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAsAAAAAAACBAAAAAAAADQAAAAAAAA0AAAAAAAArAAAAAAMAKwAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADAAAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAxcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAAAuAAAAAAABFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAAuAAAAAAABLQAAAAAAAxcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAtAAAAAAADLgAAAAAAAy4AAAAAAAIuAAAAAAAALgAAAAAAAi0AAAAAAAMXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAALgAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAy4AAAAAAAAuAAAAAAACFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALgAAAAAAAYEAAAAAAACBAAAAAAAALgAAAAAAAQ== version: 7 -4,-3: ind: -4,-3 @@ -212,7 +213,7 @@ entities: version: 7 -3,-5: ind: -3,-5 - tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLgAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAbwAAAAAAAG8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAADgQAAAAAAAIEAAAAAAACBAAAAAAAAbwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMuAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALwAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAOBAAAAAAAALQAAAAAAAy0AAAAAAAAuAAAAAAABLgAAAAAAAw8AAAAAAQAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAAAJQAAAAAAAC0AAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAA4EAAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAACsAAAAAAQctAAAAAAAAgQAAAAAAAA== + tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLgAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAbwAAAAAAAG8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAADgQAAAAAAAIEAAAAAAACBAAAAAAAAbwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMuAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALwAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAOBAAAAAAAALQAAAAAAAy0AAAAAAAAuAAAAAAABLgAAAAAAAw8AAAAAAwAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAAAJQAAAAABAC0AAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAA4EAAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAACsAAAAAAQctAAAAAAAAgQAAAAAAAA== version: 7 -4,-5: ind: -4,-5 @@ -232,11 +233,11 @@ entities: version: 7 -2,-5: ind: -2,-5 - tiles: gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAIAawAAAAAAAGsAAAAAAwBrAAAAAAAAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAACQAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAAAAGAAAAAAAwCBAAAAAAAAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAAAgQAAAAAAAAkAAAAAAABgAAAAAAEAYAAAAAADAGAAAAAAAgBgAAAAAAEAYAAAAAABAGAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAMAgQAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAADAIEAAAAAAAAJAAAAAAAAYAAAAAACAGAAAAAAAwBgAAAAAAIAYAAAAAAAAIEAAAAAAABgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAAAAGAAAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAgBgAAAAAAEAYAAAAAADAGAAAAAAAwCBAAAAAAAAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQCBAAAAAAAAYAAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAACAGAAAAAAAgBgAAAAAAMAYAAAAAACAGAAAAAAAgBgAAAAAAIAgQAAAAAAAGAAAAAAAABgAAAAAAEAYAAAAAABAGAAAAAAAABgAAAAAAMAgQAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAADAGAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAEAYAAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAADAGAAAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAIAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAEAYAAAAAADAGAAAAAAAgBgAAAAAAAAYAAAAAADAA== + tiles: gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAIAawAAAAAAAGsAAAAAAABrAAAAAAMAYAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAACQAAAAAAAGAAAAAAAABgAAAAAAMAYAAAAAADAGAAAAAAAACBAAAAAAAAYAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgCBAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAIAgQAAAAAAAAkAAAAAAABgAAAAAAMAYAAAAAADAGAAAAAAAwBgAAAAAAEAYAAAAAAAAGAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAMAgQAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAABAIEAAAAAAAAJAAAAAAAAYAAAAAACAGAAAAAAAgBgAAAAAAIAYAAAAAAAAIEAAAAAAABgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAABAGAAAAAAAQCBAAAAAAAAYAAAAAABAGAAAAAAAABgAAAAAAAAYAAAAAABAGAAAAAAAQCBAAAAAAAAYAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQCBAAAAAAAAYAAAAAACAGAAAAAAAQBgAAAAAAAAYAAAAAADAGAAAAAAAABgAAAAAAMAYAAAAAAAAGAAAAAAAQBgAAAAAAIAgQAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAACAGAAAAAAAQBgAAAAAAMAgQAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAABAGAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAMAYAAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAACAGAAAAAAAwCBAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAEAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAIAYAAAAAACAGAAAAAAAgBgAAAAAAAAYAAAAAACAA== version: 7 -1,-5: ind: -1,-5 - tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC0AAAAAAAAgAAAAAAAALQAAAAAAAC8AAAAAAACBAAAAAAAALwAAAAAAAC0AAAAAAAAgAAAAAAEALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAAAvAAAAAAAAgQAAAAAAAC8AAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAALgAAAAAAAC0AAAAAAAAuAAAAAAAALwAAAAAAAIEAAAAAAAAvAAAAAAAALgAAAAAAAC0AAAAAAAAuAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAABsAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAbAAAAAAAAGwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABsAAAAAAACBAAAAAAAAGwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAGwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAi0AAAAAAAMtAAAAAAADLQAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAABsAAAAAAACBAAAAAAAAIAAAAAACACAAAAAAAQAgAAAAAAAAgQAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAy0AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAAAJAAAAAAAACQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAIAIAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAAAgAAAAAAAAgQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAACBAAAAAAAAIAAAAAACACAAAAAAAgAgAAAAAAMAIAAAAAABACAAAAAAAAAgAAAAAAIAIAAAAAABACAAAAAAAQAgAAAAAAMAIAAAAAADAIEAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAbAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAIAIAAAAAAAACAAAAAAAQAgAAAAAAEAIAAAAAAAACAAAAAAAwAgAAAAAAEAIAAAAAABACAAAAAAAQCBAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAGwAAAAAAAIEAAAAAAAAgAAAAAAMAIAAAAAABACAAAAAAAwAgAAAAAAAAIAAAAAADACAAAAAAAwAgAAAAAAEAIAAAAAABACAAAAAAAgAgAAAAAAAAgQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAACBAAAAAAAAIAAAAAADACAAAAAAAwAgAAAAAAEAIAAAAAABACAAAAAAAwAgAAAAAAIAIAAAAAACACAAAAAAAgAgAAAAAAIAIAAAAAABAA== + tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC0AAAAAAAAgAAAAAAAALQAAAAAAAC8AAAAAAACBAAAAAAAALwAAAAAAAC0AAAAAAAAgAAAAAAEALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAAAvAAAAAAAAgQAAAAAAAC8AAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAALgAAAAAAAC0AAAAAAAAuAAAAAAAALwAAAAAAAIEAAAAAAAAvAAAAAAAALgAAAAAAAC0AAAAAAAAuAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAABsAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAbAAAAAAAAGwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAABsAAAAAAACBAAAAAAAAGwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAGwAAAAAAAIEAAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAi0AAAAAAAMtAAAAAAADLQAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAABsAAAAAAACBAAAAAAAAIAAAAAABACAAAAAAAAAgAAAAAAEAgQAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAy0AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAAAJAAAAAAAACQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAAAIAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAwAgAAAAAAIAgQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAACBAAAAAAAAIAAAAAADACAAAAAAAgAgAAAAAAMAIAAAAAAAACAAAAAAAwAgAAAAAAEAIAAAAAACACAAAAAAAQAgAAAAAAEAIAAAAAACAIEAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAbAAAAAAAAgQAAAAAAACAAAAAAAgAgAAAAAAMAIAAAAAABACAAAAAAAQAgAAAAAAMAIAAAAAACACAAAAAAAQAgAAAAAAAAIAAAAAAAACAAAAAAAwCBAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAGwAAAAAAAIEAAAAAAAAgAAAAAAIAIAAAAAAAACAAAAAAAAAgAAAAAAIAIAAAAAACACAAAAAAAQAgAAAAAAAAIAAAAAAAACAAAAAAAQAgAAAAAAMAgQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAACBAAAAAAAAIAAAAAADACAAAAAAAwAgAAAAAAMAIAAAAAACACAAAAAAAQAgAAAAAAEAIAAAAAABACAAAAAAAQAgAAAAAAIAIAAAAAAAAA== version: 7 -1,-6: ind: -1,-6 @@ -244,31 +245,31 @@ entities: version: 7 0,-6: ind: 0,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAABgAAAAAAIAYAAAAAACAGAAAAAAAgBgAAAAAAMAYAAAAAADAGAAAAAAAwBgAAAAAAEAYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAgBgAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAMAYAAAAAABAGAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAABAGAAAAAAAABgAAAAAAEAYAAAAAADAGAAAAAAAgBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAIAYAAAAAABAGAAAAAAAABgAAAAAAMAYAAAAAACAGAAAAAAAwBgAAAAAAIAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAADAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAABAAAAAAAQAQAAAAAAAAEAAAAAADAIEAAAAAAAAXAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAAAQAAAAAAIAEAAAAAAAABAAAAAAAACBAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAEAAAAAACABAAAAAAAwAQAAAAAAAAgQAAAAAAAAAAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAgQAAAAAAABAAAAAAAgAQAAAAAAEAEAAAAAAAAIEAAAAAAAAAAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAEAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAAAQAAAAAAMAEAAAAAADABAAAAAAAgCBAAAAAAAAFwAAAAAAAIEAAAAAAABgAAAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAgAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAEAYAAAAAADAGAAAAAAAABgAAAAAAEAYAAAAAAAAGAAAAAAAgBgAAAAAAIAAAAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAAAAGAAAAAAAQBgAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAACAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAARAAAAAAAAIEAAAAAAABEAAAAAAAAgQAAAAAAAEQAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAEQAAAAAAACBAAAAAAAARAAAAAAAAIEAAAAAAABEAAAAAAAAgQAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAABgAAAAAAIAYAAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAACAGAAAAAAAQBgAAAAAAMAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAEAYAAAAAACAGAAAAAAAwBgAAAAAAMAYAAAAAADAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAADAGAAAAAAAABgAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAADAGAAAAAAAgBgAAAAAAMAYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAABAAAAAAAgAQAAAAAAIAEAAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAQCBAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAEAAAAAADABAAAAAAAQAQAAAAAAMAgQAAAAAAAAAAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAgQAAAAAAABAAAAAAAgAQAAAAAAEAEAAAAAABAIEAAAAAAAAAAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAAAQAAAAAAEAEAAAAAAAABAAAAAAAQCBAAAAAAAAFwAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAABAGAAAAAAAgBgAAAAAAAAYAAAAAADAGAAAAAAAwBgAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAABgAAAAAAIAYAAAAAABAGAAAAAAAQBgAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAACAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAARAAAAAAAAIEAAAAAAABEAAAAAAAAgQAAAAAAAEQAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAEQAAAAAAACBAAAAAAAARAAAAAAAAIEAAAAAAABEAAAAAAAAgQAAAAAAAA== version: 7 0,-7: ind: 0,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAIAYAAAAAABAGAAAAAAAABgAAAAAAIAYAAAAAABAGAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAACAGAAAAAAAQBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAADAGAAAAAAAQBgAAAAAAIAYAAAAAACAGAAAAAAAgBgAAAAAAEAYAAAAAACAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAACAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAADAGAAAAAAAwBgAAAAAAEAYAAAAAABAGAAAAAAAgBgAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAABAGAAAAAAAQBgAAAAAAEAYAAAAAACAGAAAAAAAgBgAAAAAAEAYAAAAAACAA== version: 7 1,-6: ind: 1,-6 - tiles: YAAAAAADAGAAAAAAAwBgAAAAAAMAYAAAAAADAGAAAAAAAABgAAAAAAMAYAAAAAAAAGAAAAAAAAAaAAAAAAEAYAAAAAACAGAAAAAAAQBgAAAAAAIAYAAAAAADAGAAAAAAAgBgAAAAAAIAYAAAAAACAIEAAAAAAABgAAAAAAIAYAAAAAACAGAAAAAAAwBgAAAAAAMAYAAAAAACAGAAAAAAAABgAAAAAAMAYAAAAAADAGAAAAAAAgBgAAAAAAIAYAAAAAACAGAAAAAAAgBgAAAAAAIAYAAAAAAAAGAAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAEAYAAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAABABoAAAAAAABgAAAAAAEAYAAAAAADAGAAAAAAAgBgAAAAAAEAYAAAAAAAAGAAAAAAAwBgAAAAAAEAgQAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAMAYAAAAAADAGAAAAAAAwBgAAAAAAEAYAAAAAADAGAAAAAAAQBgAAAAAAAAYAAAAAADAGAAAAAAAABgAAAAAAEAYAAAAAABAIEAAAAAAABgAAAAAAEAYAAAAAAAAGsAAAAAAgBgAAAAAAIAYAAAAAACAGsAAAAAAgBgAAAAAAEAYAAAAAACAGAAAAAAAABrAAAAAAAAYAAAAAABAGsAAAAAAwBgAAAAAAEAYAAAAAAAAGAAAAAAAwCBAAAAAAAAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAAAYAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAAAYAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAwBgAAAAAAIAYAAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAIAYAAAAAADAGAAAAAAAQBgAAAAAAEAYAAAAAAAAGAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAABgAAAAAAMAYAAAAAABAIEAAAAAAABgAAAAAAMAYAAAAAADAGAAAAAAAgBgAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAIAgQAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAABgAAAAAAAAYAAAAAABAGAAAAAAAgBgAAAAAAMAYAAAAAADAGAAAAAAAABgAAAAAAMAYAAAAAABAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAABAGAAAAAAAwBgAAAAAAMAYAAAAAAAAGAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== + tiles: YAAAAAADAGAAAAAAAgBgAAAAAAIAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAQAaAAAAAAAAYAAAAAADAGAAAAAAAwBgAAAAAAEAYAAAAAADAGAAAAAAAABgAAAAAAAAYAAAAAABAIEAAAAAAABgAAAAAAAAYAAAAAABAGAAAAAAAwBgAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAIAYAAAAAADAGAAAAAAAgBgAAAAAAAAYAAAAAACAGAAAAAAAQBgAAAAAAAAYAAAAAAAAGAAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAwBgAAAAAAEAYAAAAAACAGAAAAAAAABgAAAAAAIAYAAAAAACABoAAAAAAwBgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAMAYAAAAAACAGAAAAAAAQBgAAAAAAIAgQAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAADAGAAAAAAAQBgAAAAAAAAYAAAAAACAGAAAAAAAwBgAAAAAAEAYAAAAAACAGAAAAAAAQBgAAAAAAAAYAAAAAABAGAAAAAAAwBgAAAAAAEAYAAAAAACAIEAAAAAAABgAAAAAAIAYAAAAAABAGsAAAAAAwBgAAAAAAMAYAAAAAADAGsAAAAAAQBgAAAAAAEAYAAAAAAAAGAAAAAAAwBrAAAAAAMAYAAAAAAAAGsAAAAAAQBgAAAAAAMAYAAAAAADAGAAAAAAAwCBAAAAAAAAYAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAAAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAAAYAAAAAADAGAAAAAAAwBgAAAAAAAAYAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAIAYAAAAAABAGAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAMAYAAAAAABAIEAAAAAAABgAAAAAAMAYAAAAAACAGAAAAAAAABgAAAAAAEAYAAAAAABAGAAAAAAAwBgAAAAAAMAgQAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAABgAAAAAAIAYAAAAAAAAGAAAAAAAQBgAAAAAAAAYAAAAAAAAGAAAAAAAgBgAAAAAAEAYAAAAAADAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAIAYAAAAAACAGAAAAAAAABgAAAAAAAAYAAAAAADAGAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== version: 7 1,-7: ind: 1,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAADAIEAAAAAAABgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAgCBAAAAAAAAYAAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAACAGAAAAAAAQCBAAAAAAAAYAAAAAADAIEAAAAAAABgAAAAAAMAYAAAAAACAGAAAAAAAACBAAAAAAAAGgAAAAAAAGAAAAAAAABgAAAAAAEAgQAAAAAAAGAAAAAAAQCBAAAAAAAAYAAAAAADAGAAAAAAAABgAAAAAAIAgQAAAAAAAGAAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAQBgAAAAAAIAgQAAAAAAABoAAAAAAwBgAAAAAAIAYAAAAAABAGAAAAAAAQBgAAAAAAIAYAAAAAAAAGAAAAAAAgAaAAAAAAIAYAAAAAADAGAAAAAAAgBgAAAAAAEAYAAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAAAAIEAAAAAAAAaAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAEAYAAAAAAAAGAAAAAAAQBgAAAAAAAAYAAAAAAAAGAAAAAAAgBgAAAAAAAAYAAAAAACAGAAAAAAAgBgAAAAAAAAYAAAAAABAGAAAAAAAgCBAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAADAGAAAAAAAwBgAAAAAAAAYAAAAAACABoAAAAAAQBgAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAEAYAAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAABAGAAAAAAAABgAAAAAAIAYAAAAAACAGAAAAAAAgBgAAAAAAMAYAAAAAADAGAAAAAAAQBgAAAAAAMAYAAAAAABAGAAAAAAAQBgAAAAAAEAYAAAAAABAGAAAAAAAgBgAAAAAAEAYAAAAAACAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAIAgQAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAADAIEAAAAAAABgAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAwCBAAAAAAAAYAAAAAADAIEAAAAAAABgAAAAAAMAYAAAAAAAAGAAAAAAAwCBAAAAAAAAYAAAAAABAIEAAAAAAABgAAAAAAAAYAAAAAACAGAAAAAAAgCBAAAAAAAAGgAAAAADAGAAAAAAAABgAAAAAAIAgQAAAAAAAGAAAAAAAgCBAAAAAAAAYAAAAAADAGAAAAAAAwBgAAAAAAEAgQAAAAAAAGAAAAAAAwCBAAAAAAAAYAAAAAACAGAAAAAAAABgAAAAAAMAgQAAAAAAABoAAAAAAABgAAAAAAIAYAAAAAABAGAAAAAAAgBgAAAAAAEAYAAAAAABAGAAAAAAAwAaAAAAAAMAYAAAAAACAGAAAAAAAABgAAAAAAAAYAAAAAACAGAAAAAAAQBgAAAAAAAAYAAAAAACAIEAAAAAAAAaAAAAAAAAYAAAAAADAGAAAAAAAwBgAAAAAAEAYAAAAAABAGAAAAAAAgBgAAAAAAAAYAAAAAABAGAAAAAAAwBgAAAAAAMAYAAAAAABAGAAAAAAAABgAAAAAAEAYAAAAAAAAGAAAAAAAwCBAAAAAAAAYAAAAAABAGAAAAAAAwBgAAAAAAEAYAAAAAADAGAAAAAAAABgAAAAAAMAYAAAAAACABoAAAAAAwBgAAAAAAAAYAAAAAACAGAAAAAAAABgAAAAAAEAYAAAAAADAGAAAAAAAABgAAAAAAIAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAABAGAAAAAAAABgAAAAAAEAYAAAAAAAAGAAAAAAAQBgAAAAAAAAYAAAAAADAGAAAAAAAgBgAAAAAAMAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAABAA== version: 7 1,-5: ind: 1,-5 - tiles: LQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACsAAAAAAgArAAAAAAEAKwAAAAABACsAAAAAAQArAAAAAAMAKwAAAAAAACsAAAAAAgArAAAAAAIAJQAAAAADAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAysAAAAAAActAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAoEAAAAAAAAPAAAAAAMADwAAAAACAA8AAAAAAgCBAAAAAAAALgAAAAAAAy0AAAAAAAArAAAAAAEHLQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAADwAAAAADAA8AAAAAAAAPAAAAAAIAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAADwAAAAAAAA8AAAAAAgAPAAAAAAAADwAAAAABAA8AAAAAAQCBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAA8AAAAAAwAPAAAAAAMADwAAAAAAAA8AAAAAAgAPAAAAAAIAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAgAAAAAAMAIAAAAAACAIEAAAAAAAAPAAAAAAMADwAAAAACAA8AAAAAAgAPAAAAAAIADwAAAAABAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAADwAAAAADAA8AAAAAAgAPAAAAAAAADwAAAAABAA8AAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAgctAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAAAIAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA8AAAAAAQAPAAAAAAEADwAAAAADAA8AAAAAAwAkAAAAAAMAgQAAAAAAAC0AAAAAAAArAAAAAAEHLQAAAAAAACAAAAAAAAAgAAAAAAEAIAAAAAACACAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAAAgAAAAAAMAIAAAAAABACAAAAAAAwAgAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAEAIAAAAAACACAAAAAAAAAgAAAAAAIALQAAAAAAACsAAAAAAActAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJAAAAAABACAAAAAAAQAgAAAAAAEAJQAAAAADACAAAAAAAwAgAAAAAAEAgQAAAAAAAC0AAAAAAAArAAAAAAIHLgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADgQAAAAAAACAAAAAAAwAgAAAAAAMAIAAAAAADACUAAAAAAwAgAAAAAAMAIAAAAAADAIEAAAAAAAAtAAAAAAAAKwAAAAADBy4AAAAAAAItAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAA4EAAAAAAAAgAAAAAAIAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACQAAAAAAgCBAAAAAAAALQAAAAAAACsAAAAAAgctAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAAHLQAAAAAAAIEAAAAAAAAgAAAAAAIAIAAAAAACAIEAAAAAAAAKAAAAAAAAgQAAAAAAAA== + tiles: LQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACsAAAAAAQArAAAAAAEAKwAAAAACACsAAAAAAAArAAAAAAEAKwAAAAABACsAAAAAAwArAAAAAAAAJQAAAAABAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAysAAAAAAQctAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAoEAAAAAAAAPAAAAAAEADwAAAAAAAA8AAAAAAACBAAAAAAAALgAAAAAAAy0AAAAAAAArAAAAAAIHLQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAADwAAAAACAA8AAAAAAgAPAAAAAAMAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAADwAAAAADAA8AAAAAAgAPAAAAAAMADwAAAAADAA8AAAAAAQCBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAA8AAAAAAgAPAAAAAAIADwAAAAABAA8AAAAAAQAPAAAAAAIAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAgAAAAAAEAIAAAAAAAAIEAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAIADwAAAAADAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAADwAAAAADAA8AAAAAAwAPAAAAAAMADwAAAAAAAA8AAAAAAgCBAAAAAAAALQAAAAAAACsAAAAAAgctAAAAAAAAgQAAAAAAACAAAAAAAgAgAAAAAAIAIAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAA8AAAAAAQAPAAAAAAMADwAAAAADAA8AAAAAAAAkAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAMHLQAAAAAAACAAAAAAAwAgAAAAAAIAIAAAAAAAACAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAAAgAAAAAAIAIAAAAAACACAAAAAAAAAgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAALQAAAAAAACsAAAAAAwctAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAADACAAAAAAAAAeAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAMHLgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADgQAAAAAAACAAAAAAAAAgAAAAAAIAIAAAAAADACAAAAAAAgAgAAAAAAMAHgAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy4AAAAAAAItAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAA4EAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAgctAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAEHLQAAAAAAAIEAAAAAAAAgAAAAAAAAIAAAAAAAAIEAAAAAAAAKAAAAAAAAgQAAAAAAAA== version: 7 2,-6: ind: 2,-6 - tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAA== + tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAA== version: 7 2,-5: ind: 2,-5 - tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAADACAAAAAAAQCBAAAAAAAACgAAAAAAAAoAAAAAAACBAAAAAAAAgQAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAAgQAAAAAAAAoAAAAAAAAKAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== + tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAADACAAAAAAAACBAAAAAAAACgAAAAAAAAoAAAAAAACBAAAAAAAAgQAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAAgQAAAAAAAAoAAAAAAAAKAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== version: 7 2,-7: ind: 2,-7 @@ -276,11 +277,11 @@ entities: version: 7 3,-5: ind: 3,-5 - tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAAoAAAAAAAAKAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAoAAAAAAAAKAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAoAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAKAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== + tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAAoAAAAAAAAKAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAoAAAAAAAAKAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAoAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAKAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== version: 7 4,-5: ind: 4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAHgAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAB4AAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAoAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAAAvAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAALwAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAHgAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAB4AAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAoAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAAAvAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAALwAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAA== version: 7 3,-6: ind: 3,-6 @@ -288,7 +289,7 @@ entities: version: 7 4,-4: ind: 4,-4 - tiles: gQAAAAAAAIEAAAAAAAAvAAAAAAAALwAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAACgAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAMAYAAAAAADAGAAAAAAAQBgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAADAGAAAAAAAgBgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAC8AAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAAAAGAAAAAAAgBgAAAAAAMARAAAAAAAAEQAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAAAYAAAAAAAAGAAAAAAAAAaAAAAAAIAGgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAACABAAAAAAAQAQAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAABgAAAAAAIAgQAAAAAAACAAAAAAAQAgAAAAAAEAIAAAAAAAACAAAAAAAgAQAAAAAAAAEAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== + tiles: gQAAAAAAAIEAAAAAAAAvAAAAAAAALwAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAACgAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAAAvAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAAAeAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAgBgAAAAAAIAYAAAAAABAGAAAAAAAgBgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAIAYAAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAAAAGAAAAAAAQBgAAAAAAEAYAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAC8AAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAAAAGAAAAAAAgBgAAAAAAAARAAAAAAAAEQAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAgAaAAAAAAEAGgAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABABAAAAAAAwAQAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAABgAAAAAAMAgQAAAAAAACAAAAAAAgAgAAAAAAIAIAAAAAABACAAAAAAAAAQAAAAAAIAEAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== version: 7 5,-4: ind: 5,-4 @@ -300,39 +301,39 @@ entities: version: 7 3,-4: ind: 3,-4 - tiles: CgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAAAACUAAAAAAgAlAAAAAAEAJQAAAAACACUAAAAAAQAlAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAEAJQAAAAABACUAAAAAAwAlAAAAAAAAJQAAAAADACUAAAAAAQAlAAAAAAEAJQAAAAACAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAABACUAAAAAAQAlAAAAAAIAJQAAAAACACUAAAAAAAAlAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAIAJQAAAAADACUAAAAAAgAlAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAC0AAAAAAAOBAAAAAAAAJQAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAFAAAAAAAwBEAAAAAAAARAAAAAAAAEQAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABQAAAAAAEAUAAAAAADAFAAAAAAAgBQAAAAAAIAUAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAUAAAAAAAAFAAAAAAAQBQAAAAAAMAUAAAAAABAFAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAFAAAAAAAwBQAAAAAAAAUAAAAAADAFAAAAAAAABQAAAAAAAAgQAAAAAAAA== + tiles: CgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAACBAAAAAAAAGAAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAACACUAAAAAAwAlAAAAAAIAJQAAAAABACUAAAAAAgAlAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAAAJQAAAAABACUAAAAAAAAlAAAAAAEAJQAAAAAAACUAAAAAAgAlAAAAAAIAJQAAAAADAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAADACUAAAAAAAAlAAAAAAEAJQAAAAACACUAAAAAAwAlAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAMAJQAAAAADACUAAAAAAgAlAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAC0AAAAAAAOBAAAAAAAAJQAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAFAAAAAAAgBEAAAAAAAARAAAAAAAAEQAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABQAAAAAAIAUAAAAAADAFAAAAAAAwBQAAAAAAMAUAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAUAAAAAACAFAAAAAAAQBQAAAAAAEAUAAAAAACAFAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAFAAAAAAAQBQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAMAgQAAAAAAAA== version: 7 4,-3: ind: 4,-3 - tiles: YAAAAAAAAGAAAAAAAwBgAAAAAAEAIAAAAAAAACAAAAAAAQAgAAAAAAEAIAAAAAACACAAAAAAAQAgAAAAAAEAIAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAMAIAAAAAABAGAAAAAAAwBgAAAAAAMAYAAAAAADAIEAAAAAAAAgAAAAAAEAIAAAAAADACAAAAAAAQAgAAAAAAEAIAAAAAADACAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABACAAAAAAAQBgAAAAAAAAYAAAAAADAGAAAAAAAgBgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACYAAAAAAwAmAAAAAAIAYAAAAAABAGAAAAAAAQBgAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAADAGAAAAAAAQBgAAAAAAAAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAEAIAAAAAADAGAAAAAAAABgAAAAAAEAYAAAAAAAAGAAAAAAAQBgAAAAAAEAgQAAAAAAAIEAAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABACAAAAAAAABgAAAAAAIAYAAAAAABAGAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAwBgAAAAAAIAgQAAAAAAAGAAAAAAAABgAAAAAAMAYAAAAAAAAGAAAAAAAgBgAAAAAAAAbwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAADAGAAAAAAAABgAAAAAAIAYAAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAAAYAAAAAADAGAAAAAAAgBgAAAAAAMAYAAAAAABAGAAAAAAAwBgAAAAAAEAYAAAAAADAGAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAEAYAAAAAADAGAAAAAAAwBgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAIAYAAAAAACAIEAAAAAAACBAAAAAAAAIAAAAAAAAEQAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAgCBAAAAAAAAIAAAAAAAACAAAAAAAwBEAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAAAgQAAAAAAACAAAAAAAgAgAAAAAAAARAAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAAAYAAAAAACACAAAAAAAQAgAAAAAAEAIAAAAAACACAAAAAAAgCBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAwCBAAAAAAAAIAAAAAACACAAAAAAAwAgAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== + tiles: YAAAAAADAGAAAAAAAQBgAAAAAAIAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAABACAAAAAAAgAgAAAAAAAAIAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAIAIAAAAAABAGAAAAAAAQBgAAAAAAAAYAAAAAADAIEAAAAAAAAgAAAAAAIAIAAAAAACACAAAAAAAwAgAAAAAAAAIAAAAAABACAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABACAAAAAAAQBgAAAAAAMAYAAAAAACAGAAAAAAAwBgAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACYAAAAAAgAmAAAAAAIAYAAAAAABAGAAAAAAAABgAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAMAYAAAAAACAGAAAAAAAABgAAAAAAEAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAMAIAAAAAACAGAAAAAAAwBgAAAAAAIAYAAAAAABAGAAAAAAAQBgAAAAAAMAgQAAAAAAAIEAAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAADACAAAAAAAABgAAAAAAMAYAAAAAACAGAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAIAgQAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAADAGAAAAAAAwBgAAAAAAEAbwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAACAGAAAAAAAABgAAAAAAAAYAAAAAADAGAAAAAAAwBgAAAAAAIAYAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAAAYAAAAAACAGAAAAAAAwBgAAAAAAMAYAAAAAADAGAAAAAAAgBgAAAAAAMAYAAAAAABAGAAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAMAgQAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAAAAGAAAAAAAgBgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAEAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAADAIEAAAAAAACBAAAAAAAAIAAAAAADAEQAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAgCBAAAAAAAAIAAAAAABACAAAAAAAQBEAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAEAIAAAAAAAACAAAAAAAgAgAAAAAAEARAAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAIAYAAAAAABACAAAAAAAAAgAAAAAAAAIAAAAAABACAAAAAAAwCBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAgCBAAAAAAAAIAAAAAABACAAAAAAAAAgAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== version: 7 5,-3: ind: 5,-3 - tiles: IAAAAAADACAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAAQAAAAAAAAEAAAAAAAAGAAAAAAAACAAAAAAAQAgAAAAAAEAIAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAABAAAAAAAABgAAAAAAAAmAAAAAAEAJgAAAAAAACYAAAAAAwAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAEAAAAAAAAgQAAAAAAAAQAAAAAAABHAAAAAAAABAAAAAAAAAQAAAAAAAAYAAAAAAAAIAAAAAABACAAAAAAAwAgAAAAAAEAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAEAAAAAAAAGAAAAAAAACAAAAAAAQAgAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAA== + tiles: IAAAAAACACAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAAQAAAAAAAAEAAAAAAAAGAAAAAAAACAAAAAAAAAgAAAAAAEAIAAAAAACABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAABAAAAAAAABgAAAAAAAAmAAAAAAIAJgAAAAADACYAAAAAAwAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAEAAAAAAAAgQAAAAAAAAQAAAAAAABHAAAAAAAABAAAAAAAAAQAAAAAAAAYAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAEAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAEAAAAAAAAGAAAAAAAACAAAAAAAgAgAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAA== version: 7 3,-3: ind: 3,-3 - tiles: gQAAAAAAAIEAAAAAAAAtAAAAAAAAIAAAAAACAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAFAAAAAAAgBQAAAAAAMAUAAAAAADAFAAAAAAAABQAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAuAAAAAAABLgAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAUAAAAAACAFAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAAIAAAAAAAAC4AAAAAAAEtAAAAAAABLQAAAAAAAYEAAAAAAACBAAAAAAAAUAAAAAABAFAAAAAAAgBQAAAAAAMAUAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAAALgAAAAAAAS4AAAAAAAMgAAAAAAAAIAAAAAAAACAAAAAAAQAgAAAAAAIAIAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAQAgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAAAACAAAAAAAAAtAAAAAAAAIAAAAAACACAAAAAAAwAgAAAAAAAAIAAAAAAAACAAAAAAAgAgAAAAAAEAIAAAAAACACAAAAAAAgAgAAAAAAMAIAAAAAADAGAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAgAgAAAAAAIAIAAAAAADACAAAAAAAgAgAAAAAAAAIAAAAAAAACAAAAAAAQAgAAAAAAIAIAAAAAADACAAAAAAAABgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAACACAAAAAAAQAgAAAAAAAAIAAAAAAAACAAAAAAAgAgAAAAAAAAIAAAAAABACAAAAAAAQAgAAAAAAEAgQAAAAAAAIEAAAAAAAAeAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAADAIEAAAAAAABgAAAAAAMAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAEARAAAAAAAAGAAAAAAAgBgAAAAAAIAYAAAAAACAGAAAAAAAgCBAAAAAAAAYAAAAAADAGAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAAAAGAAAAAAAgCBAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAAAYAAAAAADAGAAAAAAAABgAAAAAAMAgQAAAAAAAGAAAAAAAgBgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAMAgQAAAAAAAGAAAAAAAQBgAAAAAAEAYAAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAAAAIEAAAAAAABgAAAAAAIAYAAAAAADAIEAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAgBgAAAAAAIAYAAAAAADAIEAAAAAAABgAAAAAAMAYAAAAAADAGAAAAAAAwBgAAAAAAEAYAAAAAABAGAAAAAAAQBgAAAAAAEAYAAAAAACAGAAAAAAAABgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQCBAAAAAAAAgQAAAAAAAGAAAAAAAQCBAAAAAAAAYAAAAAADAGAAAAAAAgCBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAIAYAAAAAAAAIEAAAAAAACBAAAAAAAAFgAAAAACABYAAAAAAwBgAAAAAAIAYAAAAAAAAGAAAAAAAABgAAAAAAEAYAAAAAACAGAAAAAAAQBgAAAAAAMAYAAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAAAAGAAAAAAAgCBAAAAAAAAgQAAAAAAABYAAAAAAwAWAAAAAAAAYAAAAAACAGAAAAAAAgBgAAAAAAIAYAAAAAACAGAAAAAAAwBgAAAAAAIAYAAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAABAGAAAAAAAABgAAAAAAIAgQAAAAAAAIEAAAAAAAAWAAAAAAAAFgAAAAACABYAAAAAAQBgAAAAAAEAYAAAAAADAGAAAAAAAwBgAAAAAAEAYAAAAAADAGAAAAAAAgBgAAAAAAIAYAAAAAACAGAAAAAAAQBgAAAAAAMAYAAAAAADAA== + tiles: gQAAAAAAAIEAAAAAAAAtAAAAAAAAIAAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAFAAAAAAAQBQAAAAAAIAUAAAAAAAAFAAAAAAAABQAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAuAAAAAAABLgAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAUAAAAAAAAFAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAAIAAAAAABAC4AAAAAAAEtAAAAAAABLQAAAAAAAYEAAAAAAACBAAAAAAAAUAAAAAAAAFAAAAAAAwBQAAAAAAIAUAAAAAACAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAAAuAAAAAAAALgAAAAAAAS4AAAAAAAMgAAAAAAMAIAAAAAAAACAAAAAAAQAgAAAAAAAAIAAAAAADAFAAAAAAAABQAAAAAAMAUAAAAAACAFAAAAAAAAAgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAADACAAAAAAAgAtAAAAAAAAIAAAAAAAACAAAAAAAQAgAAAAAAEAIAAAAAAAACAAAAAAAAAgAAAAAAEAIAAAAAAAACAAAAAAAAAgAAAAAAEAIAAAAAADAGAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAwAgAAAAAAIAIAAAAAACACAAAAAAAQAgAAAAAAAAIAAAAAABACAAAAAAAQAgAAAAAAAAIAAAAAADACAAAAAAAABgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAACACAAAAAAAgAgAAAAAAIAIAAAAAABACAAAAAAAgAgAAAAAAAAIAAAAAAAACAAAAAAAwAgAAAAAAEAgQAAAAAAAIEAAAAAAAAeAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAEAYAAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAMARAAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAABAGAAAAAAAQCBAAAAAAAAYAAAAAACAGAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAMAIAAAAAACACAAAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAMAgQAAAAAAAGAAAAAAAQBgAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAADACAAAAAAAQAgAAAAAAEAgQAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAADAGAAAAAAAwBgAAAAAAIAYAAAAAABAIEAAAAAAABgAAAAAAIAYAAAAAADAIEAAAAAAACBAAAAAAAAIAAAAAAAACAAAAAAAwAgAAAAAAIAIAAAAAABAIEAAAAAAABgAAAAAAAAYAAAAAABAGAAAAAAAgBgAAAAAAEAYAAAAAAAAGAAAAAAAwBgAAAAAAEAYAAAAAABAGAAAAAAAgBgAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAwCBAAAAAAAAgQAAAAAAAGAAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAAAAIEAAAAAAACBAAAAAAAAFgAAAAADABYAAAAAAgBgAAAAAAIAYAAAAAACAGAAAAAAAwBgAAAAAAMAYAAAAAAAAGAAAAAAAABgAAAAAAMAYAAAAAABAGAAAAAAAQBgAAAAAAIAYAAAAAACAGAAAAAAAgCBAAAAAAAAgQAAAAAAABYAAAAAAQAWAAAAAAMAYAAAAAAAAGAAAAAAAgBgAAAAAAIAYAAAAAACAGAAAAAAAgBgAAAAAAEAYAAAAAACAGAAAAAAAgBgAAAAAAEAYAAAAAAAAGAAAAAAAgBgAAAAAAIAgQAAAAAAAIEAAAAAAAAWAAAAAAIAFgAAAAAAABYAAAAAAABgAAAAAAMAYAAAAAABAGAAAAAAAQBgAAAAAAMAYAAAAAABAGAAAAAAAQBgAAAAAAEAYAAAAAABAGAAAAAAAQBgAAAAAAEAYAAAAAADAA== version: 7 4,-2: ind: 4,-2 - tiles: YAAAAAAAAGAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQCBAAAAAAAAgQAAAAAAABIAAAAAAAASAAAAAAAAEgAAAAAAABIAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAADAGAAAAAAAwBgAAAAAAEAYAAAAAACAGAAAAAAAgBgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAEAYAAAAAADAGAAAAAAAQBgAAAAAAIAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAEAEgAAAAAAABIAAAAAAAASAAAAAAAAEgAAAAAAABIAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAARwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAS8AAAAAAAAtAAAAAAABLQAAAAAAAS0AAAAAAAEuAAAAAAADgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAEvAAAAAAAALQAAAAAAAS0AAAAAAAEuAAAAAAADLgAAAAAAAS4AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAABLwAAAAAAAC0AAAAAAAGBAAAAAAAALgAAAAAAAS0AAAAAAAEtAAAAAAAALwAAAAAAACAAAAAAAwAgAAAAAAEAIAAAAAAAACAAAAAAAgAgAAAAAAAAIAAAAAADACAAAAAAAQAgAAAAAAMAgQAAAAAAAEcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAS4AAAAAAAOBAAAAAAAAIAAAAAACACAAAAAAAAAgAAAAAAIAIAAAAAADACAAAAAAAwAgAAAAAAIAIAAAAAACAIEAAAAAAAAlAAAAAAAAJQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAMtAAAAAAAAgQAAAAAAACAAAAAAAgAgAAAAAAAAIAAAAAADACAAAAAAAwAgAAAAAAMAIAAAAAACACAAAAAAAQCBAAAAAAAAJQAAAAABACUAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAABLgAAAAAAAIEAAAAAAAAgAAAAAAMAIAAAAAAAACAAAAAAAAAgAAAAAAIAIAAAAAABACAAAAAAAQAgAAAAAAIAgQAAAAAAACUAAAAAAwAlAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAOBAAAAAAAAIAAAAAACACAAAAAAAAAgAAAAAAEAIAAAAAABACAAAAAAAgAgAAAAAAIAIAAAAAADACUAAAAAAQAlAAAAAAEAJQAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAIAJQAAAAADACUAAAAAAgCBAAAAAAAAIQAAAAAAACEAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAA== + tiles: YAAAAAAAAGAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgCBAAAAAAAAgQAAAAAAABIAAAAAAAASAAAAAAAAEgAAAAAAABIAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAACAB4AAAAAAAAgAAAAAAMAIAAAAAABACAAAAAAAQAgAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAYAAAAAACAGAAAAAAAwAeAAAAAAAAIAAAAAABACAAAAAAAAAgAAAAAAIAIAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAIAHgAAAAAAABIAAAAAAAASAAAAAAAAEgAAAAAAABIAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAARwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAS8AAAAAAAAtAAAAAAABLQAAAAAAAS0AAAAAAAEuAAAAAAADgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAEvAAAAAAAALQAAAAAAAS0AAAAAAAEuAAAAAAADLgAAAAAAAS4AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAABLwAAAAAAAC0AAAAAAAGBAAAAAAAALgAAAAAAAS0AAAAAAAEtAAAAAAAALwAAAAAAACAAAAAAAgAgAAAAAAEAIAAAAAABACAAAAAAAAAgAAAAAAMAIAAAAAABACAAAAAAAQAgAAAAAAMAgQAAAAAAACAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAS4AAAAAAAOBAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAABACAAAAAAAQAgAAAAAAIAIAAAAAAAAIEAAAAAAAAgAAAAAAEAIAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAMtAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAIAIAAAAAABACAAAAAAAgAgAAAAAAMAIAAAAAADACAAAAAAAACBAAAAAAAAIAAAAAACACAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAABLgAAAAAAAIEAAAAAAAAgAAAAAAEAIAAAAAACACAAAAAAAwAgAAAAAAMAIAAAAAABACAAAAAAAAAgAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAOBAAAAAAAAIAAAAAADACAAAAAAAwAgAAAAAAMAIAAAAAACACAAAAAAAgAgAAAAAAMAIAAAAAACACAAAAAAAQAgAAAAAAMAIAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAMAIAAAAAABACAAAAAAAgCBAAAAAAAAIQAAAAACACEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAA== version: 7 3,-2: ind: 3,-2 - tiles: gQAAAAAAAIEAAAAAAAAWAAAAAAIAFgAAAAADABYAAAAAAABgAAAAAAIAgQAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAACAGAAAAAAAwBgAAAAAAMAYAAAAAABAGAAAAAAAgBgAAAAAAEAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAADAIEAAAAAAABgAAAAAAMAYAAAAAABAIEAAAAAAABgAAAAAAAAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAQCBAAAAAAAAYAAAAAACAGAAAAAAAABgAAAAAAIAYAAAAAADAGAAAAAAAgBgAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAABAIEAAAAAAABgAAAAAAEAYAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAADAGAAAAAAAwBgAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAEAYAAAAAACAGAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAQCBAAAAAAAAYAAAAAABAGAAAAAAAABgAAAAAAMAgQAAAAAAAIEAAAAAAABHAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAiAAAAAAAgAgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAABLwAAAAAAAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAADLgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAABLQAAAAAAAS8AAAAAAAAuAAAAAAABLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAS0AAAAAAAEvAAAAAAAAIAAAAAADACAAAAAAAAAgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAADACAAAAAAAgAgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAARwAAAAAAACUAAAAAAwAlAAAAAAEAJQAAAAADACUAAAAAAQAlAAAAAAAAJQAAAAABACUAAAAAAAAlAAAAAAMAJQAAAAACACUAAAAAAwAlAAAAAAAARwAAAAAAAIEAAAAAAABHAAAAAAAAgQAAAAAAACUAAAAAAwBgAAAAAAEAYAAAAAADAGAAAAAAAABgAAAAAAMAYAAAAAAAAGAAAAAAAQBgAAAAAAEAYAAAAAACAGAAAAAAAACBAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAIAIAAAAAACACAAAAAAAwAlAAAAAAAAIgAAAAABACIAAAAAAgAiAAAAAAAAIgAAAAADACQAAAAAAAAiAAAAAAIAIgAAAAAAACIAAAAAAwBgAAAAAAIAIAAAAAAAACAAAAAAAQAgAAAAAAAAIAAAAAABACAAAAAAAwCBAAAAAAAARwAAAAAAAGAAAAAAAQBgAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAABAGAAAAAAAAAiAAAAAAAAYAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACUAAAAAAQAfAAAAAAIAgQAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAIEAAAAAAABgAAAAAAMAIgAAAAADAGAAAAAAAQBHAAAAAAAAJQAAAAADACUAAAAAAwAlAAAAAAEAJQAAAAABACUAAAAAAQAlAAAAAAEAgQAAAAAAAGAAAAAAAgCBAAAAAAAAgQAAAAAAAGAAAAAAAwAiAAAAAAEAIgAAAAABACIAAAAAAwBgAAAAAAIAgQAAAAAAACQAAAAAAwAlAAAAAAEAJQAAAAACACUAAAAAAwAlAAAAAAIAJQAAAAABAA== + tiles: gQAAAAAAAIEAAAAAAAAWAAAAAAEAFgAAAAABABYAAAAAAQBgAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAEAYAAAAAACAGAAAAAAAQBgAAAAAAMAYAAAAAADAGAAAAAAAQBgAAAAAAAAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAAAAIEAAAAAAABgAAAAAAAAYAAAAAADAIEAAAAAAABgAAAAAAIAYAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAQCBAAAAAAAAYAAAAAAAAGAAAAAAAgBgAAAAAAIAYAAAAAADAGAAAAAAAwBgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAIAYAAAAAABAGAAAAAAAgBgAAAAAAAAYAAAAAABAIEAAAAAAABgAAAAAAIAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAIAYAAAAAABAGAAAAAAAQBgAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAAAAGAAAAAAAQAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAQCBAAAAAAAAYAAAAAAAAGAAAAAAAgBgAAAAAAEAgQAAAAAAAIEAAAAAAABHAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAALgAAAAAAAiAAAAAAAwAgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAABLwAAAAAAAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAADLgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAABLQAAAAAAAS8AAAAAAAAuAAAAAAABLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAS0AAAAAAAEvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAACAAAAAAAQAgAAAAAAIAIAAAAAABACAAAAAAAQAgAAAAAAMAgQAAAAAAACAAAAAAAQBgAAAAAAEAYAAAAAADAGAAAAAAAABgAAAAAAMAYAAAAAACAGAAAAAAAQBgAAAAAAEAYAAAAAACAGAAAAAAAQCBAAAAAAAAIAAAAAACACAAAAAAAAAgAAAAAAAAIAAAAAADACAAAAAAAQAgAAAAAAEAIgAAAAADACIAAAAAAQAiAAAAAAEAIgAAAAADACQAAAAAAgAiAAAAAAMAIgAAAAADACIAAAAAAQBgAAAAAAMAIAAAAAACACAAAAAAAQAgAAAAAAEAIAAAAAAAACAAAAAAAACBAAAAAAAAIAAAAAACAGAAAAAAAQBgAAAAAAMAYAAAAAACAGAAAAAAAgBgAAAAAAIAYAAAAAAAAGAAAAAAAAAiAAAAAAEAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAwAfAAAAAAEAgQAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAIEAAAAAAABgAAAAAAEAIgAAAAACAGAAAAAAAABHAAAAAAAAIAAAAAADACAAAAAAAQAgAAAAAAAAIAAAAAADACAAAAAAAAAgAAAAAAMAgQAAAAAAAGAAAAAAAwCBAAAAAAAAgQAAAAAAAGAAAAAAAwAiAAAAAAAAIgAAAAABACIAAAAAAABgAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAIAIAAAAAAAACAAAAAAAAAgAAAAAAEAIAAAAAADAA== version: 7 2,-2: ind: 2,-2 - tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAALwAAAAAAACUAAAAAAgAlAAAAAAEAJQAAAAADACkAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAApAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAACkAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAlAAAAAAAAJQAAAAACACkAAAAAAwApAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAACLQAAAAAAAy0AAAAAAAMuAAAAAAACLgAAAAAAA4EAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC0AAAAAAAMYAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAMtAAAAAAADLgAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAIrAAAAAAMAGAAAAAAAACsAAAAAAwArAAAAAAIAKwAAAAABACUAAAAAAwAtAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAALQAAAAAAAxgAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAIEAAAAAAAAgAAAAAAIAgQAAAAAAACAAAAAAAQAgAAAAAAIAIAAAAAADACAAAAAAAAAgAAAAAAAAIAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAAAvAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAARwAAAAAAACUAAAAAAQAlAAAAAAIAJQAAAAADACUAAAAAAgAlAAAAAAIAJQAAAAADACUAAAAAAgApAAAAAAAAKQAAAAAAAIEAAAAAAAAvAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAEAYAAAAAAAAGAAAAAAAwBgAAAAAAIAKQAAAAACACkAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAIEAAAAAAAAZAAAAAAMAgQAAAAAAACIAAAAAAgAiAAAAAAMAIgAAAAABACIAAAAAAgAiAAAAAAIAIgAAAAADACkAAAAAAwApAAAAAAAAKQAAAAABACkAAAAAAwApAAAAAAEAgQAAAAAAABcAAAAAAACBAAAAAAAAYAAAAAAAACIAAAAAAwAiAAAAAAMAYAAAAAAAAGAAAAAAAQBgAAAAAAAAYAAAAAABAGAAAAAAAwApAAAAAAMAKQAAAAABACkAAAAAAwApAAAAAAIAKQAAAAADAIEAAAAAAAAAAAAAAAAAgQAAAAAAAGAAAAAAAwAiAAAAAAAAYAAAAAADAIEAAAAAAAAfAAAAAAMAHwAAAAABAGAAAAAAAwAfAAAAAAIAKQAAAAAAAIEAAAAAAACBAAAAAAAAKQAAAAABAIEAAAAAAACBAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAMAIgAAAAACAGAAAAAAAQBgAAAAAAEAgQAAAAAAAIEAAAAAAABgAAAAAAIAgQAAAAAAAA== + tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAALwAAAAAAACUAAAAAAQAlAAAAAAAAJQAAAAADACkAAAAAAQCBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAApAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAACkAAAAAAgCBAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAlAAAAAAIAJQAAAAAAACkAAAAAAgApAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAACLQAAAAAAAy0AAAAAAAMuAAAAAAACLgAAAAAAA4EAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC0AAAAAAAMYAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAMtAAAAAAADLgAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAIrAAAAAAEAGAAAAAAAACsAAAAAAQArAAAAAAEAKwAAAAAAACUAAAAAAAAtAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAALQAAAAAAAxgAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAAAvAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAApAAAAAAIAKQAAAAADAIEAAAAAAAAvAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAEAYAAAAAADAGAAAAAAAQBgAAAAAAAAKQAAAAACACkAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAIEAAAAAAAAZAAAAAAIAgQAAAAAAACIAAAAAAgAiAAAAAAMAIgAAAAAAACIAAAAAAwAiAAAAAAMAIgAAAAABACkAAAAAAAApAAAAAAIAKQAAAAADACkAAAAAAAApAAAAAAIAgQAAAAAAABcAAAAAAACBAAAAAAAAYAAAAAADACIAAAAAAAAiAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAEAYAAAAAADAGAAAAAAAAApAAAAAAIAKQAAAAABACkAAAAAAgApAAAAAAAAKQAAAAAAAIEAAAAAAAAAAAAAAAAAgQAAAAAAAGAAAAAAAAAiAAAAAAAAYAAAAAADAIEAAAAAAAAfAAAAAAAAHwAAAAACAGAAAAAAAAAfAAAAAAEAKQAAAAADAIEAAAAAAACBAAAAAAAAKQAAAAABAIEAAAAAAACBAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAIAIgAAAAADAGAAAAAAAgBgAAAAAAIAgQAAAAAAAIEAAAAAAABgAAAAAAAAgQAAAAAAAA== version: 7 2,-3: ind: 2,-3 - tiles: gQAAAAAAACAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAIAgQAAAAAAACAAAAAAAwAPAAAAAAAADwAAAAAAAA8AAAAAAwAPAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACUAAAAAAwAlAAAAAAMAJQAAAAACAIEAAAAAAAABAAAAAAMAAQAAAAACACAAAAAAAwAPAAAAAAIADwAAAAAAAA8AAAAAAQAPAAAAAAIADwAAAAAAAA8AAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAIAJQAAAAAAACUAAAAAAAAgAAAAAAAAAQAAAAADAAEAAAAAAAAgAAAAAAEADwAAAAAAAA8AAAAAAwAPAAAAAAIADwAAAAAAAA8AAAAAAwAPAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAAAACUAAAAAAQAlAAAAAAMAIAAAAAAAAAEAAAAAAQABAAAAAAIAIAAAAAABAA8AAAAAAAAPAAAAAAMADwAAAAACAA8AAAAAAQAPAAAAAAMADwAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAACUAAAAAAAAlAAAAAAEAJQAAAAAAACAAAAAAAwABAAAAAAEAAQAAAAAAACAAAAAAAQAPAAAAAAEADwAAAAADAA8AAAAAAgAPAAAAAAIADwAAAAAAAA8AAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAEAJQAAAAADACUAAAAAAAAgAAAAAAMAAQAAAAADAAEAAAAAAQAgAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAMAIAAAAAACAAEAAAAAAAABAAAAAAAAgQAAAAAAAA8AAAAAAwAPAAAAAAIADwAAAAAAAA8AAAAAAwAPAAAAAAIADwAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAACUAAAAAAwAlAAAAAAEAJQAAAAACAIEAAAAAAAABAAAAAAMAAQAAAAABACAAAAAAAgAPAAAAAAIADwAAAAADAA8AAAAAAAAPAAAAAAMADwAAAAABAA8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAAAJQAAAAACACUAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAABACUAAAAAAgAlAAAAAAMAgQAAAAAAAC8AAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAAAlAAAAAAEAJQAAAAABACUAAAAAAwAlAAAAAAEAJQAAAAADACUAAAAAAQCBAAAAAAAAgQAAAAAAACUAAAAAAQAlAAAAAAEAJQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAEAJQAAAAAAACUAAAAAAwAlAAAAAAIAJQAAAAACACUAAAAAAwAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAACUAAAAAAAAlAAAAAAEAJQAAAAABACUAAAAAAAAlAAAAAAMAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAAAvAAAAAAAALwAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAAAvAAAAAAAAGAAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAABgAAAAAAAAvAAAAAAAAgQAAAAAAAA== + tiles: gQAAAAAAACAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAIAgQAAAAAAACAAAAAAAwAPAAAAAAMADwAAAAAAAA8AAAAAAgAPAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAIEAAAAAAAABAAAAAAIAAQAAAAADACAAAAAAAgAPAAAAAAEADwAAAAADAA8AAAAAAQAPAAAAAAIADwAAAAAAAA8AAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAIAJQAAAAABAG8AAAAAAAAgAAAAAAMAAQAAAAAAAAEAAAAAAgAgAAAAAAEADwAAAAAAAA8AAAAAAwAPAAAAAAAADwAAAAADAA8AAAAAAgAPAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAAAACUAAAAAAABvAAAAAAAAIAAAAAAAAAEAAAAAAgABAAAAAAAAIAAAAAADAA8AAAAAAwAPAAAAAAMADwAAAAAAAA8AAAAAAgAPAAAAAAEADwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACUAAAAAAAAlAAAAAAEAbwAAAAAAACAAAAAAAwABAAAAAAMAAQAAAAABACAAAAAAAAAPAAAAAAIADwAAAAAAAA8AAAAAAwAPAAAAAAMADwAAAAADAA8AAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAEAJQAAAAABAG8AAAAAAAAgAAAAAAIAAQAAAAAAAAEAAAAAAwAgAAAAAAMADwAAAAABAA8AAAAAAQAPAAAAAAAADwAAAAABAA8AAAAAAwAPAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAABACUAAAAAAgBvAAAAAAAAIAAAAAADAAEAAAAAAAABAAAAAAAAgQAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAACAA8AAAAAAgAPAAAAAAAADwAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAACUAAAAAAAAlAAAAAAIAbwAAAAAAAIEAAAAAAAABAAAAAAIAAQAAAAAAACAAAAAAAQAPAAAAAAAADwAAAAABAA8AAAAAAwAPAAAAAAEADwAAAAAAAA8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAMAJQAAAAABAG8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAACACUAAAAAAQBvAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAAA0AAAAAAkANAAAAAAAABgAAAAAAAAYAAAAAAAANAAAAAAAADQAAAAACACBAAAAAAAAgQAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAADQAAAAAAAA0AAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAADQAAAAAAwAYAAAAAAAAGAAAAAAAADQAAAAAAgA0AAAAAAAANAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAADQAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAAAvAAAAAAAALwAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAAAvAAAAAAAAGAAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAABgAAAAAAAAvAAAAAAAAgQAAAAAAAA== version: 7 5,-2: ind: 5,-2 - tiles: gQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAgQAAAAAAACAAAAAAAwAgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABAIEAAAAAAAAgAAAAAAEAIAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAQAgAAAAAAMAIAAAAAAAACAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAgQAAAAAAACAAAAAAAwAgAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAHAAAAAACABwAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: gQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAEAgQAAAAAAACAAAAAAAAAgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACAIEAAAAAAAAgAAAAAAMAIAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAgAgAAAAAAEAIAAAAAACACAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAIAgQAAAAAAACAAAAAAAAAgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAHAAAAAACABwAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 5,-1: ind: 5,-1 @@ -340,7 +341,7 @@ entities: version: 7 3,-1: ind: 3,-1 - tiles: YAAAAAABAGAAAAAAAABgAAAAAAMAYAAAAAADACIAAAAAAgAiAAAAAAAAYAAAAAACAGAAAAAAAwBgAAAAAAEARwAAAAAAACUAAAAAAwAlAAAAAAIAJQAAAAADACUAAAAAAwCBAAAAAAAAgQAAAAAAACIAAAAAAwAiAAAAAAIAIgAAAAAAACIAAAAAAQAiAAAAAAMAIwAAAAAAACMAAAAAAAAjAAAAAAAAIwAAAAAAAIEAAAAAAAAlAAAAAAIAJQAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAEAYAAAAAADACMAAAAAAAAjAAAAAAAAHwAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: YAAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAADACIAAAAAAQAiAAAAAAEAYAAAAAACAGAAAAAAAABgAAAAAAAARwAAAAAAACAAAAAAAwAgAAAAAAIAIAAAAAAAACAAAAAAAgCBAAAAAAAAgQAAAAAAACIAAAAAAgAiAAAAAAEAIgAAAAAAACIAAAAAAwAiAAAAAAIAIwAAAAAAACMAAAAAAAAjAAAAAAAAIwAAAAAAAIEAAAAAAAAlAAAAAAMAJQAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAACMAAAAAAAAjAAAAAAAAHwAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 4,-1: ind: 4,-1 @@ -348,11 +349,11 @@ entities: version: 7 2,-1: ind: 2,-1 - tiles: KQAAAAABACkAAAAAAwApAAAAAAAAKQAAAAAAACkAAAAAAwCBAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAEAIgAAAAADAGAAAAAAAQCBAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAADACkAAAAAAAApAAAAAAAAKQAAAAACACkAAAAAAwApAAAAAAIAgQAAAAAAAAAAAAAAAACBAAAAAAAAYAAAAAABACIAAAAAAAAiAAAAAAEAIgAAAAAAACIAAAAAAgAiAAAAAAMAIgAAAAABACIAAAAAAgCBAAAAAAAAgQAAAAAAACkAAAAAAQApAAAAAAEAKQAAAAABAIEAAAAAAAAXAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAAAAGAAAAAAAgBgAAAAAAEAYAAAAAAAAGAAAAAAAgBgAAAAAAAAKQAAAAACAIEAAAAAAAApAAAAAAMAKQAAAAABACkAAAAAAQCBAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACkAAAAAAgCBAAAAAAAAKQAAAAABACkAAAAAAgApAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: KQAAAAACACkAAAAAAgApAAAAAAMAKQAAAAAAACkAAAAAAQCBAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAAAIgAAAAACAGAAAAAAAQCBAAAAAAAAYAAAAAABAGAAAAAAAgBgAAAAAAIAYAAAAAABACkAAAAAAgApAAAAAAIAKQAAAAABACkAAAAAAAApAAAAAAAAgQAAAAAAAAAAAAAAAACBAAAAAAAAYAAAAAACACIAAAAAAgAiAAAAAAMAIgAAAAAAACIAAAAAAgAiAAAAAAMAIgAAAAABACIAAAAAAgCBAAAAAAAAgQAAAAAAACkAAAAAAAApAAAAAAIAKQAAAAADAIEAAAAAAAAXAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAAAAGAAAAAAAQBgAAAAAAEAYAAAAAADAGAAAAAAAABgAAAAAAIAKQAAAAACAIEAAAAAAAApAAAAAAAAKQAAAAABACkAAAAAAQCBAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACkAAAAAAACBAAAAAAAAKQAAAAACACkAAAAAAgApAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 2,-4: ind: 2,-4 - tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAALQAAAAAAAC0AAAAAAAMtAAAAAAADGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAALQAAAAAAAy0AAAAAAAMuAAAAAAAGgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAC0AAAAAAAMuAAAAAAADGAAAAAAAAC0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAAMtAAAAAAAALQAAAAAAAy0AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAABBgAAAAAAAAYAAAAAAAAGAAAAAAAAC4AAAAAAAEtAAAAAAADLgAAAAAAAy4AAAAAAAEtAAAAAAADgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAgAgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAyAAAAAAAwAgAAAAAAMAIAAAAAACACAAAAAAAgAgAAAAAAEAIAAAAAACAIEAAAAAAAAgAAAAAAMAIAAAAAACACAAAAAAAgAYAAAAAAAAIAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAEAIAAAAAACACAAAAAAAwAgAAAAAAEAIAAAAAADACAAAAAAAgAgAAAAAAIAIAAAAAADACAAAAAAAgAYAAAAAAAAGAAAAAAAACAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAAAACAAAAAAAgAgAAAAAAIAIAAAAAAAACAAAAAAAgAgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== + tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAALQAAAAAAAC0AAAAAAAMtAAAAAAADGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAALQAAAAAAAy0AAAAAAAMuAAAAAAAGgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAC0AAAAAAAMuAAAAAAADGAAAAAAAAC0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAAMtAAAAAAAALQAAAAAAAy0AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAABBgAAAAAAAAYAAAAAAAAGAAAAAAAAC4AAAAAAAEtAAAAAAADLgAAAAAAAy4AAAAAAAEtAAAAAAADgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAwAgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAyAAAAAAAAAgAAAAAAEAIAAAAAABACAAAAAAAwAgAAAAAAIAIAAAAAACAIEAAAAAAAAgAAAAAAIAIAAAAAACACAAAAAAAAAYAAAAAAAAIAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAMAIAAAAAACACAAAAAAAgAgAAAAAAEAIAAAAAACACAAAAAAAwAgAAAAAAIAIAAAAAAAACAAAAAAAAAYAAAAAAAAGAAAAAAAACAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAAAACAAAAAAAQAgAAAAAAAAIAAAAAACACAAAAAAAAAgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== version: 7 -2,-6: ind: -2,-6 @@ -384,7 +385,7 @@ entities: version: 7 3,-7: ind: 3,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAADAGAAAAAAAgBgAAAAAAEAYAAAAAABAGAAAAAAAABgAAAAAAEAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAIAYAAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAABAGAAAAAAAQCBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAADAGAAAAAAAQBgAAAAAAMAYAAAAAABAGAAAAAAAQBgAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAABAGAAAAAAAQBgAAAAAAAAYAAAAAABAGAAAAAAAwBgAAAAAAIAYAAAAAADAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAgBgAAAAAAEAYAAAAAABAGAAAAAAAABgAAAAAAEAYAAAAAACAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAABAIEAAAAAAACBAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAABAGAAAAAAAQBgAAAAAAMAYAAAAAAAAGAAAAAAAgBgAAAAAAMAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAwBgAAAAAAIAYAAAAAACAGAAAAAAAgBgAAAAAAMAYAAAAAACAGAAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAABAGAAAAAAAgBgAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAMAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAIAYAAAAAACAGAAAAAAAwBgAAAAAAMAYAAAAAABAGAAAAAAAgBgAAAAAAIAYAAAAAADAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAEAYAAAAAACAGAAAAAAAABgAAAAAAMAYAAAAAABAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -5,-3: ind: -5,-3 @@ -435,8 +436,6 @@ entities: 2004: -24,-81 3303: 65,-22 3304: 65,-26 - 3314: 60,-20 - 3810: 11,-55 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -444,7 +443,6 @@ entities: decals: 2005: -25,-82 3295: 56,-16 - 3313: 59,-21 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -465,7 +463,6 @@ entities: 561: -2,1 2007: -23,-82 3302: 58,-18 - 3312: 61,-21 3664: -3,-18 - node: angle: 3.141592653589793 rad @@ -497,7 +494,6 @@ entities: color: '#FFFFFFFF' id: Basalt6 decals: - 2059: 11,-13 2060: 6,-11 2061: -6,-13 2064: -5,-11 @@ -521,11 +517,9 @@ entities: color: '#FFFFFFFF' id: Bot decals: - 171: 11,-56 172: 11,-57 173: 11,-58 174: 11,-59 - 175: 11,-60 458: 54,-102 1726: 40,-14 1727: 41,-14 @@ -574,6 +568,20 @@ entities: 4672: 56,-37 4776: 54,-97 4780: 53,-102 + 4974: 26,-54 + 4988: -8,-51 + 4989: -8,-52 + 4990: -8,-54 + 5015: -10,-44 + 5016: -9,-44 + 5017: -9,-43 + 5018: -7,-43 + 5070: -4,-28 + 5089: -22,-50 + 5090: -21,-50 + 5094: 13,-66 + 5181: -40,-12 + 5182: -38,-12 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -614,6 +622,22 @@ entities: 3559: -28,-86 3560: -28,-78 3902: -10,-70 + - node: + color: '#FFFFFFFF' + id: BotGreyscale + decals: + 4975: 24,-52 + 4976: 22,-54 + 4977: 24,-56 + 5025: -9,-37 + 5026: -8,-37 + 5027: -7,-37 + 5028: -6,-37 + 5029: -6,-35 + 5030: -7,-35 + 5031: -8,-35 + 5032: -9,-35 + 5082: -22,-43 - node: color: '#FFFFFFFF' id: BotLeft @@ -646,11 +670,11 @@ entities: 282: 28,-97 283: 28,-98 - node: - angle: 4.71238898038469 rad color: '#FFFFFFFF' - id: BotLeft + id: BotLeftGreyscale decals: - 3311: 60,-21 + 5021: -5,-35 + 5022: -10,-37 - node: color: '#FFFFFFFF' id: BotRight @@ -683,6 +707,12 @@ entities: 269: 22,-98 270: 21,-98 271: 20,-98 + - node: + color: '#FFFFFFFF' + id: BotRightGreyscale + decals: + 5023: -10,-35 + 5024: -5,-37 - node: color: '#FFFFFFFF' id: Box @@ -736,11 +766,6 @@ entities: id: BrickCornerOverlayNE decals: 546: 6,-7 - - node: - color: '#D381C926' - id: BrickCornerOverlayNE - decals: - 3549: 7,-42 - node: color: '#FF940093' id: BrickCornerOverlayNE @@ -759,11 +784,6 @@ entities: id: BrickCornerOverlayNW decals: 513: -4,1 - - node: - color: '#D381C926' - id: BrickCornerOverlayNW - decals: - 3550: 6,-42 - node: color: '#FF940093' id: BrickCornerOverlayNW @@ -779,11 +799,6 @@ entities: id: BrickCornerOverlaySE decals: 514: 6,1 - - node: - color: '#D381C926' - id: BrickCornerOverlaySE - decals: - 3553: 7,-44 - node: color: '#FF940093' id: BrickCornerOverlaySE @@ -800,11 +815,6 @@ entities: id: BrickCornerOverlaySW decals: 536: -4,-7 - - node: - color: '#D381C926' - id: BrickCornerOverlaySW - decals: - 3552: 6,-44 - node: color: '#FF940093' id: BrickCornerOverlaySW @@ -837,19 +847,6 @@ entities: decals: 2986: 13,-31 2987: 17,-30 - - node: - color: '#334E6DC8' - id: BrickLineOverlayE - decals: - 4899: -35,-49 - 4900: -35,-43 - 4903: -35,-44 - 4904: -35,-48 - - node: - color: '#8C347F96' - id: BrickLineOverlayE - decals: - 4945: -13,-49 - node: color: '#95FF6F72' id: BrickLineOverlayE @@ -873,11 +870,6 @@ entities: 2516: 15,-90 2517: 15,-91 2518: 15,-86 - - node: - color: '#FA750096' - id: BrickLineOverlayE - decals: - 3836: 10,-67 - node: color: '#FF940093' id: BrickLineOverlayE @@ -912,13 +904,6 @@ entities: color: '#D381C926' id: BrickLineOverlayN decals: - 3533: 14,-43 - 3534: 15,-43 - 3535: 13,-43 - 3536: 12,-43 - 3537: 11,-43 - 3538: 10,-43 - 3539: 9,-43 3540: 8,-43 - node: color: '#DE3A3A96' @@ -985,33 +970,12 @@ entities: id: BrickLineOverlayS decals: 3541: 8,-43 - 3542: 9,-43 - 3543: 10,-43 - 3544: 11,-43 - 3545: 12,-43 - 3546: 13,-43 - 3547: 14,-43 - 3548: 15,-43 - - node: - color: '#D381C971' - id: BrickLineOverlayS - decals: - 938: 8,-74 - 939: 9,-74 - 940: 10,-74 - node: color: '#DE3A3A96' id: BrickLineOverlayS decals: 4618: 55,-26 4619: 56,-26 - - node: - color: '#EFB34196' - id: BrickLineOverlayS - decals: - 2952: -22,-58 - 2953: -21,-58 - 2954: -20,-58 - node: color: '#FF940093' id: BrickLineOverlayS @@ -1038,16 +1002,6 @@ entities: 1821: 43,-15 1822: 42,-15 1823: 54,-17 - - node: - color: '#334E6DC8' - id: BrickLineOverlayW - decals: - 2936: -30,-43 - 2937: -30,-42 - 2938: -30,-49 - 2939: -30,-50 - 2945: -30,-44 - 2948: -30,-48 - node: color: '#95FF6F72' id: BrickLineOverlayW @@ -1073,16 +1027,6 @@ entities: 2522: 14,-90 2523: 14,-91 2527: 21,-83 - - node: - color: '#D381C926' - id: BrickLineOverlayW - decals: - 3551: 6,-43 - - node: - color: '#FA750096' - id: BrickLineOverlayW - decals: - 3838: 23,-69 - node: color: '#FF940093' id: BrickLineOverlayW @@ -1096,10 +1040,7 @@ entities: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: - 12: -4,-25 - 1429: -12,-38 2904: -18,-26 - 3512: 7,-42 4137: 92,-42 4138: 93,-43 4139: 94,-44 @@ -1107,20 +1048,14 @@ entities: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: - 13: -6,-25 2903: -25,-26 - 3508: 6,-42 - 3892: -7,-27 4142: 92,-49 4143: 93,-48 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 1428: -12,-34 2905: -18,-27 - 3513: 7,-44 - 3896: -4,-27 4134: 92,-50 4135: 93,-49 4136: 94,-48 @@ -1129,7 +1064,6 @@ entities: id: BrickTileDarkCornerSw decals: 2902: -25,-27 - 3509: 6,-44 4140: 93,-44 4141: 92,-43 - node: @@ -1142,18 +1076,13 @@ entities: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: - 1435: -12,-39 - 2208: 23,-55 4163: 92,-43 4164: 93,-44 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 757: -4,-38 - 1430: -3,-39 2207: 25,-55 - 3894: -6,-27 4153: 92,-50 4154: 93,-49 4155: 94,-48 @@ -1162,17 +1091,13 @@ entities: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: - 1432: -12,-33 2209: 23,-53 - 3893: -7,-27 4161: 92,-49 4162: 93,-48 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: - 758: -4,-34 - 1431: -3,-33 2210: 25,-53 4157: 93,-43 4158: 92,-42 @@ -1182,61 +1107,22 @@ entities: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 14: -4,-26 2205: 23,-54 - 3835: 10,-67 4146: 94,-45 4147: 94,-46 4148: 94,-47 - 4896: -35,-49 - 4897: -35,-43 - 4901: -35,-48 - 4902: -35,-44 - 4930: -48,-51 - 4931: -48,-50 - 4932: -48,-42 - 4933: -48,-41 - 4944: -13,-49 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 15: -5,-25 - 804: -3,-36 - 805: -2,-36 - 1405: -11,-39 - 1406: -10,-39 - 1407: -9,-39 - 1408: -8,-39 - 1409: -7,-39 - 1410: -6,-39 - 1411: -5,-39 - 1412: -4,-39 2204: 24,-55 - 2789: -29,-42 - 2790: -28,-42 2912: -24,-26 2913: -23,-26 2914: -22,-26 2915: -21,-26 2916: -19,-26 2917: -20,-26 - 2931: -30,-42 - 2957: -11,-38 - 3167: -10,-38 - 3168: -9,-38 - 3169: -8,-38 - 3170: -7,-38 - 3171: -6,-38 - 3172: -5,-38 3514: 8,-43 - 3515: 9,-43 - 3516: 10,-43 - 3517: 11,-43 - 3518: 12,-43 - 3519: 13,-43 - 3520: 14,-43 - 3532: 15,-43 4132: 90,-50 4133: 91,-50 4150: 93,-46 @@ -1246,81 +1132,26 @@ entities: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 11: -5,-27 - 802: -3,-36 - 803: -2,-36 - 935: 8,-74 - 936: 9,-74 - 937: 10,-74 - 1417: -4,-33 - 1418: -5,-33 - 1419: -6,-33 - 1420: -7,-33 - 1421: -9,-33 - 1422: -8,-33 - 1423: -10,-33 - 1424: -11,-33 2206: 24,-53 - 2787: -28,-50 2906: -24,-27 2907: -23,-27 2908: -22,-27 2909: -21,-27 2910: -20,-27 2911: -19,-27 - 2929: -30,-50 - 2956: -11,-34 - 3161: -10,-34 - 3162: -9,-34 - 3163: -8,-34 - 3164: -7,-34 - 3165: -6,-34 - 3166: -5,-34 - 3523: 14,-43 - 3524: 13,-43 - 3525: 12,-43 - 3526: 11,-43 - 3527: 10,-43 - 3528: 9,-43 3529: 8,-43 - 3531: 15,-43 - 3895: -6,-27 4128: 90,-42 4129: 91,-42 4130: 90,-50 4131: 91,-50 4149: 93,-46 - 4925: -29,-50 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 9: -6,-26 - 166: 14,-51 - 167: 14,-50 - 168: 14,-49 - 1413: -3,-38 - 1414: -3,-37 - 1415: -3,-35 - 1416: -3,-34 2203: 25,-54 - 2932: -30,-42 - 2933: -30,-43 - 2934: -30,-50 - 2935: -30,-49 - 2940: -30,-44 - 2941: -30,-48 - 3179: -4,-35 - 3180: -4,-36 - 3181: -4,-37 - 3507: 6,-43 - 3837: 23,-69 4144: 94,-47 4145: 94,-45 - 4926: -45,-41 - 4927: -45,-42 - 4928: -45,-50 - 4929: -45,-51 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNe @@ -1344,7 +1175,6 @@ entities: color: '#FFFFFFFF' id: BrickTileSteelCornerSw decals: - 0: -10,-50 1763: 42,-20 1764: 41,-19 1765: 52,-16 @@ -1375,6 +1205,7 @@ entities: 1796: 53,-16 1797: 52,-15 1798: 55,-17 + 5187: 56,-39 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE @@ -1421,8 +1252,6 @@ entities: color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 3: -8,-50 - 4: -9,-50 1728: 43,-15 1729: 44,-15 1730: 45,-15 @@ -1455,15 +1284,10 @@ entities: 2391: 18,-83 2394: 8,-83 2395: 15,-83 - 2949: -22,-58 - 2950: -21,-58 - 2951: -20,-58 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 1: -10,-49 - 2: -10,-48 1748: 41,-18 1749: 41,-17 1750: 41,-16 @@ -1638,18 +1462,6 @@ entities: color: '#DE3A3A96' id: CheckerNESW decals: - 1616: 42,-23 - 1617: 43,-23 - 1618: 44,-23 - 1619: 45,-23 - 1620: 46,-23 - 1621: 47,-23 - 1622: 48,-23 - 1623: 49,-23 - 1625: 54,-23 - 1626: 55,-23 - 1627: 56,-23 - 4206: 50,-23 4210: 50,-32 4213: 50,-35 4229: 51,-35 @@ -1848,53 +1660,17 @@ entities: 4946: -13,-52 4947: -13,-53 4948: -13,-54 + 4980: 11,-60 + 4981: 6,-59 + 5058: -11,-30 + 5059: -12,-30 + 5130: -38,-46 - node: color: '#DE3A3AFF' id: DeliveryGreyscale decals: 4660: 59,-38 4753: 67,-44 - - node: - color: '#00000056' - id: DiagonalCheckerAOverlay - decals: - 3693: -25,-38 - 3694: -24,-38 - 3695: -23,-38 - 3696: -22,-38 - 3697: -25,-37 - 3698: -25,-31 - 3699: -25,-32 - 3700: -25,-33 - 3701: -25,-34 - 3702: -25,-35 - 3703: -25,-36 - 3704: -24,-36 - 3705: -21,-38 - 3706: -19,-38 - 3707: -18,-38 - 3708: -17,-38 - 3717: -23,-28 - 3718: -22,-28 - 3719: -21,-28 - 3720: -19,-28 - 3721: -18,-28 - 3722: -17,-28 - - node: - color: '#00000066' - id: DiagonalCheckerAOverlay - decals: - 4107: -24,-30 - - node: - color: '#00000067' - id: DiagonalCheckerAOverlay - decals: - 2552: -25,-30 - - node: - color: '#0000006C' - id: DiagonalCheckerAOverlay - decals: - 2869: -20,-37 - node: color: '#0000008C' id: DiagonalCheckerAOverlay @@ -1913,15 +1689,6 @@ entities: 1466: 37,-42 1467: 37,-41 1468: 36,-41 - - node: - color: '#00000053' - id: DiagonalCheckerBOverlay - decals: - 1945: -29,-48 - 1946: -29,-47 - 1947: -29,-46 - 1948: -29,-45 - 1949: -29,-44 - node: cleanable: True color: '#000000FF' @@ -1940,17 +1707,13 @@ entities: 2052: 5,-12 2053: 9,-11 2054: 10,-12 - 2055: 14,-12 2067: 1,-11 2068: 1,-11 2086: 7,-33 2087: 1,-31 - 2088: 4,-32 - 2089: 5,-32 2090: 8,-31 2091: 8,-34 2098: 1,-33 - 2099: 0,-32 - node: cleanable: True color: '#FFFFFFFF' @@ -2032,7 +1795,6 @@ entities: color: '#000000FF' id: DirtHeavyMonotile decals: - 2012: 0,-11 2013: 6,-11 2014: 5,-13 2015: 7,-11 @@ -2062,7 +1824,6 @@ entities: 1502: -1,-76 1503: 3,-79 1519: -53,-69 - 1521: -50,-31 1526: -40,-27 1531: -51,-26 1532: -50,-25 @@ -2074,8 +1835,6 @@ entities: 1930: 46,-20 1931: 49,-16 1932: 54,-19 - 1939: 44,-22 - 1940: 52,-22 2127: 4,-9 2404: 10,-83 2410: 14,-80 @@ -2130,14 +1889,10 @@ entities: 1550: -1,-14 1551: 3,-14 1938: 46,-17 - 1941: 45,-23 - 1942: 54,-23 - 1943: 49,-23 2124: -8,-8 2125: -3,-9 2126: -1,-10 2132: -17,-47 - 2133: -4,-46 2134: 17,-64 2135: 19,-62 2136: -11,-76 @@ -2163,9 +1918,7 @@ entities: color: '#000000FF' id: DirtMedium decals: - 2040: 0,-11 2041: -8,-10 - 2084: 4,-32 2085: 2,-32 - node: cleanable: True @@ -2176,7 +1929,6 @@ entities: 1475: 39,-50 1497: 77,-50 1524: -42,-29 - 1552: 12,-14 1553: 1,-63 1927: 47,-19 1928: 46,-18 @@ -2196,21 +1948,11 @@ entities: 4759: 78,-71 4763: 49,-17 4852: 61,-74 - - node: - color: '#334E6DC8' - id: FullTileOverlayGreyscale - decals: - 3808: 9,-60 - node: color: '#43995C96' id: FullTileOverlayGreyscale decals: 4385: 31,-17 - - node: - color: '#9FED5896' - id: FullTileOverlayGreyscale - decals: - 3981: 6,-59 - node: color: '#A4610696' id: FullTileOverlayGreyscale @@ -2305,31 +2047,12 @@ entities: 1106: -17,-59 1107: -16,-59 1108: -15,-59 - 1110: -27,-59 - 1111: -26,-59 - 1112: -25,-59 - 1113: -24,-59 1137: -29,-64 - node: color: '#00000026' id: HalfTileOverlayGreyscale180 decals: 33: -47,-49 - - node: - color: '#00000066' - id: HalfTileOverlayGreyscale180 - decals: - 2928: -24,-40 - - node: - color: '#00000067' - id: HalfTileOverlayGreyscale180 - decals: - 2575: -25,-40 - 2577: -22,-43 - 2578: -21,-43 - 2579: -20,-43 - 2580: -19,-43 - 2581: -18,-43 - node: color: '#43995C96' id: HalfTileOverlayGreyscale180 @@ -2344,8 +2067,6 @@ entities: 1573: 14,-71 1574: 13,-71 3978: -40,-16 - 4408: 28,-25 - 4409: 29,-25 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 @@ -2361,21 +2082,6 @@ entities: id: HalfTileOverlayGreyscale180 decals: 4510: 20,-25 - - node: - color: '#00000067' - id: HalfTileOverlayGreyscale270 - decals: - 2565: -26,-34 - 2566: -26,-35 - 2567: -26,-33 - 2568: -26,-32 - 2569: -26,-31 - 2571: -26,-36 - 2572: -26,-37 - 2573: -26,-38 - 2574: -26,-39 - 2582: -23,-41 - 2583: -23,-42 - node: color: '#0080FF3A' id: HalfTileOverlayGreyscale270 @@ -2394,12 +2100,6 @@ entities: decals: 4388: 29,-20 4389: 29,-19 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale270 - decals: - 4579: 23,-23 - 4580: 23,-24 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 @@ -2419,14 +2119,6 @@ entities: id: HalfTileOverlayGreyscale270 decals: 229: -5,-6 - - node: - color: '#00000067' - id: HalfTileOverlayGreyscale90 - decals: - 2584: -17,-39 - 2585: -17,-40 - 2586: -17,-41 - 2587: -17,-42 - node: color: '#3E92D883' id: HalfTileOverlayGreyscale90 @@ -2481,6 +2173,7 @@ entities: decals: 4125: 96,-58 4127: 96,-34 + 4979: 10,-60 - node: color: '#FFFFFFFF' id: LoadingArea @@ -2500,6 +2193,11 @@ entities: 3969: 4,-10 3970: 5,-10 3971: 6,-10 + 4978: 11,-56 + 5054: -12,-31 + 5055: -11,-31 + 5056: -12,-29 + 5057: -11,-29 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -2518,13 +2216,14 @@ entities: 2525: 21,-84 3297: 63,-26 3306: 63,-19 + 5179: -40,-11 + 5180: -38,-11 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: LoadingArea decals: 3296: 56,-18 - 3811: 9,-60 - node: angle: 4.71238898038469 rad color: '#00FFFFFF' @@ -2537,6 +2236,11 @@ entities: id: LoadingAreaGreyscale decals: 3903: -11,-70 + - node: + color: '#FFFFFFFF' + id: LoadingAreaGreyscale + decals: + 5071: -4,-28 - node: angle: 1.5707963267948966 rad color: '#00000019' @@ -2646,11 +2350,6 @@ entities: 3034: 17,-99 3035: 17,-100 3036: 17,-101 - - node: - color: '#EFDF3A8F' - id: MiniTileCheckerAOverlay - decals: - 3506: 7,-43 - node: color: '#FFFFFF3A' id: MiniTileCheckerAOverlay @@ -2668,11 +2367,6 @@ entities: id: MiniTileCheckerBOverlay decals: 3687: -8,-17 - - node: - color: '#D381C94E' - id: MiniTileCheckerBOverlay - decals: - 1353: -8,-29 - node: color: '#FFFFFFBF' id: MiniTileCheckerBOverlay @@ -2683,11 +2377,6 @@ entities: id: MiniTileCornerOverlayNE decals: 3183: -10,-16 - - node: - color: '#D381C926' - id: MiniTileCornerOverlayNW - decals: - 2224: -6,-23 - node: color: '#D381C928' id: MiniTileCornerOverlayNW @@ -2698,11 +2387,6 @@ entities: id: MiniTileCornerOverlaySE decals: 3186: -10,-17 - - node: - color: '#D381C926' - id: MiniTileCornerOverlaySW - decals: - 2228: -6,-20 - node: color: '#D381C928' id: MiniTileCornerOverlaySW @@ -2712,23 +2396,8 @@ entities: color: '#FFFFFFFF' id: MiniTileDarkCornerNe decals: - 135: -53,-45 - 161: -33,-38 - 162: -33,-56 200: 29,-73 223: 40,-76 - 638: 26,-50 - 639: 27,-51 - 640: 28,-52 - 646: 21,-56 - 647: 22,-57 - 761: 35,-54 - 764: 37,-54 - 1246: -30,-36 - 1247: -31,-35 - 1263: -30,-54 - 1264: -31,-53 - 1296: -32,-50 4177: 34,-28 4201: 42,-50 4602: 33,-75 @@ -2736,44 +2405,13 @@ entities: color: '#FFFFFFFF' id: MiniTileDarkCornerNw decals: - 160: -31,-38 - 163: -31,-56 - 623: 20,-52 - 624: 21,-51 - 625: 22,-50 - 626: 26,-57 - 627: 27,-56 - 763: 36,-54 - 767: 40,-53 - 1250: -34,-36 - 1251: -33,-35 - 1258: -33,-53 - 1260: -34,-54 - 1285: -40,-42 4174: 28,-28 4601: 35,-76 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerSe decals: - 136: -53,-47 - 158: -33,-36 - 164: -33,-54 224: 40,-77 - 628: 26,-58 - 629: 27,-57 - 630: 28,-56 - 631: 21,-52 - 632: 22,-51 - 762: 36,-55 - 766: 40,-55 - 768: 42,-53 - 1248: -30,-38 - 1249: -31,-39 - 1261: -31,-57 - 1262: -30,-56 - 1270: -32,-42 - 3726: -32,-59 4176: 34,-30 - node: color: '#C8C8FFFF' @@ -2784,36 +2422,19 @@ entities: color: '#FFFFFFFF' id: MiniTileDarkCornerSw decals: - 159: -31,-36 - 165: -31,-54 195: 28,-76 196: 29,-77 - 633: 20,-56 - 634: 21,-57 - 635: 22,-58 - 636: 26,-51 - 637: 27,-52 - 765: 37,-55 - 769: 35,-55 - 1244: -33,-39 - 1245: -34,-38 - 1257: -34,-56 - 1259: -33,-57 4175: 28,-30 4202: 41,-50 - 4868: -40,-50 - node: color: '#FFFFFFFF' id: MiniTileDarkEndN decals: - 157: -31,-21 - 3867: -35,-58 4205: 41,-49 - node: color: '#FFFFFFFF' id: MiniTileDarkEndS decals: - 156: -31,-22 4961: 37,-78 - node: color: '#FFFFFFFF' @@ -2825,78 +2446,22 @@ entities: id: MiniTileDarkInnerNe decals: 201: 29,-75 - 641: 27,-52 - 642: 26,-51 - 643: 21,-57 - 644: 20,-56 - 645: 22,-58 - 784: 37,-55 - 787: 35,-55 - 1164: -33,-57 - 1167: -34,-56 - 1174: -33,-39 - 1175: -34,-38 - 1256: -31,-36 - 1265: -31,-54 2761: 22,-77 - 2773: 7,-66 - 2784: -31,-52 - 2840: -23,-55 - 3868: -35,-59 4191: 34,-29 - 4198: 44,-39 4204: 41,-50 4607: 33,-77 - 4879: -40,-50 - node: color: '#FFFFFFFF' id: MiniTileDarkInnerNw decals: 141: -50,-47 - 685: 21,-52 - 686: 22,-51 - 687: 27,-57 - 688: 28,-56 - 689: 26,-58 - 780: 40,-55 - 786: 36,-55 - 788: 42,-53 - 1170: -31,-57 - 1171: -30,-56 - 1172: -31,-39 - 1173: -30,-38 - 1255: -33,-36 - 1266: -33,-54 - 1308: -32,-42 - 2762: 26,-77 2763: 16,-77 - 2774: 10,-66 - 2839: -20,-55 - 3729: -32,-59 4518: 7,-56 4606: 35,-77 - node: color: '#FFFFFFFF' id: MiniTileDarkInnerSe decals: - 680: 20,-52 - 681: 21,-51 - 682: 22,-50 - 683: 26,-57 - 684: 27,-56 - 783: 36,-54 - 785: 40,-53 - 1168: -34,-54 - 1169: -33,-53 - 1176: -34,-36 - 1177: -33,-35 - 1254: -31,-38 - 1267: -31,-56 - 1309: -40,-42 - 2770: 12,-75 - 2783: -31,-40 - 2841: -23,-53 - 3728: -34,-59 4190: 34,-29 4517: 5,-52 4960: 37,-77 @@ -2907,91 +2472,20 @@ entities: 140: -50,-45 198: 28,-75 199: 29,-76 - 690: 22,-57 - 691: 21,-56 - 692: 26,-50 - 693: 27,-51 - 694: 28,-52 - 781: 35,-54 - 782: 37,-54 - 1165: -31,-53 - 1166: -30,-54 - 1178: -31,-35 - 1179: -30,-36 - 1253: -33,-38 - 1268: -33,-56 - 1297: -32,-50 - 2842: -20,-53 4203: 42,-50 4959: 37,-77 - node: color: '#FFFFFFFF' id: MiniTileDarkLineE decals: - 122: -12,-12 - 123: -12,-13 - 124: -12,-14 - 125: -18,-14 - 126: -18,-13 - 127: -18,-12 151: -31,-24 152: -31,-25 202: 29,-74 - 672: 28,-55 - 673: 28,-53 - 674: 24,-49 - 675: 24,-48 - 676: 24,-59 - 677: 24,-60 - 678: 20,-55 - 679: 20,-53 - 779: 40,-54 791: 42,-52 792: 42,-51 - 1154: -32,-53 - 1155: -32,-52 - 1156: -32,-57 - 1157: -32,-58 - 1182: -32,-39 - 1183: -32,-40 - 1184: -32,-35 - 1185: -32,-34 - 1252: -30,-37 - 1269: -30,-55 - 1306: -40,-49 - 1307: -40,-43 - 2699: 5,-37 - 2700: 5,-36 - 2701: 5,-35 - 2717: 21,-37 - 2718: 21,-36 - 2719: 21,-35 - 2729: -11,-14 - 2730: -11,-13 - 2731: -11,-12 - 2744: 5,-53 - 2745: 5,-54 - 2746: 5,-55 - 2752: 30,-55 - 2753: 30,-53 - 2811: -28,-36 - 2812: -28,-37 - 2813: -28,-38 - 2826: -17,-40 - 2827: -17,-39 - 2843: 14,-14 - 2844: 14,-13 - 2863: 25,-45 - 2864: 25,-44 3681: -8,-18 - 4194: 44,-37 - 4195: 44,-38 - 4421: 32,-23 - 4422: 32,-24 - 4423: 32,-25 4603: 33,-76 4635: 66,-48 - 4771: -17,-38 - node: color: '#C8C8FFFF' id: MiniTileDarkLineN @@ -3001,15 +2495,6 @@ entities: color: '#FFFFFFFF' id: MiniTileDarkLineN decals: - 113: 23,-73 - 114: 24,-73 - 115: 25,-73 - 131: -55,-45 - 132: -54,-45 - 142: -51,-47 - 143: -52,-47 - 190: 14,-53 - 191: 15,-53 192: 27,-73 193: 28,-73 203: 30,-75 @@ -3020,101 +2505,18 @@ entities: 220: 37,-76 221: 38,-76 222: 39,-76 - 656: 23,-58 - 657: 25,-58 - 658: 25,-50 - 659: 23,-50 - 660: 19,-54 - 661: 18,-54 - 662: 29,-54 - 663: 30,-54 - 772: 38,-55 - 773: 39,-55 - 774: 33,-54 - 775: 34,-54 - 778: 41,-53 - 800: 32,-54 - 1160: -34,-55 - 1161: -35,-55 - 1188: -34,-37 - 1189: -35,-37 - 1190: -36,-37 - 1278: -33,-42 1279: -34,-42 - 1280: -35,-42 - 1281: -36,-42 - 1282: -37,-42 - 1283: -38,-42 - 1284: -39,-42 - 1298: -33,-50 - 1299: -34,-50 - 2213: 26,-54 - 2214: 27,-54 2541: -21,-34 2542: -20,-34 2543: -19,-34 - 2705: 3,-40 - 2706: 4,-40 - 2707: 5,-40 - 2714: 23,-40 - 2715: 24,-40 - 2716: 25,-40 - 2723: -2,-29 - 2724: -1,-29 - 2725: 0,-29 - 2737: -30,-21 - 2738: -29,-21 - 2739: -28,-21 - 2740: 4,-47 - 2741: 5,-47 - 2754: 25,-48 - 2755: 23,-48 - 2758: 23,-77 - 2759: 24,-77 - 2760: 25,-77 - 2764: 15,-77 - 2765: 14,-77 - 2766: 13,-77 - 2771: 8,-66 - 2772: 9,-66 - 2777: -30,-52 - 2778: -29,-52 - 2779: -28,-52 - 2814: -30,-32 - 2815: -29,-32 - 2816: -28,-32 - 2829: -15,-45 - 2830: -14,-45 - 2831: -13,-45 - 2837: -22,-55 - 2838: -21,-55 - 2867: 28,-49 - 2868: 29,-49 - 2955: 34,-38 - 3724: -34,-59 - 3725: -33,-59 - 3730: -35,-61 - 3731: -34,-61 4178: 29,-28 4179: 30,-28 4180: 31,-28 4181: 32,-28 4182: 33,-28 4193: 35,-29 - 4200: 45,-39 - 4353: 23,-28 - 4354: 24,-28 - 4355: 25,-28 4383: 35,-18 - 4590: 25,-18 - 4591: 26,-18 - 4592: 27,-18 4604: 34,-77 - 4869: -39,-50 - 4870: -38,-50 - 4871: -37,-50 - 4872: -36,-50 - 4873: -35,-50 - node: color: '#C8C8FFFF' id: MiniTileDarkLineS @@ -3125,10 +2527,6 @@ entities: color: '#FFFFFFFF' id: MiniTileDarkLineS decals: - 133: -55,-47 - 134: -54,-47 - 137: -52,-45 - 138: -51,-45 194: 27,-75 197: 30,-77 205: 31,-77 @@ -3136,97 +2534,20 @@ entities: 207: 33,-77 210: 36,-77 213: 39,-77 - 617: 23,-30 - 618: 24,-30 - 648: 23,-58 - 649: 25,-58 - 650: 25,-50 - 651: 23,-50 - 652: 19,-54 - 653: 18,-54 - 654: 29,-54 - 655: 30,-54 - 759: 33,-54 - 760: 34,-54 - 770: 38,-55 - 771: 39,-55 - 777: 41,-53 - 798: 32,-54 - 1162: -34,-55 - 1163: -35,-55 - 1191: -34,-37 - 1192: -35,-37 - 1193: -36,-37 - 1271: -33,-42 1272: -34,-42 - 1273: -35,-42 - 1274: -36,-42 - 1275: -37,-42 - 1276: -38,-42 - 1277: -39,-42 - 1294: -34,-50 - 1295: -33,-50 - 1599: -23,-19 - 1600: -22,-19 - 2211: 27,-54 - 2212: 26,-54 2538: -21,-32 2539: -20,-32 2540: -19,-32 - 2708: 3,-38 - 2709: 4,-38 - 2710: 5,-38 - 2711: 23,-38 - 2712: 24,-38 - 2713: 25,-38 - 2726: -2,-27 - 2727: -1,-27 - 2728: 0,-27 - 2734: -30,-19 - 2735: -29,-19 - 2736: -28,-19 - 2742: 5,-45 - 2743: 4,-45 - 2756: 23,-60 - 2757: 25,-60 - 2767: 15,-75 - 2768: 14,-75 - 2769: 13,-75 - 2775: 8,-64 - 2776: 9,-64 - 2780: -30,-40 - 2781: -29,-40 - 2782: -28,-40 - 2817: -30,-30 - 2818: -29,-30 - 2819: -28,-30 - 2832: -15,-43 - 2833: -14,-43 - 2834: -13,-43 - 2835: -21,-53 - 2836: -22,-53 - 2923: -30,-33 - 2924: -28,-33 - 2959: 25,-30 2960: 26,-30 - 3727: -33,-59 4183: 29,-30 4184: 30,-30 4185: 31,-30 4186: 32,-30 4187: 33,-30 4192: 35,-29 - 4587: 25,-16 - 4588: 26,-16 - 4589: 27,-16 4600: 35,-77 4605: 34,-77 4636: 72,-45 - 4874: -35,-50 - 4875: -36,-50 - 4876: -37,-50 - 4877: -38,-50 - 4878: -39,-50 4958: 38,-77 - node: color: '#C8C8FFFF' @@ -3238,83 +2559,18 @@ entities: color: '#FFFFFFFF' id: MiniTileDarkLineW decals: - 119: -14,-14 - 120: -14,-13 - 121: -14,-12 - 128: -19,-12 - 129: -19,-13 - 130: -19,-14 - 139: -50,-46 149: -31,-24 150: -31,-25 - 664: 24,-59 - 665: 24,-60 - 666: 24,-49 - 667: 24,-48 - 668: 20,-53 - 669: 20,-55 - 670: 28,-55 - 671: 28,-53 - 776: 40,-54 789: 42,-52 790: 42,-51 - 1151: -30,-55 - 1152: -32,-53 - 1153: -32,-52 - 1158: -32,-58 - 1159: -32,-57 - 1180: -32,-39 - 1181: -32,-40 - 1186: -32,-35 - 1187: -32,-34 - 1194: -30,-37 - 1286: -40,-43 - 1287: -40,-49 - 2702: 7,-37 - 2703: 7,-36 - 2704: 7,-35 - 2720: 23,-37 - 2721: 23,-36 - 2722: 23,-35 - 2747: 7,-55 - 2748: 7,-54 - 2749: 7,-53 - 2750: 18,-53 - 2751: 18,-55 - 2820: -15,-38 - 2821: -15,-39 - 2822: -15,-40 - 2823: -26,-38 - 2824: -26,-37 - 2825: -26,-36 - 2845: 16,-14 - 2846: 16,-13 - 2847: 16,-12 - 2865: 27,-45 - 2866: 27,-44 - 2878: -9,-14 - 2879: -9,-13 - 2880: -9,-12 - 2921: -27,-56 - 2922: -27,-58 3682: -7,-18 - 3866: -35,-59 4188: 28,-29 - 4424: 34,-23 - 4425: 34,-24 - 4426: 34,-25 - node: color: '#00000054' id: MiniTileDiagonalCheckerAOverlay decals: 1376: -20,-36 1377: -20,-35 - - node: - color: '#00000056' - id: MiniTileDiagonalCheckerAOverlay - decals: - 3709: -20,-38 - 3716: -20,-28 - node: color: '#0000006C' id: MiniTileDiagonalCheckerAOverlay @@ -3330,12 +2586,6 @@ entities: id: MiniTileEndOverlayW decals: 3677: -8,-18 - - node: - color: '#334E6DC8' - id: MiniTileInnerOverlayNE - decals: - 4906: -35,-50 - 4907: -35,-42 - node: color: '#52B4E996' id: MiniTileInnerOverlayNE @@ -3401,11 +2651,6 @@ entities: 552: -1,1 553: 6,1 582: 4,-7 - - node: - color: '#D381C926' - id: MiniTileInnerOverlayNW - decals: - 2230: -4,-23 - node: color: '#D381C933' id: MiniTileInnerOverlayNW @@ -3416,12 +2661,6 @@ entities: id: MiniTileInnerOverlayNW decals: 1875: 55,-20 - - node: - color: '#334E6DC8' - id: MiniTileInnerOverlaySE - decals: - 4905: -35,-50 - 4908: -35,-42 - node: color: '#52B4E996' id: MiniTileInnerOverlaySE @@ -3456,7 +2695,6 @@ entities: id: MiniTileInnerOverlaySE decals: 1121: -28,-65 - 1150: -18,-57 - node: color: '#FF800066' id: MiniTileInnerOverlaySE @@ -3489,11 +2727,6 @@ entities: id: MiniTileInnerOverlaySW decals: 3816: 14,-85 - - node: - color: '#D381C926' - id: MiniTileInnerOverlaySW - decals: - 2231: -4,-20 - node: color: '#D381C933' id: MiniTileInnerOverlaySW @@ -3503,13 +2736,12 @@ entities: color: '#DE3A3A96' id: MiniTileInnerOverlaySW decals: - 4658: 56,-39 + 5188: 56,-39 - node: color: '#EFB34196' id: MiniTileInnerOverlaySW decals: 1122: -26,-65 - 1149: -14,-57 - node: color: '#FF940093' id: MiniTileInnerOverlaySW @@ -3523,11 +2755,6 @@ entities: id: MiniTileLineOverlayE decals: 1598: 7,-17 - - node: - color: '#9FED5896' - id: MiniTileLineOverlayE - decals: - 1444: 29,-51 - node: color: '#DE3A3A96' id: MiniTileLineOverlayE @@ -3557,45 +2784,23 @@ entities: decals: 255: 22,-92 256: 26,-92 - - node: - color: '#334E6DC8' - id: MiniTileLineOverlayN - decals: - 4884: -34,-45 - 4885: -35,-45 - 4886: -36,-45 - 4887: -37,-45 - node: color: '#43995C96' id: MiniTileLineOverlayN decals: 4384: 35,-18 - - node: - color: '#52B4E996' - id: MiniTileLineOverlayN - decals: - 3626: 14,-35 - 3627: 15,-35 - 3628: 16,-35 - node: color: '#9FED5896' id: MiniTileLineOverlayN decals: 1442: -27,-12 3399: 66,-24 - 3411: 4,-35 - 4209: 52,-24 - node: color: '#D10000A3' id: MiniTileLineOverlayN decals: 257: 19,-92 258: 28,-92 - - node: - color: '#D381C926' - id: MiniTileLineOverlayN - decals: - 2225: -5,-23 - node: color: '#DE3A3A96' id: MiniTileLineOverlayN @@ -3609,15 +2814,6 @@ entities: 3710: -21,-32 3711: -20,-32 3712: -19,-32 - - node: - color: '#334E6DC8' - id: MiniTileLineOverlayS - decals: - 3809: 11,-55 - 4880: -35,-47 - 4881: -36,-47 - 4882: -37,-47 - 4883: -34,-47 - node: color: '#3C44AA33' id: MiniTileLineOverlayS @@ -3630,17 +2826,6 @@ entities: 3615: 14,-33 3616: 15,-33 3617: 16,-33 - - node: - color: '#9FED5896' - id: MiniTileLineOverlayS - decals: - 1446: 20,-80 - 1448: -1,-71 - - node: - color: '#D381C926' - id: MiniTileLineOverlayS - decals: - 2229: -5,-20 - node: color: '#DE3A3A96' id: MiniTileLineOverlayS @@ -3652,9 +2837,6 @@ entities: id: MiniTileLineOverlayS decals: 1120: -27,-65 - 1146: -17,-57 - 1147: -16,-57 - 1148: -15,-57 - node: color: '#3C44AA33' id: MiniTileLineOverlayW @@ -3666,18 +2848,7 @@ entities: color: '#9FED5896' id: MiniTileLineOverlayW decals: - 1440: -35,-57 - 1454: -15,-35 - 1912: 8,-71 4109: 17,-93 - 4586: 25,-20 - 4957: 23,-32 - - node: - color: '#D381C926' - id: MiniTileLineOverlayW - decals: - 2226: -4,-22 - 2227: -4,-21 - node: color: '#DE3A3A96' id: MiniTileLineOverlayW @@ -3716,7 +2887,6 @@ entities: decals: 297: 24,-94 1118: -28,-65 - 1145: -18,-57 1888: 46,-17 3814: 15,-85 4654: 54,-39 @@ -3726,18 +2896,15 @@ entities: id: MiniTileSteelInnerSw decals: 1117: -26,-65 - 1144: -14,-57 1887: 46,-17 2967: 19,-19 3041: 18,-98 3815: 14,-85 - 4653: 56,-39 - node: color: '#FFFFFFFF' id: MiniTileSteelLineE decals: 1114: -28,-66 - 1443: 29,-51 1597: 7,-17 1882: 46,-18 4342: 66,-40 @@ -3758,11 +2925,6 @@ entities: 1879: 47,-19 1880: 48,-19 3398: 66,-24 - 3410: 4,-35 - 3623: 14,-35 - 3624: 15,-35 - 3625: 16,-35 - 4208: 52,-24 4344: 71,-45 4347: 58,-32 4348: 59,-32 @@ -3775,11 +2937,6 @@ entities: id: MiniTileSteelLineS decals: 1116: -27,-65 - 1141: -17,-57 - 1142: -16,-57 - 1143: -15,-57 - 1445: 20,-80 - 1447: -1,-71 1719: 55,-15 1720: 54,-15 1725: 56,-15 @@ -3787,7 +2944,6 @@ entities: 2963: 17,-19 2964: 18,-19 3040: 17,-98 - 3807: 11,-55 4351: 55,-35 4352: 52,-35 4620: 65,-49 @@ -3796,8 +2952,6 @@ entities: color: '#FFFFFFFF' id: MiniTileSteelLineW decals: - 1439: -35,-57 - 1453: -15,-35 1722: 53,-14 1881: 46,-18 2965: 19,-20 @@ -3807,145 +2961,34 @@ entities: 3039: 18,-99 4108: 17,-93 4346: 61,-37 - 4585: 25,-20 4650: 56,-40 - 4956: 23,-32 - - node: - color: '#1488C2FF' - id: MiniTileWhiteInnerNe - decals: - 606: 16,-67 - - node: - color: '#41920FFF' - id: MiniTileWhiteInnerNe - decals: - 598: -1,-54 - - node: - color: '#48AC56FF' - id: MiniTileWhiteInnerNe - decals: - 613: 14,-67 - - node: - color: '#1488C2FF' - id: MiniTileWhiteInnerNw - decals: - 607: 18,-67 - - node: - color: '#41920FFF' - id: MiniTileWhiteInnerNw - decals: - 599: 1,-54 - - node: - color: '#48AC56FF' - id: MiniTileWhiteInnerNw - decals: - 614: 16,-67 - - node: - color: '#41920FFF' - id: MiniTileWhiteInnerSe - decals: - 600: -1,-52 - node: color: '#48AC56FF' id: MiniTileWhiteInnerSe decals: 4834: 38,-47 - - node: - color: '#DE8000FF' - id: MiniTileWhiteInnerSe - decals: - 593: -1,-57 - node: color: '#48AC56FF' id: MiniTileWhiteInnerSw decals: 4833: 40,-47 - - node: - color: '#DE8000FF' - id: MiniTileWhiteInnerSw - decals: - 592: 1,-57 - - node: - color: '#1488C2FF' - id: MiniTileWhiteLineE - decals: - 603: 16,-66 - - node: - color: '#41920FFF' - id: MiniTileWhiteLineE - decals: - 595: -1,-53 - - node: - color: '#48AC56FF' - id: MiniTileWhiteLineE - decals: - 610: 14,-66 - - node: - color: '#DE8000FF' - id: MiniTileWhiteLineE - decals: - 590: -1,-58 - - node: - color: '#1488C2FF' - id: MiniTileWhiteLineN - decals: - 604: 17,-67 - - node: - color: '#41920FFF' - id: MiniTileWhiteLineN - decals: - 596: 0,-54 - - node: - color: '#48AC56FF' - id: MiniTileWhiteLineN - decals: - 612: 15,-67 - node: color: '#48AC56FF' id: MiniTileWhiteLineS decals: 4832: 39,-47 - - node: - color: '#DE8000FF' - id: MiniTileWhiteLineS - decals: - 589: 0,-57 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineS decals: - 144: 9,-42 - 145: 10,-42 - 146: 11,-42 3609: 14,-33 3610: 15,-33 3611: 16,-33 - - node: - color: '#1488C2FF' - id: MiniTileWhiteLineW - decals: - 605: 18,-66 - - node: - color: '#41920FFF' - id: MiniTileWhiteLineW - decals: - 597: 1,-53 - node: color: '#48AC56FF' id: MiniTileWhiteLineW decals: - 611: 16,-66 4831: 40,-48 - - node: - color: '#DE8000FF' - id: MiniTileWhiteLineW - decals: - 591: 1,-58 - - node: - color: '#334E6DC8' - id: MonoOverlay - decals: - 4894: -34,-43 - node: color: '#D381C971' id: MonoOverlay @@ -3992,13 +3035,12 @@ entities: 1100: -26,-62 1101: -27,-62 - node: - color: '#FED83D94' + color: '#EFDB4196' id: QuarterTileOverlayGreyscale decals: - 51: -23,-51 - 52: -23,-52 - 53: -23,-53 - 54: -23,-50 + 5083: -23,-52 + 5084: -23,-51 + 5085: -23,-50 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 @@ -4021,11 +3063,6 @@ entities: id: QuarterTileOverlayGreyscale180 decals: 4512: 19,-25 - - node: - color: '#00000067' - id: QuarterTileOverlayGreyscale270 - decals: - 2588: -23,-40 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 @@ -4082,13 +3119,12 @@ entities: 1104: -18,-64 1105: -17,-64 - node: - color: '#FED83D94' + color: '#EFDB4196' id: QuarterTileOverlayGreyscale90 decals: - 47: -20,-50 - 48: -20,-51 - 49: -20,-52 - 50: -20,-53 + 5086: -20,-52 + 5087: -20,-51 + 5088: -20,-50 - node: color: '#FFFFFFFF' id: Rock06 @@ -4109,11 +3145,67 @@ entities: 2424: 25,-81 4555: 59,-45 4556: 60,-45 + 5178: -39,-11 - node: - color: '#00000067' - id: ThreeQuarterTileOverlayGreyscale + color: '#D4D4D496' + id: StencilLetterA decals: - 2591: -26,-30 + 5162: -1,-11 + 5169: 4,-11 + 5174: -35,-13 + - node: + color: '#334E6DC8' + id: StencilLetterB + decals: + 5189: -33,-42 + 5190: -33,-50 + - node: + color: '#D4D4D496' + id: StencilLetterC + decals: + 5175: -34,-13 + - node: + color: '#D4D4D496' + id: StencilLetterE + decals: + 5172: -37,-13 + - node: + color: '#D4D4D496' + id: StencilLetterI + decals: + 5167: 2,-11 + - node: + color: '#D4D4D496' + id: StencilLetterL + decals: + 5170: 5,-11 + - node: + color: '#D4D4D496' + id: StencilLetterR + decals: + 5165: 0,-11 + 5166: 1,-11 + - node: + color: '#D4D4D496' + id: StencilLetterS + decals: + 5171: 6,-11 + - node: + color: '#D4D4D496' + id: StencilLetterV + decals: + 5168: 3,-11 + 5173: -36,-13 + - node: + color: '#334E6DC8' + id: StencilNumber1 + decals: + 5126: -32,-42 + - node: + color: '#334E6DC8' + id: StencilNumber2 + decals: + 5191: -32,-50 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale @@ -4126,11 +3218,6 @@ entities: decals: 4692: 58,-27 4720: 62,-33 - - node: - color: '#00000067' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 2592: -17,-43 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 @@ -4143,12 +3230,6 @@ entities: decals: 4689: 60,-30 4722: 64,-36 - - node: - color: '#00000067' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 2589: -23,-43 - 2590: -26,-40 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 @@ -4174,21 +3255,21 @@ entities: decals: 4691: 60,-27 4721: 64,-33 + - node: + color: '#43990996' + id: WarnBox + decals: + 5092: 0,-53 + 5093: 0,-53 - node: color: '#FFFFFFFF' id: WarnBox decals: 584: 17,-66 586: 0,-58 - 587: 0,-53 608: 15,-66 4356: 20,-26 4835: 39,-48 - - node: - color: '#41AC28FF' - id: WarnBoxGreyscale - decals: - 594: 0,-53 - node: color: '#48D256FF' id: WarnBoxGreyscale @@ -4210,11 +3291,69 @@ entities: id: WarnBoxGreyscale decals: 588: 0,-58 + - node: + color: '#D381C996' + id: WarnCornerGreyscaleNE + decals: + 5074: -4,-20 + - node: + color: '#FFFFFFFF' + id: WarnCornerGreyscaleNE + decals: + 4997: 30,-25 + 5006: -7,-43 + 5062: -4,-25 + - node: + color: '#FFFFFFFF' + id: WarnCornerGreyscaleNW + decals: + 4996: 27,-25 + 5007: -11,-43 + 5063: -6,-25 + - node: + color: '#D381C996' + id: WarnCornerGreyscaleSE + decals: + 5077: -4,-23 + 5080: -7,-26 + - node: + color: '#FFFFFFFF' + id: WarnCornerGreyscaleSE + decals: + 4995: 23,-25 + 5009: -7,-44 + 5066: -4,-27 + - node: + color: '#FFFFFFFF' + id: WarnCornerGreyscaleSW + decals: + 4985: -10,-50 + 5008: -11,-44 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: 1089: 6,-18 + 4968: 25,-53 + 5052: -4,-34 + - node: + color: '#FFFFFFFF' + id: WarnCornerNW + decals: + 4969: 23,-53 + 5053: -11,-34 + - node: + color: '#FFFFFFFF' + id: WarnCornerSE + decals: + 4967: 25,-55 + 5048: -4,-38 + - node: + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 4966: 23,-55 + 5047: -11,-38 - node: color: '#D381C9FF' id: WarnCornerSmallGreyscaleNE @@ -4234,6 +3373,11 @@ entities: 3120: -8,-24 3123: -18,-24 3483: -16,-20 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleNW + decals: + 5069: -6,-27 - node: color: '#D381C9FF' id: WarnCornerSmallGreyscaleSE @@ -4322,6 +3466,11 @@ entities: id: WarnEndGreyscaleW decals: 4547: 58,-45 + - node: + color: '#FFFFFFFF' + id: WarnEndGreyscaleW + decals: + 5068: -7,-27 - node: color: '#FFFFFFFF' id: WarnEndW @@ -4385,12 +3534,27 @@ entities: 4764: 76,-44 4766: 82,-45 4767: 82,-47 + 4972: 25,-54 + 5049: -4,-37 + 5050: -4,-36 + 5051: -4,-35 + 5117: -35,-50 + 5118: -35,-49 + 5119: -35,-43 + 5120: -35,-42 - node: color: '#33A9E7FF' id: WarnLineGreyscaleE decals: 3820: 28,-61 3821: 28,-62 + - node: + color: '#D381C996' + id: WarnLineGreyscaleE + decals: + 5075: -4,-21 + 5076: -4,-22 + 5081: -7,-25 - node: color: '#D381C9FF' id: WarnLineGreyscaleE @@ -4409,13 +3573,20 @@ entities: 4699: 65,-35 4700: 65,-34 - node: - color: '#70FFB3FF' + color: '#FFFFFFFF' + id: WarnLineGreyscaleE + decals: + 5000: 23,-24 + 5001: 23,-23 + 5065: -4,-26 + - node: + color: '#D381C996' id: WarnLineGreyscaleN decals: - 39: -35,-47 - 40: -36,-47 - 41: -37,-47 - 42: -34,-47 + 5019: -9,-29 + 5020: -8,-29 + 5072: -6,-20 + 5073: -5,-20 - node: color: '#D381C9FF' id: WarnLineGreyscaleN @@ -4427,20 +3598,41 @@ entities: color: '#DE3A3AFF' id: WarnLineGreyscaleN decals: - 4119: 58,-22 - 4120: 59,-22 - 4121: 61,-22 4239: 51,-32 4551: 59,-45 4552: 60,-45 - node: - color: '#70FFB3FF' + color: '#FFFFFFFF' + id: WarnLineGreyscaleN + decals: + 4998: 29,-25 + 4999: 28,-25 + 5013: -10,-43 + 5014: -9,-43 + 5064: -5,-25 + 5114: -37,-45 + 5115: -36,-45 + 5116: -35,-45 + 5140: -43,-41 + 5141: -42,-41 + 5142: -41,-41 + 5143: -40,-41 + 5144: -39,-41 + - node: + color: '#52B4E996' id: WarnLineGreyscaleS decals: - 36: -37,-45 - 37: -36,-45 - 38: -35,-45 - 43: -34,-45 + 5004: 28,-25 + 5005: 29,-25 + - node: + color: '#D381C996' + id: WarnLineGreyscaleS + decals: + 5078: -5,-23 + 5079: -6,-23 + 5131: 8,-74 + 5132: 9,-74 + 5133: 10,-74 - node: color: '#D381C9FF' id: WarnLineGreyscaleS @@ -4470,15 +3662,40 @@ entities: 1640: 54,-21 1641: 55,-21 1642: 56,-21 - 4122: 58,-22 - 4123: 59,-22 - 4124: 61,-22 4542: 61,-44 4543: 60,-44 4544: 59,-44 4545: 58,-44 4549: 59,-45 4550: 60,-45 + - node: + color: '#FFDB41FF' + id: WarnLineGreyscaleS + decals: + 4991: -26,-59 + 4992: -27,-59 + 4993: -25,-59 + 4994: -24,-59 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleS + decals: + 4983: -8,-50 + 4984: -9,-50 + 5010: -9,-44 + 5011: -8,-44 + 5012: -10,-44 + 5061: -5,-27 + 5067: -6,-27 + 5109: -37,-47 + 5112: -35,-47 + 5113: -36,-47 + - node: + color: '#52B4E996' + id: WarnLineGreyscaleW + decals: + 5002: 23,-24 + 5003: 23,-23 - node: color: '#D381C9FF' id: WarnLineGreyscaleW @@ -4490,6 +3707,18 @@ entities: id: WarnLineGreyscaleW decals: 4541: 62,-45 + - node: + color: '#FA750096' + id: WarnLineGreyscaleW + decals: + 5134: 23,-69 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleW + decals: + 4986: -10,-49 + 4987: -10,-48 + 5060: -6,-26 - node: color: '#FFFFFFFF' id: WarnLineN @@ -4542,9 +3771,6 @@ entities: 3912: -19,-71 3913: -18,-71 4096: 46,-68 - 4112: 59,-22 - 4113: 58,-22 - 4114: 61,-22 4172: 74,-61 4173: 75,-61 4514: 20,-25 @@ -4554,6 +3780,13 @@ entities: 4535: 60,-44 4536: 59,-44 4537: 58,-44 + 4971: 24,-55 + 5033: -10,-38 + 5034: -9,-38 + 5035: -8,-38 + 5036: -7,-38 + 5037: -6,-38 + 5038: -5,-38 - node: color: '#FFFFFFFF' id: WarnLineS @@ -4569,13 +3802,19 @@ entities: 3089: -18,-23 3112: -8,-23 3160: -10,-36 - 3316: 58,-20 3901: -31,-71 3906: -13,-70 4093: 47,-69 4094: 47,-70 4095: 47,-71 4533: 62,-45 + 4973: 23,-54 + 5045: -11,-35 + 5046: -11,-37 + 5121: -30,-43 + 5122: -30,-42 + 5123: -30,-50 + 5124: -30,-49 - node: color: '#FFFFFFFF' id: WarnLineW @@ -4593,9 +3832,6 @@ entities: 3466: -17,-17 3467: -17,-20 4097: 46,-72 - 4110: 61,-22 - 4111: 59,-22 - 4115: 58,-22 4170: 75,-63 4171: 74,-63 4529: 59,-45 @@ -4603,6 +3839,13 @@ entities: 4806: 49,-98 4807: 50,-98 4808: 51,-98 + 4970: 24,-53 + 5039: -10,-34 + 5040: -9,-34 + 5041: -8,-34 + 5042: -7,-34 + 5043: -6,-34 + 5044: -5,-34 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' @@ -4932,7 +4175,9 @@ entities: -1,-5: 0: 65485 -4,-8: - 0: 58574 + 0: 58589 + -4,-9: + 0: 56797 -5,-8: 0: 7579 -4,-7: @@ -4945,8 +4190,6 @@ entities: 0: 65524 -5,-5: 0: 56799 - -4,-9: - 0: 61166 -3,-8: 0: 47359 -3,-7: @@ -4970,7 +4213,7 @@ entities: -1,-6: 0: 56796 -1,-9: - 0: 65535 + 0: 65279 0,-8: 0: 22015 0,-7: @@ -5136,7 +4379,7 @@ entities: 6,-10: 0: 15291 6,-13: - 0: 65534 + 0: 65535 7,-12: 0: 65523 7,-11: @@ -5162,9 +4405,9 @@ entities: -5,-11: 0: 65520 -4,-10: - 0: 61439 + 0: 53247 -5,-10: - 0: 8191 + 0: 40959 -5,-9: 0: 48029 -4,-13: @@ -5174,7 +4417,7 @@ entities: -3,-11: 0: 61678 -3,-10: - 0: 65535 + 0: 65023 -3,-13: 0: 65262 -2,-12: @@ -5206,7 +4449,7 @@ entities: -8,-4: 0: 65533 -8,-9: - 0: 53246 + 0: 53247 -7,-8: 0: 7645 -7,-7: @@ -5254,9 +4497,9 @@ entities: -9,-11: 0: 16371 -8,-10: - 0: 52991 + 0: 61439 -9,-10: - 0: 32760 + 0: 65528 -9,-9: 0: 20207 -8,-12: @@ -5272,7 +4515,7 @@ entities: -6,-12: 0: 61422 -6,-10: - 0: 4095 + 0: 8191 -6,-11: 0: 61156 -5,-13: @@ -5280,7 +4523,7 @@ entities: -1,-16: 0: 4095 0,-16: - 0: 26208 + 0: 58976 0,-15: 0: 30479 -1,-15: @@ -5326,7 +4569,7 @@ entities: 5,-15: 0: 65512 5,-14: - 0: 64511 + 0: 65535 5,-17: 0: 35771 6,-16: @@ -5334,7 +4577,7 @@ entities: 6,-15: 0: 65523 6,-14: - 0: 65534 + 0: 65531 6,-17: 0: 46079 7,-16: @@ -5437,9 +4680,9 @@ entities: -9,-15: 0: 61158 -8,-14: - 0: 65230 + 0: 65519 -9,-14: - 0: 61038 + 0: 61166 -9,-13: 0: 65336 -7,-16: @@ -5502,10 +4745,10 @@ entities: 0: 65456 -10,-16: 0: 18020 + -10,-12: + 0: 49084 -9,-16: 0: 30583 - -10,-12: - 0: 49080 -9,-17: 0: 30707 -9,-12: @@ -5526,7 +4769,7 @@ entities: -13,-9: 0: 12 -11,-11: - 0: 65523 + 0: 65527 -11,-9: 0: 15 1: 65280 @@ -6470,7 +5713,7 @@ entities: 16,-6: 0: 60967 15,-6: - 0: 64143 + 0: 64399 16,-5: 0: 1918 15,-5: @@ -6519,9 +5762,9 @@ entities: 11,-7: 0: 63590 12,-6: - 0: 65407 + 0: 65295 11,-6: - 0: 65535 + 0: 65295 12,-5: 0: 11775 11,-5: @@ -6529,9 +5772,9 @@ entities: 12,-4: 0: 4095 13,-7: - 0: 64952 + 0: 63928 13,-6: - 0: 65487 + 0: 65295 13,-5: 0: 65023 13,-4: @@ -6539,7 +5782,7 @@ entities: 14,-7: 0: 61919 14,-6: - 0: 57119 + 0: 57103 14,-5: 0: 57119 14,-4: @@ -6566,7 +5809,7 @@ entities: 10,-7: 0: 64461 10,-6: - 0: 53215 + 0: 53007 10,-5: 0: 63485 10,-9: @@ -7051,6 +6294,8 @@ entities: - 19139 - 19838 - 19837 + - type: Fixtures + fixtures: {} - uid: 459 components: - type: Transform @@ -7068,6 +6313,8 @@ entities: - 19831 - 19832 - 19833 + - type: Fixtures + fixtures: {} - uid: 8767 components: - type: Transform @@ -7084,6 +6331,8 @@ entities: - 6667 - 13188 - 4984 + - type: Fixtures + fixtures: {} - uid: 8816 components: - type: Transform @@ -7099,6 +6348,8 @@ entities: - 4166 - 3444 - 3445 + - type: Fixtures + fixtures: {} - uid: 9115 components: - type: Transform @@ -7108,6 +6359,8 @@ entities: devices: - 6133 - 9819 + - type: Fixtures + fixtures: {} - uid: 14458 components: - type: Transform @@ -7133,6 +6386,8 @@ entities: - 9647 - 7459 - 1833 + - type: Fixtures + fixtures: {} - uid: 14460 components: - type: Transform @@ -7156,6 +6411,8 @@ entities: - 8775 - 19234 - 19235 + - type: Fixtures + fixtures: {} - uid: 14590 components: - type: Transform @@ -7174,6 +6431,8 @@ entities: - 7135 - 8640 - 18857 + - type: Fixtures + fixtures: {} - uid: 14592 components: - type: Transform @@ -7186,6 +6445,8 @@ entities: - 8872 - 16901 - 18857 + - type: Fixtures + fixtures: {} - uid: 14593 components: - type: Transform @@ -7200,6 +6461,8 @@ entities: - 14595 - 9428 - 14713 + - type: Fixtures + fixtures: {} - uid: 14636 components: - type: Transform @@ -7213,6 +6476,8 @@ entities: - 8665 - 15401 - 8712 + - type: Fixtures + fixtures: {} - uid: 14642 components: - type: Transform @@ -7231,6 +6496,8 @@ entities: - 1595 - 18775 - 3279 + - type: Fixtures + fixtures: {} - uid: 14682 components: - type: Transform @@ -7245,6 +6512,8 @@ entities: - 6977 - 6978 - 3659 + - type: Fixtures + fixtures: {} - uid: 14752 components: - type: Transform @@ -7258,6 +6527,8 @@ entities: - 8760 - 14754 - 18091 + - type: Fixtures + fixtures: {} - uid: 14757 components: - type: Transform @@ -7277,6 +6548,8 @@ entities: - 1698 - 18843 - 18844 + - type: Fixtures + fixtures: {} - uid: 14759 components: - type: Transform @@ -7288,6 +6561,8 @@ entities: - 19924 - 9080 - 12242 + - type: Fixtures + fixtures: {} - uid: 14778 components: - type: Transform @@ -7302,6 +6577,8 @@ entities: - 14547 - 14549 - 14545 + - type: Fixtures + fixtures: {} - uid: 16343 components: - type: Transform @@ -7312,6 +6589,8 @@ entities: devices: - 17517 - 17518 + - type: Fixtures + fixtures: {} - uid: 16344 components: - type: Transform @@ -7321,6 +6600,8 @@ entities: devices: - 17943 - 17926 + - type: Fixtures + fixtures: {} - uid: 16345 components: - type: Transform @@ -7331,6 +6612,8 @@ entities: devices: - 17695 - 17700 + - type: Fixtures + fixtures: {} - uid: 16346 components: - type: Transform @@ -7346,6 +6629,8 @@ entities: - 19907 - 17956 - 17957 + - type: Fixtures + fixtures: {} - uid: 16353 components: - type: Transform @@ -7356,6 +6641,8 @@ entities: devices: - 17908 - 17909 + - type: Fixtures + fixtures: {} - uid: 16354 components: - type: Transform @@ -7381,6 +6668,8 @@ entities: - 19907 - 17906 - 17997 + - type: Fixtures + fixtures: {} - uid: 16356 components: - type: Transform @@ -7397,6 +6686,8 @@ entities: - 17601 - 17516 - 17996 + - type: Fixtures + fixtures: {} - uid: 17282 components: - type: Transform @@ -7412,6 +6703,8 @@ entities: - 18547 - 2334 - 2406 + - type: Fixtures + fixtures: {} - uid: 17993 components: - type: Transform @@ -7422,6 +6715,8 @@ entities: devices: - 17992 - 17990 + - type: Fixtures + fixtures: {} - uid: 18013 components: - type: Transform @@ -7438,6 +6733,8 @@ entities: - 17153 - 18091 - 13567 + - type: Fixtures + fixtures: {} - uid: 18059 components: - type: Transform @@ -7456,6 +6753,8 @@ entities: - 7109 - 2155 - 4170 + - type: Fixtures + fixtures: {} - uid: 18493 components: - type: Transform @@ -7467,6 +6766,8 @@ entities: - 16173 - 13567 - 3659 + - type: Fixtures + fixtures: {} - uid: 18818 components: - type: Transform @@ -7475,18 +6776,6 @@ entities: parent: 2 - type: DeviceList devices: - - 11725 - - 11724 - - 11723 - - 7979 - - 11721 - - 11720 - - 11719 - - 11718 - - 11717 - - 11716 - - 11715 - - 11712 - 4169 - 8778 - 18055 @@ -7499,6 +6788,8 @@ entities: - 9082 - 9066 - 19872 + - type: Fixtures + fixtures: {} - uid: 19220 components: - type: Transform @@ -7508,6 +6799,8 @@ entities: devices: - 19267 - 8020 + - type: Fixtures + fixtures: {} - uid: 19835 components: - type: Transform @@ -7520,6 +6813,8 @@ entities: - 19834 - 8832 - 8831 + - type: Fixtures + fixtures: {} - uid: 19836 components: - type: Transform @@ -7533,6 +6828,8 @@ entities: - 14635 - 14634 - 10070 + - type: Fixtures + fixtures: {} - uid: 19905 components: - type: Transform @@ -7543,6 +6840,8 @@ entities: devices: - 17267 - 17265 + - type: Fixtures + fixtures: {} - uid: 19909 components: - type: Transform @@ -7557,6 +6856,8 @@ entities: - 19906 - 19912 - 3447 + - type: Fixtures + fixtures: {} - uid: 19911 components: - type: Transform @@ -7570,6 +6871,8 @@ entities: - 16247 - 17913 - 17911 + - type: Fixtures + fixtures: {} - proto: AirAlarmFreezer entities: - uid: 7344 @@ -7578,6 +6881,8 @@ entities: rot: 3.141592653589793 rad pos: 44.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: AirAlarmXeno entities: - uid: 469 @@ -7611,6 +6916,8 @@ entities: - 19825 - 19826 - 19827 + - type: Fixtures + fixtures: {} - uid: 569 components: - type: Transform @@ -7632,6 +6939,8 @@ entities: - 19893 - 19894 - 19895 + - type: Fixtures + fixtures: {} - uid: 572 components: - type: Transform @@ -7647,6 +6956,8 @@ entities: - 9613 - 6422 - 18812 + - type: Fixtures + fixtures: {} - uid: 579 components: - type: Transform @@ -7657,9 +6968,6 @@ entities: devices: - 14728 - 7109 - - 11725 - - 11724 - - 11723 - 9877 - 9383 - 16452 @@ -7667,6 +6975,8 @@ entities: - 19871 - 19870 - 8480 + - type: Fixtures + fixtures: {} - uid: 1075 components: - type: Transform @@ -7685,6 +6995,8 @@ entities: - 18797 - 8791 - 19204 + - type: Fixtures + fixtures: {} - uid: 1212 components: - type: Transform @@ -7702,6 +7014,8 @@ entities: - 4096 - 19820 - 19821 + - type: Fixtures + fixtures: {} - uid: 1751 components: - type: Transform @@ -7718,6 +7032,8 @@ entities: - 19841 - 19840 - 19839 + - type: Fixtures + fixtures: {} - uid: 1876 components: - type: Transform @@ -7739,6 +7055,8 @@ entities: - 8498 - 9715 - 2462 + - type: Fixtures + fixtures: {} - uid: 2110 components: - type: Transform @@ -7757,6 +7075,8 @@ entities: - 2462 - 19815 - 811 + - type: Fixtures + fixtures: {} - uid: 2197 components: - type: Transform @@ -7768,6 +7088,8 @@ entities: - 8683 - 18805 - 262 + - type: Fixtures + fixtures: {} - uid: 3424 components: - type: Transform @@ -7783,6 +7105,8 @@ entities: - 8548 - 8549 - 16872 + - type: Fixtures + fixtures: {} - uid: 3897 components: - type: Transform @@ -7814,6 +7138,8 @@ entities: - 8107 - 16242 - 19830 + - type: Fixtures + fixtures: {} - uid: 5107 components: - type: Transform @@ -7830,6 +7156,8 @@ entities: - 7956 - 10474 - 10473 + - type: Fixtures + fixtures: {} - uid: 5159 components: - type: Transform @@ -7838,6 +7166,8 @@ entities: - type: DeviceList devices: - 5168 + - type: Fixtures + fixtures: {} - uid: 5526 components: - type: Transform @@ -7853,6 +7183,8 @@ entities: - 9494 - 14797 - 19819 + - type: Fixtures + fixtures: {} - uid: 5862 components: - type: Transform @@ -7864,6 +7196,8 @@ entities: - 10342 - 10341 - 8758 + - type: Fixtures + fixtures: {} - uid: 6342 components: - type: Transform @@ -7875,6 +7209,8 @@ entities: - 14786 - 14785 - 8649 + - type: Fixtures + fixtures: {} - uid: 6347 components: - type: Transform @@ -7892,6 +7228,8 @@ entities: - 8439 - 8438 - 18862 + - type: Fixtures + fixtures: {} - uid: 6358 components: - type: Transform @@ -7905,6 +7243,8 @@ entities: - 3448 - 19873 - 19874 + - type: Fixtures + fixtures: {} - uid: 6406 components: - type: Transform @@ -7919,6 +7259,8 @@ entities: - 8433 - 8434 - 19885 + - type: Fixtures + fixtures: {} - uid: 6407 components: - type: Transform @@ -7932,6 +7274,8 @@ entities: - 8860 - 8859 - 8721 + - type: Fixtures + fixtures: {} - uid: 6410 components: - type: Transform @@ -7946,6 +7290,8 @@ entities: - 8493 - 8862 - 8863 + - type: Fixtures + fixtures: {} - uid: 6411 components: - type: Transform @@ -7965,6 +7311,8 @@ entities: - 19800 - 19801 - 8751 + - type: Fixtures + fixtures: {} - uid: 6413 components: - type: Transform @@ -7986,6 +7334,8 @@ entities: - 19805 - 19807 - 19808 + - type: Fixtures + fixtures: {} - uid: 6416 components: - type: Transform @@ -7997,6 +7347,8 @@ entities: - 8713 - 8714 - 8715 + - type: Fixtures + fixtures: {} - uid: 6646 components: - type: Transform @@ -8015,6 +7367,8 @@ entities: - 19797 - 19798 - 4002 + - type: Fixtures + fixtures: {} - uid: 7245 components: - type: Transform @@ -8025,6 +7379,8 @@ entities: devices: - 6701 - 9820 + - type: Fixtures + fixtures: {} - uid: 7310 components: - type: Transform @@ -8041,6 +7397,8 @@ entities: - 3081 - 18842 - 19920 + - type: Fixtures + fixtures: {} - uid: 7582 components: - type: Transform @@ -8053,6 +7411,8 @@ entities: - 18293 - 18312 - 6423 + - type: Fixtures + fixtures: {} - uid: 7875 components: - type: Transform @@ -8063,6 +7423,8 @@ entities: devices: - 9546 - 8705 + - type: Fixtures + fixtures: {} - uid: 8130 components: - type: Transform @@ -8072,6 +7434,8 @@ entities: - type: DeviceList devices: - 1112 + - type: Fixtures + fixtures: {} - uid: 9180 components: - type: Transform @@ -8093,6 +7457,8 @@ entities: - 5577 - 5575 - 5576 + - type: Fixtures + fixtures: {} - uid: 9190 components: - type: Transform @@ -8114,6 +7480,8 @@ entities: - 19812 - 19814 - 19813 + - type: Fixtures + fixtures: {} - uid: 9195 components: - type: Transform @@ -8133,6 +7501,8 @@ entities: - 10030 - 20047 - 20048 + - type: Fixtures + fixtures: {} - uid: 9198 components: - type: Transform @@ -8150,6 +7520,8 @@ entities: - 11336 - 18786 - 8605 + - type: Fixtures + fixtures: {} - uid: 9199 components: - type: Transform @@ -8166,6 +7538,8 @@ entities: - 19830 - 19829 - 19828 + - type: Fixtures + fixtures: {} - uid: 9216 components: - type: Transform @@ -8185,6 +7559,8 @@ entities: - 19892 - 19891 - 8759 + - type: Fixtures + fixtures: {} - uid: 9234 components: - type: Transform @@ -8206,6 +7582,8 @@ entities: - 15243 - 15173 - 14797 + - type: Fixtures + fixtures: {} - uid: 9235 components: - type: Transform @@ -8224,6 +7602,8 @@ entities: - 19877 - 19878 - 19879 + - type: Fixtures + fixtures: {} - uid: 9236 components: - type: Transform @@ -8250,6 +7630,8 @@ entities: - 8417 - 8424 - 8556 + - type: Fixtures + fixtures: {} - uid: 9239 components: - type: Transform @@ -8277,6 +7659,8 @@ entities: - 19894 - 19895 - 19899 + - type: Fixtures + fixtures: {} - uid: 9240 components: - type: Transform @@ -8296,6 +7680,8 @@ entities: - 19896 - 19897 - 19898 + - type: Fixtures + fixtures: {} - uid: 9241 components: - type: Transform @@ -8312,6 +7698,8 @@ entities: - 8790 - 19882 - 1800 + - type: Fixtures + fixtures: {} - uid: 9243 components: - type: Transform @@ -8331,6 +7719,8 @@ entities: - 7012 - 9833 - 7056 + - type: Fixtures + fixtures: {} - uid: 9248 components: - type: Transform @@ -8346,6 +7736,8 @@ entities: - 9410 - 10326 - 19920 + - type: Fixtures + fixtures: {} - uid: 9262 components: - type: Transform @@ -8364,6 +7756,8 @@ entities: - 8730 - 8479 - 8731 + - type: Fixtures + fixtures: {} - uid: 9403 components: - type: Transform @@ -8386,6 +7780,8 @@ entities: - 19886 - 19889 - 19890 + - type: Fixtures + fixtures: {} - uid: 10429 components: - type: Transform @@ -8395,6 +7791,8 @@ entities: devices: - 8622 - 9834 + - type: Fixtures + fixtures: {} - uid: 10761 components: - type: Transform @@ -8414,6 +7812,8 @@ entities: - 18399 - 18398 - 15636 + - type: Fixtures + fixtures: {} - uid: 10839 components: - type: Transform @@ -8433,6 +7833,8 @@ entities: - 3747 - 9311 - 7594 + - type: Fixtures + fixtures: {} - uid: 12980 components: - type: Transform @@ -8442,6 +7844,8 @@ entities: devices: - 10474 - 10473 + - type: Fixtures + fixtures: {} - uid: 15885 components: - type: Transform @@ -8463,6 +7867,8 @@ entities: - 14692 - 18794 - 18793 + - type: Fixtures + fixtures: {} - uid: 16120 components: - type: Transform @@ -8479,6 +7885,8 @@ entities: - 9963 - 8717 - 4002 + - type: Fixtures + fixtures: {} - uid: 16312 components: - type: Transform @@ -8499,6 +7907,8 @@ entities: - 16910 - 16911 - 17995 + - type: Fixtures + fixtures: {} - uid: 16342 components: - type: Transform @@ -8509,6 +7919,8 @@ entities: devices: - 10595 - 10279 + - type: Fixtures + fixtures: {} - uid: 16362 components: - type: Transform @@ -8526,6 +7938,8 @@ entities: - 18554 - 18525 - 18731 + - type: Fixtures + fixtures: {} - uid: 16363 components: - type: Transform @@ -8539,6 +7953,8 @@ entities: - 18726 - 18725 - 18735 + - type: Fixtures + fixtures: {} - uid: 16367 components: - type: Transform @@ -8567,6 +7983,8 @@ entities: - 15526 - 1104 - 18400 + - type: Fixtures + fixtures: {} - uid: 16603 components: - type: Transform @@ -8579,6 +7997,8 @@ entities: - 18762 - 8847 - 8849 + - type: Fixtures + fixtures: {} - uid: 17680 components: - type: Transform @@ -8595,6 +8015,8 @@ entities: - 19825 - 19892 - 19891 + - type: Fixtures + fixtures: {} - uid: 18736 components: - type: Transform @@ -8607,6 +8029,8 @@ entities: - 18731 - 18665 - 18666 + - type: Fixtures + fixtures: {} - uid: 18783 components: - type: Transform @@ -8617,6 +8041,8 @@ entities: devices: - 8762 - 813 + - type: Fixtures + fixtures: {} - uid: 18864 components: - type: Transform @@ -8631,6 +8057,8 @@ entities: - 8677 - 8678 - 262 + - type: Fixtures + fixtures: {} - uid: 19200 components: - type: Transform @@ -8650,12 +8078,16 @@ entities: - 8844 - 8792 - 8718 + - type: Fixtures + fixtures: {} - uid: 19312 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,-65.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19400 components: - type: Transform @@ -8674,6 +8106,8 @@ entities: - 19822 - 19823 - 19824 + - type: Fixtures + fixtures: {} - uid: 19419 components: - type: Transform @@ -8687,6 +8121,8 @@ entities: - 18786 - 9596 - 11935 + - type: Fixtures + fixtures: {} - uid: 19853 components: - type: Transform @@ -8706,6 +8142,8 @@ entities: - 19847 - 8644 - 9840 + - type: Fixtures + fixtures: {} - uid: 19856 components: - type: Transform @@ -8719,18 +8157,11 @@ entities: - 8550 - 9383 - 9877 - - 7979 - - 11721 - - 11720 - - 11719 - - 11718 - - 11717 - - 11716 - - 11715 - - 11712 - 18681 - 18673 - 18828 + - type: Fixtures + fixtures: {} - uid: 19876 components: - type: Transform @@ -8743,6 +8174,8 @@ entities: - 8818 - 2646 - 8740 + - type: Fixtures + fixtures: {} - uid: 19880 components: - type: Transform @@ -8765,6 +8198,8 @@ entities: - 18789 - 18811 - 19882 + - type: Fixtures + fixtures: {} - uid: 19883 components: - type: Transform @@ -8774,6 +8209,8 @@ entities: devices: - 9247 - 582 + - type: Fixtures + fixtures: {} - uid: 19884 components: - type: Transform @@ -8783,6 +8220,8 @@ entities: devices: - 10371 - 10370 + - type: Fixtures + fixtures: {} - uid: 19916 components: - type: Transform @@ -8796,6 +8235,8 @@ entities: - 19915 - 18832 - 591 + - type: Fixtures + fixtures: {} - uid: 19917 components: - type: Transform @@ -8805,6 +8246,8 @@ entities: - type: DeviceList devices: - 19064 + - type: Fixtures + fixtures: {} - uid: 19922 components: - type: Transform @@ -8814,6 +8257,8 @@ entities: - type: DeviceList devices: - 19923 + - type: Fixtures + fixtures: {} - uid: 19961 components: - type: Transform @@ -8824,6 +8269,8 @@ entities: devices: - 9696 - 9699 + - type: Fixtures + fixtures: {} - uid: 19962 components: - type: Transform @@ -8834,6 +8281,8 @@ entities: devices: - 11944 - 10832 + - type: Fixtures + fixtures: {} - uid: 19963 components: - type: Transform @@ -8843,6 +8292,8 @@ entities: devices: - 9702 - 14581 + - type: Fixtures + fixtures: {} - uid: 19964 components: - type: Transform @@ -8853,6 +8304,8 @@ entities: devices: - 5830 - 9701 + - type: Fixtures + fixtures: {} - proto: AirCanister entities: - uid: 6560 @@ -9015,13 +8468,6 @@ entities: - type: Transform pos: 56.5,-29.5 parent: 2 -- proto: AirlockBrigLocked - entities: - - uid: 6126 - components: - - type: Transform - pos: 40.5,-22.5 - parent: 2 - proto: AirlockCaptainLocked entities: - uid: 1217 @@ -9064,6 +8510,18 @@ entities: - type: Transform pos: 16.5,-83.5 parent: 2 +- proto: AirlockChapelGlassLocked + entities: + - uid: 176 + components: + - type: Transform + pos: -19.5,-36.5 + parent: 2 + - uid: 180 + components: + - type: Transform + pos: -19.5,-34.5 + parent: 2 - proto: AirlockChapelLocked entities: - uid: 162 @@ -9071,18 +8529,6 @@ entities: - type: Transform pos: -21.5,-43.5 parent: 2 -- proto: AirlockChapelStandardGlassLocked - entities: - - uid: 161 - components: - - type: Transform - pos: -19.5,-36.5 - parent: 2 - - uid: 248 - components: - - type: Transform - pos: -19.5,-34.5 - parent: 2 - proto: AirlockChemistryGlassLocked entities: - uid: 173 @@ -9228,12 +8674,6 @@ entities: - type: Transform pos: -16.5,-62.5 parent: 2 - - uid: 4653 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-53.5 - parent: 2 - proto: AirlockEngineeringLocked entities: - uid: 3 @@ -9913,6 +9353,11 @@ entities: parent: 2 - proto: AirlockGlassXeno entities: + - uid: 270 + components: + - type: Transform + pos: -3.5,-42.5 + parent: 2 - uid: 327 components: - type: Transform @@ -9958,11 +9403,6 @@ entities: - type: Transform pos: -12.5,-43.5 parent: 2 - - uid: 931 - components: - - type: Transform - pos: 26.5,-44.5 - parent: 2 - uid: 932 components: - type: Transform @@ -10203,21 +9643,6 @@ entities: - type: Transform pos: 31.5,-54.5 parent: 2 - - uid: 3876 - components: - - type: Transform - pos: 29.5,-47.5 - parent: 2 - - uid: 4211 - components: - - type: Transform - pos: 28.5,-47.5 - parent: 2 - - uid: 4271 - components: - - type: Transform - pos: 26.5,-43.5 - parent: 2 - uid: 4584 components: - type: Transform @@ -10371,6 +9796,45 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,-28.5 parent: 2 +- proto: AirlockHatch + entities: + - uid: 230 + components: + - type: Transform + pos: 26.5,-43.5 + parent: 2 + - uid: 244 + components: + - type: Transform + pos: 26.5,-44.5 + parent: 2 + - uid: 287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-60.5 + parent: 2 + - uid: 389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-70.5 + parent: 2 + - uid: 468 + components: + - type: Transform + pos: 5.5,-59.5 + parent: 2 + - uid: 4686 + components: + - type: Transform + pos: 28.5,-47.5 + parent: 2 + - uid: 11131 + components: + - type: Transform + pos: 29.5,-47.5 + parent: 2 - proto: AirlockHeadOfPersonnelLocked entities: - uid: 1491 @@ -10489,16 +9953,17 @@ entities: parent: 2 - proto: AirlockMaintHydroLocked entities: + - uid: 248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-58.5 + parent: 2 - uid: 998 components: - type: Transform pos: -0.5,-44.5 parent: 2 - - uid: 1071 - components: - - type: Transform - pos: -4.5,-58.5 - parent: 2 - proto: AirlockMaintJanitorLocked entities: - uid: 1025 @@ -10601,7 +10066,7 @@ entities: pos: 11.5,-30.5 parent: 2 - type: Door - secondsUntilStateChange: -221892.55 + secondsUntilStateChange: -231736.94 state: Opening - type: DeviceLinkSource lastSignals: @@ -10948,6 +10413,12 @@ entities: - type: Transform pos: 34.5,-36.5 parent: 2 + - type: Door + secondsUntilStateChange: -7234.6396 + state: Opening + - type: DeviceLinkSource + lastSignals: + DoorStatus: True - uid: 233 components: - type: Transform @@ -10978,11 +10449,6 @@ entities: - type: Transform pos: -48.5,-65.5 parent: 2 - - uid: 585 - components: - - type: Transform - pos: -3.5,-42.5 - parent: 2 - uid: 586 components: - type: Transform @@ -11003,11 +10469,6 @@ entities: - type: Transform pos: 4.5,-55.5 parent: 2 - - uid: 615 - components: - - type: Transform - pos: -8.5,-60.5 - parent: 2 - uid: 617 components: - type: Transform @@ -11053,11 +10514,6 @@ entities: - type: Transform pos: -1.5,-76.5 parent: 2 - - uid: 735 - components: - - type: Transform - pos: -7.5,-70.5 - parent: 2 - uid: 737 components: - type: Transform @@ -11262,16 +10718,6 @@ entities: rot: 3.141592653589793 rad pos: 72.5,-64.5 parent: 2 - - uid: 10742 - components: - - type: Transform - pos: 3.5,-59.5 - parent: 2 - - uid: 10786 - components: - - type: Transform - pos: 5.5,-59.5 - parent: 2 - uid: 10805 components: - type: Transform @@ -12096,6 +11542,14 @@ entities: - type: Transform pos: -18.5,-32.5 parent: 2 +- proto: AlwaysPoweredlightGreen + entities: + - uid: 5683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-56.5 + parent: 2 - proto: AmeController entities: - uid: 2283 @@ -12147,6 +11601,8 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 474 components: - type: MetaData @@ -12155,6 +11611,8 @@ entities: rot: 1.5707963267948966 rad pos: 27.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3106 components: - type: MetaData @@ -12163,6 +11621,8 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3338 components: - type: MetaData @@ -12171,6 +11631,8 @@ entities: rot: 1.5707963267948966 rad pos: 72.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3733 components: - type: MetaData @@ -12179,6 +11641,8 @@ entities: rot: 3.141592653589793 rad pos: 58.5,-66.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4618 components: - type: MetaData @@ -12186,6 +11650,8 @@ entities: - type: Transform pos: 54.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4912 components: - type: MetaData @@ -12194,6 +11660,8 @@ entities: rot: 1.5707963267948966 rad pos: 53.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5884 components: - type: MetaData @@ -12202,6 +11670,8 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7248 components: - type: MetaData @@ -12210,6 +11680,8 @@ entities: rot: 3.141592653589793 rad pos: -50.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8197 components: - type: MetaData @@ -12218,6 +11690,8 @@ entities: rot: 3.141592653589793 rad pos: -37.5,-66.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9264 components: - type: MetaData @@ -12226,6 +11700,8 @@ entities: rot: 3.141592653589793 rad pos: 38.5,-72.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9317 components: - type: MetaData @@ -12234,6 +11710,8 @@ entities: rot: 1.5707963267948966 rad pos: 77.5,-44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10475 components: - type: MetaData @@ -12241,6 +11719,8 @@ entities: - type: Transform pos: -5.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10482 components: - type: MetaData @@ -12248,6 +11728,8 @@ entities: - type: Transform pos: -18.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10484 components: - type: MetaData @@ -12255,6 +11737,8 @@ entities: - type: Transform pos: -57.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10486 components: - type: MetaData @@ -12263,6 +11747,8 @@ entities: rot: 3.141592653589793 rad pos: -43.5,-56.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10487 components: - type: MetaData @@ -12271,6 +11757,8 @@ entities: rot: 3.141592653589793 rad pos: -20.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10488 components: - type: MetaData @@ -12279,6 +11767,8 @@ entities: rot: 1.5707963267948966 rad pos: -34.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10490 components: - type: MetaData @@ -12287,6 +11777,8 @@ entities: rot: 3.141592653589793 rad pos: -7.5,-44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10492 components: - type: MetaData @@ -12295,6 +11787,8 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10493 components: - type: MetaData @@ -12303,6 +11797,8 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,-61.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10495 components: - type: MetaData @@ -12310,6 +11806,8 @@ entities: - type: Transform pos: 13.5,-91.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10496 components: - type: MetaData @@ -12318,6 +11816,8 @@ entities: rot: -1.5707963267948966 rad pos: 32.5,-95.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10497 components: - type: MetaData @@ -12326,6 +11826,8 @@ entities: rot: 1.5707963267948966 rad pos: 48.5,-97.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10501 components: - type: MetaData @@ -12334,6 +11836,8 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10502 components: - type: MetaData @@ -12341,6 +11845,8 @@ entities: - type: Transform pos: 43.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10504 components: - type: MetaData @@ -12348,6 +11854,8 @@ entities: - type: Transform pos: 13.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10505 components: - type: MetaData @@ -12355,6 +11863,8 @@ entities: - type: Transform pos: 13.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10506 components: - type: MetaData @@ -12362,6 +11872,8 @@ entities: - type: Transform pos: -7.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10507 components: - type: MetaData @@ -12369,6 +11881,8 @@ entities: - type: Transform pos: -19.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10509 components: - type: MetaData @@ -12377,6 +11891,8 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10512 components: - type: MetaData @@ -12385,6 +11901,8 @@ entities: rot: 1.5707963267948966 rad pos: 72.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10518 components: - type: MetaData @@ -12392,6 +11910,8 @@ entities: - type: Transform pos: -50.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10584 components: - type: MetaData @@ -12400,6 +11920,8 @@ entities: rot: 3.141592653589793 rad pos: 7.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10614 components: - type: MetaData @@ -12407,6 +11929,8 @@ entities: - type: Transform pos: -6.5,-76.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10838 components: - type: MetaData @@ -12414,6 +11938,8 @@ entities: - type: Transform pos: 95.5,-46.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10918 components: - type: MetaData @@ -12421,6 +11947,8 @@ entities: - type: Transform pos: -37.5,-44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11011 components: - type: MetaData @@ -12429,6 +11957,8 @@ entities: rot: 1.5707963267948966 rad pos: -26.5,-67.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11213 components: - type: MetaData @@ -12437,6 +11967,8 @@ entities: rot: 1.5707963267948966 rad pos: -35.5,-54.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11214 components: - type: MetaData @@ -12444,6 +11976,8 @@ entities: - type: Transform pos: -31.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11362 components: - type: MetaData @@ -12451,6 +11985,8 @@ entities: - type: Transform pos: -12.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11432 components: - type: MetaData @@ -12459,6 +11995,8 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11637 components: - type: MetaData @@ -12467,6 +12005,8 @@ entities: rot: 3.141592653589793 rad pos: 65.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11638 components: - type: MetaData @@ -12475,6 +12015,8 @@ entities: rot: -1.5707963267948966 rad pos: 67.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11956 components: - type: MetaData @@ -12482,6 +12024,8 @@ entities: - type: Transform pos: 9.5,-46.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12036 components: - type: MetaData @@ -12490,6 +12034,8 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,-56.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12164 components: - type: MetaData @@ -12498,6 +12044,8 @@ entities: rot: 3.141592653589793 rad pos: 10.5,-91.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12869 components: - type: MetaData @@ -12505,6 +12053,8 @@ entities: - type: Transform pos: 28.5,-59.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13030 components: - type: MetaData @@ -12513,6 +12063,8 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13649 components: - type: MetaData @@ -12521,6 +12073,8 @@ entities: rot: 1.5707963267948966 rad pos: 57.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13857 components: - type: MetaData @@ -12529,6 +12083,8 @@ entities: rot: 1.5707963267948966 rad pos: 49.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13911 components: - type: MetaData @@ -12536,6 +12092,8 @@ entities: - type: Transform pos: 62.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14739 components: - type: MetaData @@ -12543,6 +12101,8 @@ entities: - type: Transform pos: -17.5,-52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15031 components: - type: MetaData @@ -12551,6 +12111,8 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15107 components: - type: MetaData @@ -12559,6 +12121,8 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17057 components: - type: MetaData @@ -12567,6 +12131,8 @@ entities: rot: 3.141592653589793 rad pos: 50.5,-57.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17484 components: - type: MetaData @@ -12575,6 +12141,8 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-69.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17745 components: - type: MetaData @@ -12582,6 +12150,8 @@ entities: - type: Transform pos: 14.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18694 components: - type: MetaData @@ -12590,6 +12160,8 @@ entities: rot: -1.5707963267948966 rad pos: 84.5,-68.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19021 components: - type: MetaData @@ -12598,6 +12170,8 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,-52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19268 components: - type: MetaData @@ -12605,6 +12179,8 @@ entities: - type: Transform pos: -30.5,-59.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19394 components: - type: MetaData @@ -12613,6 +12189,8 @@ entities: rot: 3.141592653589793 rad pos: -33.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19925 components: - type: MetaData @@ -12621,6 +12199,8 @@ entities: rot: 3.141592653589793 rad pos: 24.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: APCHighCapacity entities: - uid: 1126 @@ -12630,6 +12210,8 @@ entities: - type: Transform pos: 31.5,-69.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: APECircuitboard entities: - uid: 9346 @@ -12651,12 +12233,16 @@ entities: - type: Transform pos: -1.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19445 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ArtifactAnalyzerMachineCircuitboard entities: - uid: 1801 @@ -13113,6 +12699,59 @@ entities: - type: Transform pos: 26.5,-79.5 parent: 2 +- proto: Barricade + entities: + - uid: 1674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-37.5 + parent: 2 + - uid: 1675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-36.5 + parent: 2 + - uid: 1676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-37.5 + parent: 2 + - uid: 1677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-33.5 + parent: 2 + - uid: 1678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-33.5 + parent: 2 + - uid: 2289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-37.5 + parent: 2 + - uid: 4384 + components: + - type: Transform + pos: -41.5,-43.5 + parent: 2 + - uid: 7979 + components: + - type: Transform + pos: 22.5,-51.5 + parent: 2 + - uid: 14109 + components: + - type: Transform + pos: -37.5,-47.5 + parent: 2 - proto: BarricadeBlock entities: - uid: 6277 @@ -13132,6 +12771,39 @@ entities: parent: 2 - proto: BarricadeDirectional entities: + - uid: 220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-42.5 + parent: 2 + - uid: 245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-40.5 + parent: 2 + - uid: 2254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-35.5 + parent: 2 + - uid: 4665 + components: + - type: Transform + pos: 24.5,-50.5 + parent: 2 + - uid: 5205 + components: + - type: Transform + pos: -5.5,-37.5 + parent: 2 + - uid: 7146 + components: + - type: Transform + pos: 23.5,-50.5 + parent: 2 - uid: 7258 components: - type: Transform @@ -13143,6 +12815,12 @@ entities: rot: 3.141592653589793 rad pos: 76.5,-41.5 parent: 2 + - uid: 8213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-56.5 + parent: 2 - uid: 13938 components: - type: Transform @@ -13150,17 +12828,23 @@ entities: parent: 2 - proto: BarSign entities: - - uid: 7070 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-41.5 - parent: 2 - uid: 20080 components: - type: Transform pos: 60.5,-66.5 parent: 2 + - type: Fixtures + fixtures: {} +- proto: BarSignLV426 + entities: + - uid: 14055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-41.5 + parent: 2 + - type: Fixtures + fixtures: {} - proto: BaseChemistryEmptyVial entities: - uid: 10854 @@ -14063,13 +13747,6 @@ entities: - type: Transform pos: 5.560184,-22.212818 parent: 2 -- proto: BoxCandle - entities: - - uid: 5664 - components: - - type: Transform - pos: -25.412317,-29.355186 - parent: 2 - proto: BoxCartridgeCap entities: - uid: 17387 @@ -37969,6 +37646,96 @@ entities: - type: Transform pos: -10.5,-17.5 parent: 2 + - uid: 14162 + components: + - type: Transform + pos: 57.5,-22.5 + parent: 2 + - uid: 14163 + components: + - type: Transform + pos: 56.5,-22.5 + parent: 2 + - uid: 14164 + components: + - type: Transform + pos: 55.5,-22.5 + parent: 2 + - uid: 14165 + components: + - type: Transform + pos: 54.5,-22.5 + parent: 2 + - uid: 14166 + components: + - type: Transform + pos: 53.5,-22.5 + parent: 2 + - uid: 14167 + components: + - type: Transform + pos: 52.5,-22.5 + parent: 2 + - uid: 14168 + components: + - type: Transform + pos: 51.5,-22.5 + parent: 2 + - uid: 14169 + components: + - type: Transform + pos: 50.5,-22.5 + parent: 2 + - uid: 14170 + components: + - type: Transform + pos: 49.5,-22.5 + parent: 2 + - uid: 14171 + components: + - type: Transform + pos: 48.5,-22.5 + parent: 2 + - uid: 14172 + components: + - type: Transform + pos: 47.5,-22.5 + parent: 2 + - uid: 14173 + components: + - type: Transform + pos: 46.5,-22.5 + parent: 2 + - uid: 14174 + components: + - type: Transform + pos: 45.5,-22.5 + parent: 2 + - uid: 14175 + components: + - type: Transform + pos: 44.5,-22.5 + parent: 2 + - uid: 14176 + components: + - type: Transform + pos: 43.5,-22.5 + parent: 2 + - uid: 14177 + components: + - type: Transform + pos: 42.5,-22.5 + parent: 2 + - uid: 14180 + components: + - type: Transform + pos: 41.5,-22.5 + parent: 2 + - uid: 14182 + components: + - type: Transform + pos: 40.5,-22.5 + parent: 2 - uid: 14234 components: - type: Transform @@ -38703,116 +38470,159 @@ entities: rot: 1.5707963267948966 rad pos: 67.5,-21.5 parent: 2 -- proto: CandleGreen +- proto: CandlePurpleInfinite entities: - - uid: 19004 + - uid: 647 components: - type: Transform - pos: -20.960976,-37.37284 + rot: -1.5707963267948966 rad + pos: -21.847044,-29.3838 parent: 2 - - uid: 19006 + - uid: 795 components: - type: Transform - pos: -18.037804,-37.363953 + rot: -1.5707963267948966 rad + pos: -17.612669,-29.3838 parent: 2 - - uid: 19007 + - uid: 807 components: - type: Transform - pos: -18.860113,-37.363953 + rot: -1.5707963267948966 rad + pos: -21.550169,-35.461926 parent: 2 - - uid: 19009 + - uid: 820 components: - type: Transform - pos: -20.16005,-37.35431 + rot: -1.5707963267948966 rad + pos: -18.157604,-37.1988 parent: 2 -- proto: CandlePurple + - uid: 916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.581419,-35.60255 + parent: 2 + - uid: 931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.407604,-37.495674 + parent: 2 + - uid: 965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.376354,-37.245674 + parent: 2 + - uid: 1071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.626354,-37.495674 + parent: 2 + - uid: 1156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.542524,-33.32053 + parent: 2 + - uid: 1157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.636274,-33.398655 + parent: 2 + - uid: 1163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.823774,-31.25803 + parent: 2 + - uid: 1165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.657604,-37.245674 + parent: 2 + - uid: 1166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.92323,-37.276924 + parent: 2 + - uid: 1230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.612669,-29.6963 + parent: 2 + - uid: 2340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.768919,-35.243176 + parent: 2 +- proto: CandlePurpleSmallInfinite entities: - - uid: 245 + - uid: 735 components: - type: Transform - pos: -18.208582,-33.34535 + rot: -1.5707963267948966 rad + pos: -21.878294,-29.649426 parent: 2 - - uid: 16002 + - uid: 789 components: - type: Transform - pos: -18.646082,-33.78315 + rot: -1.5707963267948966 rad + pos: -17.643919,-29.680676 parent: 2 - - uid: 18846 + - uid: 1113 components: - type: Transform - pos: -18.34701,-33.632214 + rot: -1.5707963267948966 rad + pos: -20.3394,-33.44553 parent: 2 - - uid: 19000 + - uid: 1153 components: - type: Transform - pos: -20.303846,-33.696445 + rot: -1.5707963267948966 rad + pos: -18.417524,-33.492405 parent: 2 - - uid: 19002 + - uid: 1155 components: - type: Transform - pos: -20.824678,-33.508816 + rot: -1.5707963267948966 rad + pos: -20.68315,-33.66428 parent: 2 - - uid: 19003 + - uid: 1167 components: - type: Transform - pos: -20.522596,-33.289913 + rot: -1.5707963267948966 rad + pos: -17.347044,-29.41505 parent: 2 - - uid: 19615 + - uid: 1694 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.744207,-32.486958 + rot: -1.5707963267948966 rad + pos: -21.800169,-35.274426 parent: 2 - - uid: 19616 + - uid: 4701 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.320597,-32.493908 + rot: -1.5707963267948966 rad + pos: -17.331419,-35.305676 parent: 2 - - uid: 19617 + - uid: 10798 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.52893,-32.65374 + rot: -1.5707963267948966 rad + pos: -21.440794,-35.649426 parent: 2 -- proto: CandlePurpleSmall - entities: - - uid: 4411 + - uid: 11719 components: - type: Transform - pos: -20.781498,-31.281414 - parent: 2 - - uid: 18692 - components: - - type: Transform - pos: -20.564438,-31.177711 - parent: 2 - - uid: 18847 - components: - - type: Transform - pos: -20.864832,-31.531588 - parent: 2 - - uid: 18997 - components: - - type: Transform - pos: -20.605928,-33.769413 - parent: 2 - - uid: 19001 - components: - - type: Transform - pos: -20.189262,-33.27949 - parent: 2 -- proto: CandleRed - entities: - - uid: 19005 - components: - - type: Transform - pos: -18.447529,-37.35353 - parent: 2 - - uid: 19008 - components: - - type: Transform - pos: -20.555466,-37.371918 + rot: -1.5707963267948966 rad + pos: -20.30815,-31.75803 parent: 2 - proto: CarbonDioxideCanister entities: @@ -39025,6 +38835,31 @@ entities: - type: Transform pos: 54.5,-56.5 parent: 2 + - uid: 4669 + components: + - type: Transform + pos: -22.5,-29.5 + parent: 2 + - uid: 4670 + components: + - type: Transform + pos: -17.5,-38.5 + parent: 2 + - uid: 4671 + components: + - type: Transform + pos: -19.5,-38.5 + parent: 2 + - uid: 4672 + components: + - type: Transform + pos: -21.5,-38.5 + parent: 2 + - uid: 4674 + components: + - type: Transform + pos: -22.5,-35.5 + parent: 2 - uid: 4752 components: - type: Transform @@ -39210,66 +39045,6 @@ entities: - type: Transform pos: 53.5,-55.5 parent: 2 - - uid: 5681 - components: - - type: Transform - pos: -20.5,-41.5 - parent: 2 - - uid: 5682 - components: - - type: Transform - pos: -20.5,-40.5 - parent: 2 - - uid: 5683 - components: - - type: Transform - pos: -20.5,-39.5 - parent: 2 - - uid: 5684 - components: - - type: Transform - pos: -19.5,-41.5 - parent: 2 - - uid: 5685 - components: - - type: Transform - pos: -19.5,-40.5 - parent: 2 - - uid: 5686 - components: - - type: Transform - pos: -19.5,-39.5 - parent: 2 - - uid: 5687 - components: - - type: Transform - pos: -18.5,-41.5 - parent: 2 - - uid: 5688 - components: - - type: Transform - pos: -18.5,-40.5 - parent: 2 - - uid: 5689 - components: - - type: Transform - pos: -18.5,-39.5 - parent: 2 - - uid: 5690 - components: - - type: Transform - pos: -17.5,-41.5 - parent: 2 - - uid: 5691 - components: - - type: Transform - pos: -17.5,-40.5 - parent: 2 - - uid: 5692 - components: - - type: Transform - pos: -17.5,-39.5 - parent: 2 - uid: 6223 components: - type: Transform @@ -39285,6 +39060,18 @@ entities: - type: Transform pos: 53.5,-57.5 parent: 2 + - uid: 8704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-29.5 + parent: 2 + - uid: 10246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-35.5 + parent: 2 - uid: 10431 components: - type: Transform @@ -40021,6 +39808,141 @@ entities: parent: 2 - proto: CartridgePistolSpent entities: + - uid: 184 + components: + - type: Transform + rot: 0.8726646259971648 rad + pos: 20.670906,-55.680134 + parent: 2 + - uid: 595 + components: + - type: Transform + rot: 0.5235987755982988 rad + pos: 22.124031,-56.91451 + parent: 2 + - uid: 1430 + components: + - type: Transform + rot: 0.17453292519943295 rad + pos: -11.63519,-33.256924 + parent: 2 + - uid: 1682 + components: + - type: Transform + rot: 0.17453292519943295 rad + pos: 21.061531,-56.492634 + parent: 2 + - uid: 1744 + components: + - type: Transform + rot: 0.2617993877991494 rad + pos: -11.343524,-33.058872 + parent: 2 + - uid: 2194 + components: + - type: Transform + rot: 5.585053606381854 rad + pos: -5.631365,-38.668835 + parent: 2 + - uid: 2303 + components: + - type: Transform + pos: -10.32269,-33.86151 + parent: 2 + - uid: 3395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.92824,-33.168835 + parent: 2 + - uid: 4664 + components: + - type: Transform + rot: 0.17453292519943295 rad + pos: 26.936531,-51.63326 + parent: 2 + - uid: 4891 + components: + - type: Transform + rot: 0.5235987755982988 rad + pos: -13.65984,-37.05946 + parent: 2 + - uid: 5084 + components: + - type: Transform + rot: 4.886921905584122 rad + pos: -8.521991,-39.200085 + parent: 2 + - uid: 5780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.146991,-34.200085 + parent: 2 + - uid: 5965 + components: + - type: Transform + pos: -2.7876148,-38.40321 + parent: 2 + - uid: 6108 + components: + - type: Transform + rot: 6.1086523819801535 rad + pos: -3.9751148,-39.200085 + parent: 2 + - uid: 6126 + components: + - type: Transform + rot: 0.2617993877991494 rad + pos: -2.5688648,-38.793835 + parent: 2 + - uid: 6260 + components: + - type: Transform + rot: 5.934119456780721 rad + pos: -5.131365,-39.450085 + parent: 2 + - uid: 7937 + components: + - type: Transform + rot: 0.5235987755982988 rad + pos: 21.827156,-56.492634 + parent: 2 + - uid: 8038 + components: + - type: Transform + rot: 6.1086523819801535 rad + pos: 27.514656,-51.13326 + parent: 2 + - uid: 8368 + components: + - type: Transform + rot: 5.934119456780721 rad + pos: 27.467781,-51.78951 + parent: 2 + - uid: 13985 + components: + - type: Transform + rot: 3.3161255787892263 rad + pos: -5.52199,-33.37196 + parent: 2 + - uid: 14059 + components: + - type: Transform + rot: 2.792526803190927 rad + pos: -6.443865,-32.46571 + parent: 2 + - uid: 14073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.256365,-33.106335 + parent: 2 + - uid: 14147 + components: + - type: Transform + pos: -4.7536306,-32.681576 + parent: 2 - uid: 16771 components: - type: Transform @@ -40328,6 +40250,12 @@ entities: rot: -1.5707963267948966 rad pos: -59.5,-25.5 parent: 2 + - uid: 1745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-35.5 + parent: 2 - uid: 1856 components: - type: Transform @@ -40339,6 +40267,21 @@ entities: rot: 3.141592653589793 rad pos: 37.5,-81.5 parent: 2 + - uid: 2305 + components: + - type: Transform + pos: 23.5,-53.5 + parent: 2 + - uid: 2317 + components: + - type: Transform + pos: -31.5,-48.5 + parent: 2 + - uid: 2319 + components: + - type: Transform + pos: -32.5,-48.5 + parent: 2 - uid: 2930 components: - type: Transform @@ -40577,11 +40520,22 @@ entities: - type: Transform pos: 100.5,-37.5 parent: 2 + - uid: 4018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-35.5 + parent: 2 - uid: 4193 components: - type: Transform pos: 51.5,-26.5 parent: 2 + - uid: 4393 + components: + - type: Transform + pos: -31.5,-42.5 + parent: 2 - uid: 4642 components: - type: Transform @@ -40720,12 +40674,6 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,-26.5 parent: 2 - - uid: 4835 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-25.5 - parent: 2 - uid: 4836 components: - type: Transform @@ -40804,6 +40752,11 @@ entities: rot: 1.5707963267948966 rad pos: -35.5,-19.5 parent: 2 + - uid: 4932 + components: + - type: Transform + pos: -32.5,-42.5 + parent: 2 - uid: 5255 components: - type: Transform @@ -40855,6 +40808,16 @@ entities: - type: Transform pos: -29.5,-70.5 parent: 2 + - uid: 5651 + components: + - type: Transform + pos: -39.5,-8.5 + parent: 2 + - uid: 5655 + components: + - type: Transform + pos: -37.5,-8.5 + parent: 2 - uid: 5715 components: - type: Transform @@ -40925,12 +40888,29 @@ entities: - type: Transform pos: -22.5,-64.5 parent: 2 + - uid: 5826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-35.5 + parent: 2 - uid: 5841 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-50.5 parent: 2 + - uid: 6149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-35.5 + parent: 2 + - uid: 6206 + components: + - type: Transform + pos: 25.5,-53.5 + parent: 2 - uid: 6227 components: - type: Transform @@ -40949,6 +40929,17 @@ entities: rot: -1.5707963267948966 rad pos: -56.5,-25.5 parent: 2 + - uid: 6239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-35.5 + parent: 2 + - uid: 6242 + components: + - type: Transform + pos: 24.5,-53.5 + parent: 2 - uid: 6381 components: - type: Transform @@ -41335,6 +41326,12 @@ entities: - type: Transform pos: -29.5,-71.5 parent: 2 + - uid: 14021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-35.5 + parent: 2 - uid: 14032 components: - type: Transform @@ -41477,12 +41474,6 @@ entities: - type: Transform pos: 68.5,-23.5 parent: 2 - - uid: 16148 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-18.5 - parent: 2 - uid: 16164 components: - type: Transform @@ -41618,12 +41609,6 @@ entities: rot: 3.141592653589793 rad pos: -24.5,-44.5 parent: 2 - - uid: 16769 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-43.5 - parent: 2 - uid: 17174 components: - type: Transform @@ -41694,36 +41679,6 @@ entities: - type: Transform pos: 4.5,-59.5 parent: 2 - - uid: 17188 - components: - - type: Transform - pos: -9.5,-45.5 - parent: 2 - - uid: 17189 - components: - - type: Transform - pos: -8.5,-45.5 - parent: 2 - - uid: 17190 - components: - - type: Transform - pos: -7.5,-45.5 - parent: 2 - - uid: 17191 - components: - - type: Transform - pos: -6.5,-45.5 - parent: 2 - - uid: 17192 - components: - - type: Transform - pos: -5.5,-45.5 - parent: 2 - - uid: 17193 - components: - - type: Transform - pos: -4.5,-45.5 - parent: 2 - uid: 17194 components: - type: Transform @@ -41780,11 +41735,6 @@ entities: - type: Transform pos: -41.5,-35.5 parent: 2 - - uid: 17435 - components: - - type: Transform - pos: -37.5,-35.5 - parent: 2 - uid: 17513 components: - type: Transform @@ -41875,11 +41825,6 @@ entities: - type: Transform pos: 9.5,-6.5 parent: 2 - - uid: 18513 - components: - - type: Transform - pos: 30.5,-35.5 - parent: 2 - uid: 18718 components: - type: Transform @@ -42014,6 +41959,28 @@ entities: rot: -1.5707963267948966 rad pos: -33.5,-15.5 parent: 2 + - uid: 1719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-39.5 + parent: 2 + - uid: 1721 + components: + - type: Transform + pos: -32.5,-51.5 + parent: 2 + - uid: 1740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-39.5 + parent: 2 + - uid: 1742 + components: + - type: Transform + pos: -31.5,-51.5 + parent: 2 - uid: 2921 components: - type: Transform @@ -42108,12 +42075,6 @@ entities: rot: 3.141592653589793 rad pos: 32.5,-42.5 parent: 2 - - uid: 5826 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-55.5 - parent: 2 - uid: 5850 components: - type: Transform @@ -42241,12 +42202,6 @@ entities: - type: Transform pos: 21.5,-81.5 parent: 2 - - uid: 19275 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-56.5 - parent: 2 - uid: 19392 components: - type: Transform @@ -42416,23 +42371,12 @@ entities: rot: 3.141592653589793 rad pos: 32.5,-20.5 parent: 2 - - uid: 7937 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-23.5 - parent: 2 - uid: 8845 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-19.5 parent: 2 - - uid: 10302 - components: - - type: Transform - pos: 49.5,-20.5 - parent: 2 - uid: 19152 components: - type: Transform @@ -42890,11 +42834,11 @@ entities: parent: 2 - proto: ChurchOrganInstrument entities: - - uid: 5662 + - uid: 11365 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-35.5 + rot: 3.141592653589793 rad + pos: -24.5,-31.5 parent: 2 - proto: Cigar entities: @@ -42912,6 +42856,11 @@ entities: parent: 2 - proto: CigaretteSpent entities: + - uid: 5063 + components: + - type: Transform + pos: -9.110725,-32.339916 + parent: 2 - uid: 19660 components: - type: Transform @@ -42954,23 +42903,15 @@ entities: - type: Transform pos: -9.5,-46.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ClockworkGrille entities: - - uid: 176 - components: - - type: Transform - pos: -16.5,-30.5 - parent: 2 - uid: 179 components: - type: Transform pos: -17.5,-36.5 parent: 2 - - uid: 180 - components: - - type: Transform - pos: -16.5,-28.5 - parent: 2 - uid: 183 components: - type: Transform @@ -43001,11 +42942,6 @@ entities: - type: Transform pos: -22.5,-34.5 parent: 2 - - uid: 220 - components: - - type: Transform - pos: -23.5,-36.5 - parent: 2 - uid: 221 components: - type: Transform @@ -43061,11 +42997,6 @@ entities: - type: Transform pos: -18.5,-36.5 parent: 2 - - uid: 795 - components: - - type: Transform - pos: -16.5,-29.5 - parent: 2 - uid: 802 components: - type: Transform @@ -43076,16 +43007,6 @@ entities: - type: Transform pos: -23.5,-32.5 parent: 2 - - uid: 807 - components: - - type: Transform - pos: -17.5,-29.5 - parent: 2 - - uid: 820 - components: - - type: Transform - pos: -16.5,-31.5 - parent: 2 - uid: 1079 components: - type: Transform @@ -43096,26 +43017,6 @@ entities: - type: Transform pos: -22.5,-28.5 parent: 2 - - uid: 1429 - components: - - type: Transform - pos: -16.5,-36.5 - parent: 2 - - uid: 1430 - components: - - type: Transform - pos: -16.5,-35.5 - parent: 2 - - uid: 1431 - components: - - type: Transform - pos: -16.5,-33.5 - parent: 2 - - uid: 1432 - components: - - type: Transform - pos: -16.5,-32.5 - parent: 2 - uid: 1434 components: - type: Transform @@ -43141,11 +43042,6 @@ entities: - type: Transform pos: -23.5,-33.5 parent: 2 - - uid: 2887 - components: - - type: Transform - pos: -15.5,-32.5 - parent: 2 - uid: 4739 components: - type: Transform @@ -43166,16 +43062,6 @@ entities: - type: Transform pos: -20.5,-34.5 parent: 2 - - uid: 5063 - components: - - type: Transform - pos: -17.5,-35.5 - parent: 2 - - uid: 16186 - components: - - type: Transform - pos: -16.5,-34.5 - parent: 2 - uid: 17789 components: - type: Transform @@ -43232,6 +43118,11 @@ entities: - type: Transform pos: -49.5,-55.5 parent: 2 + - uid: 5688 + components: + - type: Transform + pos: 11.5,-37.5 + parent: 2 - uid: 5909 components: - type: Transform @@ -43242,16 +43133,6 @@ entities: - type: Transform pos: -23.5,-58.5 parent: 2 - - uid: 6242 - components: - - type: Transform - pos: -34.5,-52.5 - parent: 2 - - uid: 6243 - components: - - type: Transform - pos: -35.5,-38.5 - parent: 2 - uid: 6557 components: - type: Transform @@ -43322,6 +43203,11 @@ entities: - type: Transform pos: -59.5,-24.5 parent: 2 + - uid: 14066 + components: + - type: Transform + pos: -37.5,-36.5 + parent: 2 - uid: 15408 components: - type: Transform @@ -43337,11 +43223,6 @@ entities: - type: Transform pos: 47.5,-31.5 parent: 2 - - uid: 16038 - components: - - type: Transform - pos: 9.5,-37.5 - parent: 2 - uid: 17038 components: - type: Transform @@ -43357,11 +43238,6 @@ entities: - type: Transform pos: 5.5,-56.5 parent: 2 - - uid: 17889 - components: - - type: Transform - pos: -4.5,-41.5 - parent: 2 - uid: 18596 components: - type: Transform @@ -43458,16 +43334,16 @@ entities: parent: 2 - proto: ClosetFireFilled entities: - - uid: 2335 - components: - - type: Transform - pos: -33.5,-52.5 - parent: 2 - uid: 5059 components: - type: Transform pos: -23.5,-27.5 parent: 2 + - uid: 5308 + components: + - type: Transform + pos: 10.5,-37.5 + parent: 2 - uid: 5525 components: - type: Transform @@ -43518,11 +43394,6 @@ entities: - type: Transform pos: 48.5,-63.5 parent: 2 - - uid: 16039 - components: - - type: Transform - pos: 10.5,-37.5 - parent: 2 - uid: 16050 components: - type: Transform @@ -43773,11 +43644,6 @@ entities: - type: Transform pos: 40.5,-77.5 parent: 2 - - uid: 19282 - components: - - type: Transform - pos: -4.5,-44.5 - parent: 2 - proto: ClosetRadiationSuitFilled entities: - uid: 5058 @@ -43866,6 +43732,8 @@ entities: - 20006 - 20007 - 20008 + - type: Fixtures + fixtures: {} - proto: ClosetWallBlue entities: - uid: 5967 @@ -43884,6 +43752,8 @@ entities: - 5250 - 5251 - 5253 + - type: Fixtures + fixtures: {} - proto: ClosetWallEmergencyFilledRandom entities: - uid: 18901 @@ -43892,12 +43762,16 @@ entities: rot: 3.141592653589793 rad pos: 8.5,-85.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18903 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-87.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ClosetWallFireFilledRandom entities: - uid: 18904 @@ -43906,6 +43780,8 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,-88.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ClosetWallGrey entities: - uid: 6067 @@ -43928,6 +43804,8 @@ entities: - 6069 - 6068 - 6075 + - type: Fixtures + fixtures: {} - proto: ClothingBackpack entities: - uid: 12849 @@ -44314,10 +44192,20 @@ entities: parent: 2 - proto: ClothingHeadHatHoodNunHood entities: - - uid: 244 + - uid: 6289 components: - type: Transform - pos: -25.667696,-30.796198 + pos: -25.638721,-39.47225 + parent: 2 + - uid: 9897 + components: + - type: Transform + pos: -25.521437,-39.357975 + parent: 2 + - uid: 14161 + components: + - type: Transform + pos: -25.425758,-39.271492 parent: 2 - proto: ClothingHeadHatJesterAlt entities: @@ -44349,10 +44237,10 @@ entities: parent: 2 - proto: ClothingHeadHatSquid entities: - - uid: 18851 + - uid: 615 components: - type: Transform - pos: -25.722471,-30.292423 + pos: -19.331778,-42.418526 parent: 2 - proto: ClothingHeadHatSurgcapBlue entities: @@ -44585,13 +44473,6 @@ entities: - type: Transform pos: -31.529379,-64.33237 parent: 2 -- proto: ClothingNeckCloakPan - entities: - - uid: 11982 - components: - - type: Transform - pos: 44.485863,-38.413647 - parent: 2 - proto: ClothingNeckCloakPirateCap entities: - uid: 17307 @@ -44625,13 +44506,6 @@ entities: - type: Transform pos: 13.472904,-70.36003 parent: 2 -- proto: ClothingNeckStoleChaplain - entities: - - uid: 17362 - components: - - type: Transform - pos: -24.46909,-39.37975 - parent: 2 - proto: ClothingOuterApronChef entities: - uid: 13574 @@ -44796,10 +44670,20 @@ entities: parent: 2 - proto: ClothingOuterNunRobe entities: - - uid: 18852 + - uid: 4689 components: - type: Transform - pos: -25.556585,-31.15756 + pos: -24.861088,-39.441124 + parent: 2 + - uid: 6243 + components: + - type: Transform + pos: -25.037014,-39.492085 + parent: 2 + - uid: 9896 + components: + - type: Transform + pos: -24.703682,-39.39943 parent: 2 - proto: ClothingOuterPonchoClassic entities: @@ -44910,10 +44794,20 @@ entities: parent: 2 - proto: ClothingShoesTourist entities: - - uid: 184 + - uid: 4700 components: - type: Transform - pos: -25.441221,-31.607365 + pos: -24.425903,-39.658867 + parent: 2 + - uid: 4933 + components: + - type: Transform + pos: -24.33794,-39.607906 + parent: 2 + - uid: 10515 + components: + - type: Transform + pos: -24.550903,-39.709827 parent: 2 - uid: 17279 components: @@ -45140,11 +45034,11 @@ entities: rot: 1.5707963267948966 rad pos: 72.5,-29.5 parent: 2 - - uid: 16507 + - uid: 14159 components: - type: Transform rot: 1.5707963267948966 rad - pos: 78.5,-34.5 + pos: 78.5,-33.5 parent: 2 - uid: 16805 components: @@ -45324,6 +45218,14 @@ entities: 5037: - - ArtifactAnalyzerSender - ArtifactAnalyzerReceiver +- proto: ComputerAtmosMonitoring + entities: + - uid: 20083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-72.5 + parent: 2 - proto: computerBodyScanner entities: - uid: 6698 @@ -45732,34 +45634,11 @@ entities: parent: 2 - proto: ContainmentFieldGenerator entities: - - uid: 4078 - components: - - type: MetaData - desc: A machine that generates a containment field when powered by an emitter. Don't forget to turn it on! - name: extended field generator - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-21.5 - parent: 2 - - type: ContainmentFieldGenerator - enabled: True - maxLength: 19 - uid: 5784 components: - type: Transform pos: -19.5,-77.5 parent: 2 - - uid: 6108 - components: - - type: MetaData - desc: A machine that generates a containment field when powered by an emitter. Don't forget to turn it on! - name: extended field generator - - type: Transform - pos: 59.5,-21.5 - parent: 2 - - type: ContainmentFieldGenerator - enabled: True - maxLength: 19 - uid: 18224 components: - type: Transform @@ -46354,16 +46233,6 @@ entities: - type: Transform pos: 34.5,-26.5 parent: 2 - - uid: 5029 - components: - - type: Transform - pos: -22.5,-29.5 - parent: 2 - - uid: 5031 - components: - - type: Transform - pos: -21.5,-29.5 - parent: 2 - uid: 7605 components: - type: Transform @@ -47627,6 +47496,8 @@ entities: - type: Transform pos: 51.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: DefibrillatorCabinetFilled entities: - uid: 5238 @@ -47634,50 +47505,68 @@ entities: - type: Transform pos: 16.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5239 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5935 components: - type: Transform pos: -6.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10681 components: - type: Transform pos: 13.5,-68.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17131 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17273 components: - type: Transform pos: -12.5,-57.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17284 components: - type: Transform pos: 5.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18378 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19260 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: DeskBell entities: - uid: 5856 @@ -48061,6 +47950,11 @@ entities: rot: 1.5707963267948966 rad pos: 37.5,-76.5 parent: 2 + - uid: 14183 + components: + - type: Transform + pos: 27.5,-13.5 + parent: 2 - uid: 14239 components: - type: Transform @@ -48574,6 +48468,12 @@ entities: - type: Transform pos: 7.5,-60.5 parent: 2 + - uid: 11720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-24.5 + parent: 2 - uid: 15507 components: - type: Transform @@ -49514,12 +49414,6 @@ entities: - type: Transform pos: 55.5,-49.5 parent: 2 - - uid: 10515 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-24.5 - parent: 2 - uid: 10561 components: - type: Transform @@ -49537,6 +49431,90 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-44.5 parent: 2 + - uid: 14184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-13.5 + parent: 2 + - uid: 14185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-13.5 + parent: 2 + - uid: 14186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-13.5 + parent: 2 + - uid: 14187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-13.5 + parent: 2 + - uid: 14188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-14.5 + parent: 2 + - uid: 14190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-15.5 + parent: 2 + - uid: 14193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-16.5 + parent: 2 + - uid: 14197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-17.5 + parent: 2 + - uid: 14202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-18.5 + parent: 2 + - uid: 14205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-19.5 + parent: 2 + - uid: 14208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-20.5 + parent: 2 + - uid: 14210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-21.5 + parent: 2 + - uid: 14211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-22.5 + parent: 2 + - uid: 14215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-23.5 + parent: 2 - uid: 14451 components: - type: Transform @@ -53193,18 +53171,6 @@ entities: - type: Transform pos: -56.629017,-61.739758 parent: 2 -- proto: DrinkChangelingStingCan - entities: - - uid: 2843 - components: - - type: Transform - pos: 38.730194,-12.548597 - parent: 2 - - uid: 2851 - components: - - type: Transform - pos: 38.338818,-12.401728 - parent: 2 - proto: DrinkCoffeeJug entities: - uid: 14280 @@ -53529,12 +53495,6 @@ entities: parent: 2 - proto: EmergencyLight entities: - - uid: 1230 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-31.5 - parent: 2 - uid: 1969 components: - type: Transform @@ -54055,12 +54015,6 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,-77.5 parent: 2 - - uid: 18358 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-21.5 - parent: 2 - proto: EmitterFlatpack entities: - uid: 19330 @@ -54121,40 +54075,54 @@ entities: rot: 3.141592653589793 rad pos: -22.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17293 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-61.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17294 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18340 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18343 components: - type: Transform pos: 12.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18344 components: - type: Transform pos: -27.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19650 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-69.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: FaxMachineBase entities: - uid: 1889 @@ -54365,6 +54333,11 @@ entities: parent: 2 - proto: filingCabinetRandom entities: + - uid: 2341 + components: + - type: Transform + pos: 9.5,-40.5 + parent: 2 - uid: 5870 components: - type: Transform @@ -54398,6 +54371,8 @@ entities: - 1595 - 18775 - 3279 + - type: Fixtures + fixtures: {} - uid: 5295 components: - type: Transform @@ -54410,6 +54385,8 @@ entities: - 530 - 8870 - 8873 + - type: Fixtures + fixtures: {} - uid: 7439 components: - type: Transform @@ -54424,6 +54401,8 @@ entities: - 19831 - 19832 - 19833 + - type: Fixtures + fixtures: {} - uid: 8800 components: - type: Transform @@ -54437,6 +54416,8 @@ entities: - 872 - 8870 - 8873 + - type: Fixtures + fixtures: {} - uid: 9873 components: - type: Transform @@ -54458,6 +54439,8 @@ entities: - 7954 - 19908 - 19907 + - type: Fixtures + fixtures: {} - uid: 10791 components: - type: Transform @@ -54474,6 +54457,8 @@ entities: - 4169 - 13846 - 4171 + - type: Fixtures + fixtures: {} - uid: 14459 components: - type: Transform @@ -54495,6 +54480,8 @@ entities: - 6636 - 7459 - 1833 + - type: Fixtures + fixtures: {} - uid: 14461 components: - type: Transform @@ -54508,6 +54495,8 @@ entities: - 6633 - 19234 - 19235 + - type: Fixtures + fixtures: {} - uid: 14591 components: - type: Transform @@ -54521,6 +54510,8 @@ entities: - 7135 - 8640 - 18857 + - type: Fixtures + fixtures: {} - uid: 14683 components: - type: Transform @@ -54533,6 +54524,8 @@ entities: - 6977 - 6976 - 3659 + - type: Fixtures + fixtures: {} - uid: 14758 components: - type: Transform @@ -54550,6 +54543,8 @@ entities: - 18844 - 18843 - 1698 + - type: Fixtures + fixtures: {} - uid: 15095 components: - type: Transform @@ -54563,6 +54558,8 @@ entities: - 17153 - 17130 - 17129 + - type: Fixtures + fixtures: {} - uid: 16355 components: - type: Transform @@ -54577,6 +54574,8 @@ entities: - 2157 - 3441 - 4166 + - type: Fixtures + fixtures: {} - uid: 16357 components: - type: Transform @@ -54589,6 +54588,8 @@ entities: - 16238 - 19903 - 19904 + - type: Fixtures + fixtures: {} - uid: 18593 components: - type: Transform @@ -54605,6 +54606,8 @@ entities: - 8920 - 19838 - 19837 + - type: Fixtures + fixtures: {} - uid: 18881 components: - type: Transform @@ -54616,6 +54619,8 @@ entities: - 16165 - 14594 - 14595 + - type: Fixtures + fixtures: {} - uid: 19247 components: - type: Transform @@ -54627,23 +54632,13 @@ entities: - 4169 - 4171 - 13846 - - 11724 - - 11725 - - 11723 - - 7979 - - 11721 - - 11720 - - 11719 - - 11718 - - 11717 - - 11716 - - 11715 - - 11712 - 9297 - 7800 - 8607 - 9082 - 9066 + - type: Fixtures + fixtures: {} - uid: 19910 components: - type: Transform @@ -54657,6 +54652,8 @@ entities: - 19902 - 19908 - 19907 + - type: Fixtures + fixtures: {} - proto: FireAlarmXeno entities: - uid: 1691 @@ -54675,6 +54672,8 @@ entities: - 19886 - 19892 - 19891 + - type: Fixtures + fixtures: {} - uid: 2359 components: - type: Transform @@ -54687,6 +54686,8 @@ entities: - 8737 - 8734 - 8479 + - type: Fixtures + fixtures: {} - uid: 2409 components: - type: Transform @@ -54705,6 +54706,8 @@ entities: - 5577 - 5575 - 5576 + - type: Fixtures + fixtures: {} - uid: 2452 components: - type: Transform @@ -54722,6 +54725,8 @@ entities: - 19810 - 19811 - 19812 + - type: Fixtures + fixtures: {} - uid: 2513 components: - type: Transform @@ -54734,6 +54739,8 @@ entities: - 5577 - 5576 - 5575 + - type: Fixtures + fixtures: {} - uid: 3256 components: - type: Transform @@ -54749,6 +54756,8 @@ entities: - 11336 - 18786 - 8605 + - type: Fixtures + fixtures: {} - uid: 3258 components: - type: Transform @@ -54763,6 +54772,8 @@ entities: - 19830 - 19829 - 19828 + - type: Fixtures + fixtures: {} - uid: 5200 components: - type: Transform @@ -54778,6 +54789,8 @@ entities: - 19797 - 19798 - 4002 + - type: Fixtures + fixtures: {} - uid: 6218 components: - type: Transform @@ -54796,6 +54809,8 @@ entities: - 14799 - 15173 - 14797 + - type: Fixtures + fixtures: {} - uid: 6344 components: - type: Transform @@ -54812,6 +54827,8 @@ entities: - 19877 - 19878 - 19879 + - type: Fixtures + fixtures: {} - uid: 6345 components: - type: Transform @@ -54834,6 +54851,8 @@ entities: - 8415 - 8416 - 8417 + - type: Fixtures + fixtures: {} - uid: 6346 components: - type: Transform @@ -54853,6 +54872,8 @@ entities: - 19890 - 8434 - 8433 + - type: Fixtures + fixtures: {} - uid: 6348 components: - type: Transform @@ -54876,6 +54897,8 @@ entities: - 19893 - 19894 - 19895 + - type: Fixtures + fixtures: {} - uid: 6349 components: - type: Transform @@ -54892,6 +54915,8 @@ entities: - 19896 - 19897 - 19898 + - type: Fixtures + fixtures: {} - uid: 6350 components: - type: Transform @@ -54905,6 +54930,8 @@ entities: - 7016 - 7017 - 19882 + - type: Fixtures + fixtures: {} - uid: 6405 components: - type: Transform @@ -54917,6 +54944,8 @@ entities: - 10326 - 8402 - 19920 + - type: Fixtures + fixtures: {} - uid: 7880 components: - type: Transform @@ -54933,6 +54962,8 @@ entities: - 7011 - 7012 - 7056 + - type: Fixtures + fixtures: {} - uid: 9038 components: - type: Transform @@ -54958,6 +54989,8 @@ entities: - 19825 - 19826 - 19827 + - type: Fixtures + fixtures: {} - uid: 9039 components: - type: Transform @@ -54970,6 +55003,8 @@ entities: - 8415 - 8416 - 8417 + - type: Fixtures + fixtures: {} - uid: 9178 components: - type: Transform @@ -54988,6 +55023,8 @@ entities: - 8495 - 9715 - 2462 + - type: Fixtures + fixtures: {} - uid: 9200 components: - type: Transform @@ -55015,6 +55052,8 @@ entities: - 19829 - 19828 - 16242 + - type: Fixtures + fixtures: {} - uid: 9202 components: - type: Transform @@ -55028,6 +55067,8 @@ entities: - 8492 - 44 - 4002 + - type: Fixtures + fixtures: {} - uid: 9218 components: - type: Transform @@ -55039,6 +55080,8 @@ entities: - 8505 - 8506 - 8507 + - type: Fixtures + fixtures: {} - uid: 9233 components: - type: Transform @@ -55051,6 +55094,8 @@ entities: - 14800 - 14798 - 14797 + - type: Fixtures + fixtures: {} - uid: 9237 components: - type: Transform @@ -55069,6 +55114,8 @@ entities: - 19893 - 19894 - 19895 + - type: Fixtures + fixtures: {} - uid: 9238 components: - type: Transform @@ -55083,6 +55130,8 @@ entities: - 8439 - 8438 - 18862 + - type: Fixtures + fixtures: {} - uid: 9242 components: - type: Transform @@ -55096,6 +55145,8 @@ entities: - 7440 - 7443 - 19204 + - type: Fixtures + fixtures: {} - uid: 9249 components: - type: Transform @@ -55107,6 +55158,8 @@ entities: - 8433 - 8434 - 19885 + - type: Fixtures + fixtures: {} - uid: 9250 components: - type: Transform @@ -55116,6 +55169,8 @@ entities: - type: DeviceList devices: - 8493 + - type: Fixtures + fixtures: {} - uid: 9255 components: - type: Transform @@ -55132,6 +55187,8 @@ entities: - 19799 - 19800 - 19801 + - type: Fixtures + fixtures: {} - uid: 9256 components: - type: Transform @@ -55150,6 +55207,8 @@ entities: - 19805 - 19807 - 19808 + - type: Fixtures + fixtures: {} - uid: 9489 components: - type: Transform @@ -55164,6 +55223,8 @@ entities: - 4096 - 19820 - 19821 + - type: Fixtures + fixtures: {} - uid: 9931 components: - type: Transform @@ -55178,6 +55239,8 @@ entities: - 19841 - 19840 - 19839 + - type: Fixtures + fixtures: {} - uid: 11905 components: - type: Transform @@ -55190,6 +55253,8 @@ entities: - 8547 - 8548 - 8549 + - type: Fixtures + fixtures: {} - uid: 15092 components: - type: Transform @@ -55207,6 +55272,8 @@ entities: - 19798 - 19797 - 19796 + - type: Fixtures + fixtures: {} - uid: 16341 components: - type: Transform @@ -55225,6 +55292,8 @@ entities: - 8549 - 8548 - 8547 + - type: Fixtures + fixtures: {} - uid: 16366 components: - type: Transform @@ -55241,6 +55310,8 @@ entities: - 19831 - 19832 - 19833 + - type: Fixtures + fixtures: {} - uid: 16800 components: - type: Transform @@ -55256,6 +55327,8 @@ entities: - 9715 - 19815 - 811 + - type: Fixtures + fixtures: {} - uid: 16807 components: - type: Transform @@ -55267,6 +55340,8 @@ entities: - 8677 - 8678 - 262 + - type: Fixtures + fixtures: {} - uid: 17681 components: - type: Transform @@ -55280,6 +55355,8 @@ entities: - 19825 - 19892 - 19891 + - type: Fixtures + fixtures: {} - uid: 17872 components: - type: Transform @@ -55305,6 +55382,8 @@ entities: - 8552 - 19854 - 19851 + - type: Fixtures + fixtures: {} - uid: 19201 components: - type: Transform @@ -55320,6 +55399,8 @@ entities: - 16242 - 8107 - 19203 + - type: Fixtures + fixtures: {} - uid: 19399 components: - type: Transform @@ -55336,6 +55417,8 @@ entities: - 19822 - 19823 - 19824 + - type: Fixtures + fixtures: {} - uid: 19420 components: - type: Transform @@ -55347,6 +55430,8 @@ entities: - 18786 - 11336 - 9541 + - type: Fixtures + fixtures: {} - uid: 19852 components: - type: Transform @@ -55364,6 +55449,8 @@ entities: - 19845 - 19846 - 19847 + - type: Fixtures + fixtures: {} - uid: 19855 components: - type: Transform @@ -55379,6 +55466,8 @@ entities: - 18723 - 18709 - 18731 + - type: Fixtures + fixtures: {} - uid: 19857 components: - type: Transform @@ -55392,15 +55481,8 @@ entities: - 8550 - 9383 - 9877 - - 7979 - - 11721 - - 11720 - - 11719 - - 11718 - - 11717 - - 11716 - - 11715 - - 11712 + - type: Fixtures + fixtures: {} - uid: 19881 components: - type: Transform @@ -55420,6 +55502,8 @@ entities: - 7014 - 7013 - 19882 + - type: Fixtures + fixtures: {} - uid: 19921 components: - type: Transform @@ -55432,6 +55516,8 @@ entities: - 8400 - 8399 - 19920 + - type: Fixtures + fixtures: {} - proto: FireAxeCabinetFilled entities: - uid: 5385 @@ -55440,11 +55526,15 @@ entities: rot: 1.5707963267948966 rad pos: 34.5,-69.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5589 components: - type: Transform pos: -49.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: FireExtinguisher entities: - uid: 17297 @@ -55454,135 +55544,6 @@ entities: parent: 2 - proto: Firelock entities: - - uid: 7979 - components: - - type: Transform - pos: 50.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18818 - - 19857 - - 19856 - - 19247 - - uid: 11712 - components: - - type: Transform - pos: 42.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18818 - - 19857 - - 19856 - - 19247 - - uid: 11715 - components: - - type: Transform - pos: 43.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18818 - - 19857 - - 19856 - - 19247 - - uid: 11716 - components: - - type: Transform - pos: 44.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18818 - - 19857 - - 19856 - - 19247 - - uid: 11717 - components: - - type: Transform - pos: 45.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18818 - - 19857 - - 19856 - - 19247 - - uid: 11718 - components: - - type: Transform - pos: 46.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18818 - - 19857 - - 19856 - - 19247 - - uid: 11719 - components: - - type: Transform - pos: 47.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18818 - - 19857 - - 19856 - - 19247 - - uid: 11720 - components: - - type: Transform - pos: 48.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18818 - - 19857 - - 19856 - - 19247 - - uid: 11721 - components: - - type: Transform - pos: 49.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18818 - - 19857 - - 19856 - - 19247 - - uid: 11723 - components: - - type: Transform - pos: 54.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18818 - - 579 - - 19247 - - uid: 11724 - components: - - type: Transform - pos: 55.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18818 - - 579 - - 19247 - - uid: 11725 - components: - - type: Transform - pos: 56.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18818 - - 579 - - 19247 - uid: 19913 components: - type: Transform @@ -56219,12 +56180,6 @@ entities: deviceLists: - 14757 - 14758 - - uid: 19015 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-32.5 - parent: 2 - uid: 19815 components: - type: Transform @@ -59297,6 +59252,18 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: Floodlight + entities: + - uid: 4078 + components: + - type: Transform + pos: -7.5,-38.5 + parent: 2 + - uid: 14022 + components: + - type: Transform + pos: -5.5,-32.5 + parent: 2 - proto: FloorCarpetItemBlack entities: - uid: 7382 @@ -59481,11 +59448,6 @@ entities: - type: Transform pos: -38.5,-36.5 parent: 2 - - uid: 17116 - components: - - type: Transform - pos: -37.5,-36.5 - parent: 2 - uid: 17119 components: - type: Transform @@ -59578,6 +59540,16 @@ entities: parent: 2 - proto: FoodBakedCannabisBrownie entities: + - uid: 4673 + components: + - type: Transform + pos: -20.439116,-42.136227 + parent: 2 + - uid: 11457 + components: + - type: Transform + pos: -20.703005,-42.1177 + parent: 2 - uid: 18034 components: - type: Transform @@ -59860,7 +59832,7 @@ entities: - type: Transform pos: 6.386328,-82.455345 parent: 2 -- proto: FoodDonutJellySlugcat +- proto: FoodDonutJellyScurret entities: - uid: 2917 components: @@ -80290,23 +80262,6 @@ entities: - type: Transform pos: 29.714285,-78.46555 parent: 2 -- proto: GoldenPlunger - entities: - - uid: 647 - components: - - type: MetaData - desc: The prophecy tells of a day in the distant future, in which the Truest Janitor will pick up this plunger and eradicate clogging from this world forever more... - name: lubed cursed golden plunger - - type: Transform - pos: -40.50827,-77.386536 - parent: 2 - - type: WarpPoint - location: cursed golden plunger - - type: Lubed - slipStrength: 10 - slipsLeft: 1000 - - type: NameModifier - baseName: cursed golden plunger - proto: GoldRingDiamond entities: - uid: 7118 @@ -80463,6 +80418,11 @@ entities: - type: Transform pos: -5.5,2.5 parent: 2 + - uid: 161 + components: + - type: Transform + pos: 42.5,-22.5 + parent: 2 - uid: 207 components: - type: Transform @@ -80958,11 +80918,6 @@ entities: - type: Transform pos: 43.5,-55.5 parent: 2 - - uid: 789 - components: - - type: Transform - pos: 26.5,-47.5 - parent: 2 - uid: 790 components: - type: Transform @@ -81053,46 +81008,6 @@ entities: - type: Transform pos: -19.5,-53.5 parent: 2 - - uid: 1153 - components: - - type: Transform - pos: -32.5,-54.5 - parent: 2 - - uid: 1155 - components: - - type: Transform - pos: -30.5,-54.5 - parent: 2 - - uid: 1156 - components: - - type: Transform - pos: -31.5,-55.5 - parent: 2 - - uid: 1157 - components: - - type: Transform - pos: -31.5,-53.5 - parent: 2 - - uid: 1163 - components: - - type: Transform - pos: -32.5,-36.5 - parent: 2 - - uid: 1165 - components: - - type: Transform - pos: -30.5,-36.5 - parent: 2 - - uid: 1166 - components: - - type: Transform - pos: -31.5,-37.5 - parent: 2 - - uid: 1167 - components: - - type: Transform - pos: -31.5,-35.5 - parent: 2 - uid: 1292 components: - type: Transform @@ -81143,11 +81058,6 @@ entities: - type: Transform pos: -36.5,-9.5 parent: 2 - - uid: 1416 - components: - - type: Transform - pos: -35.5,-9.5 - parent: 2 - uid: 1420 components: - type: Transform @@ -81448,86 +81358,16 @@ entities: - type: Transform pos: 16.5,-44.5 parent: 2 - - uid: 1671 - components: - - type: Transform - pos: -41.5,-43.5 - parent: 2 - - uid: 1672 - components: - - type: Transform - pos: -41.5,-44.5 - parent: 2 - uid: 1673 components: - type: Transform - pos: -41.5,-45.5 - parent: 2 - - uid: 1674 - components: - - type: Transform - pos: -41.5,-46.5 - parent: 2 - - uid: 1675 - components: - - type: Transform - pos: -41.5,-47.5 - parent: 2 - - uid: 1676 - components: - - type: Transform - pos: -40.5,-47.5 - parent: 2 - - uid: 1677 - components: - - type: Transform - pos: -39.5,-47.5 - parent: 2 - - uid: 1678 - components: - - type: Transform - pos: -38.5,-47.5 - parent: 2 - - uid: 1679 - components: - - type: Transform - pos: -37.5,-47.5 - parent: 2 - - uid: 1680 - components: - - type: Transform - pos: -37.5,-46.5 + pos: -0.5,-42.5 parent: 2 - uid: 1681 components: - type: Transform pos: 60.5,-35.5 parent: 2 - - uid: 1682 - components: - - type: Transform - pos: -37.5,-44.5 - parent: 2 - - uid: 1683 - components: - - type: Transform - pos: -37.5,-43.5 - parent: 2 - - uid: 1684 - components: - - type: Transform - pos: -38.5,-43.5 - parent: 2 - - uid: 1685 - components: - - type: Transform - pos: -39.5,-43.5 - parent: 2 - - uid: 1686 - components: - - type: Transform - pos: -40.5,-43.5 - parent: 2 - uid: 1688 components: - type: Transform @@ -81614,6 +81454,11 @@ entities: - type: Transform pos: 3.5,-48.5 parent: 2 + - uid: 1884 + components: + - type: Transform + pos: 55.5,-22.5 + parent: 2 - uid: 1953 components: - type: Transform @@ -81820,6 +81665,21 @@ entities: - type: Transform pos: -18.5,-15.5 parent: 2 + - uid: 2321 + components: + - type: Transform + pos: 43.5,-22.5 + parent: 2 + - uid: 2324 + components: + - type: Transform + pos: 49.5,-22.5 + parent: 2 + - uid: 2344 + components: + - type: Transform + pos: 54.5,-22.5 + parent: 2 - uid: 2364 components: - type: Transform @@ -81860,6 +81720,11 @@ entities: - type: Transform pos: -51.5,-55.5 parent: 2 + - uid: 2463 + components: + - type: Transform + pos: 40.5,-22.5 + parent: 2 - uid: 2466 components: - type: Transform @@ -82446,11 +82311,6 @@ entities: - type: Transform pos: 43.5,-11.5 parent: 2 - - uid: 4089 - components: - - type: Transform - pos: 60.5,-21.5 - parent: 2 - uid: 4181 components: - type: Transform @@ -82491,6 +82351,11 @@ entities: - type: Transform pos: -1.5,-40.5 parent: 2 + - uid: 4271 + components: + - type: Transform + pos: -41.5,-45.5 + parent: 2 - uid: 4301 components: - type: Transform @@ -82546,6 +82411,11 @@ entities: - type: Transform pos: 51.5,-64.5 parent: 2 + - uid: 4383 + components: + - type: Transform + pos: -40.5,-43.5 + parent: 2 - uid: 4391 components: - type: Transform @@ -82701,20 +82571,25 @@ entities: - type: Transform pos: 45.5,-55.5 parent: 2 - - uid: 4655 + - uid: 4545 components: - type: Transform - pos: 22.5,-53.5 + pos: -38.5,-47.5 parent: 2 - - uid: 4661 + - uid: 4556 components: - type: Transform - pos: 24.5,-55.5 + pos: 46.5,-22.5 parent: 2 - - uid: 4693 + - uid: 4687 components: - type: Transform - pos: 24.5,-51.5 + pos: 47.5,-22.5 + parent: 2 + - uid: 4702 + components: + - type: Transform + pos: 56.5,-22.5 parent: 2 - uid: 4716 components: @@ -83641,6 +83516,11 @@ entities: - type: Transform pos: 4.5,-14.5 parent: 2 + - uid: 7295 + components: + - type: Transform + pos: 48.5,-22.5 + parent: 2 - uid: 7438 components: - type: Transform @@ -84001,6 +83881,11 @@ entities: - type: Transform pos: 47.5,-12.5 parent: 2 + - uid: 11721 + components: + - type: Transform + pos: 50.5,-22.5 + parent: 2 - uid: 11830 components: - type: Transform @@ -84106,11 +83991,26 @@ entities: - type: Transform pos: 62.5,-21.5 parent: 2 + - uid: 13959 + components: + - type: Transform + pos: -14.5,-32.5 + parent: 2 - uid: 13979 components: - type: Transform pos: 7.5,-33.5 parent: 2 + - uid: 13995 + components: + - type: Transform + pos: 44.5,-22.5 + parent: 2 + - uid: 13997 + components: + - type: Transform + pos: 45.5,-22.5 + parent: 2 - uid: 14006 components: - type: Transform @@ -84131,16 +84031,46 @@ entities: - type: Transform pos: 75.5,-17.5 parent: 2 + - uid: 14100 + components: + - type: Transform + pos: -40.5,-47.5 + parent: 2 + - uid: 14101 + components: + - type: Transform + pos: -41.5,-46.5 + parent: 2 + - uid: 14102 + components: + - type: Transform + pos: -41.5,-44.5 + parent: 2 + - uid: 14103 + components: + - type: Transform + pos: -39.5,-43.5 + parent: 2 - uid: 14105 components: - type: Transform pos: 75.5,-18.5 parent: 2 + - uid: 14107 + components: + - type: Transform + pos: -38.5,-43.5 + parent: 2 - uid: 14126 components: - type: Transform pos: 77.5,-17.5 parent: 2 + - uid: 14131 + components: + - type: Transform + pos: -39.5,-47.5 + parent: 2 - uid: 14152 components: - type: Transform @@ -85032,75 +84962,6 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,-45.5 parent: 2 - - uid: 4656 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-54.5 - parent: 2 - - uid: 4658 - components: - - type: Transform - pos: 23.5,-51.5 - parent: 2 - - uid: 4662 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-55.5 - parent: 2 - - uid: 4663 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-52.5 - parent: 2 - - uid: 4664 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-54.5 - parent: 2 - - uid: 4665 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-55.5 - parent: 2 - - uid: 4667 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-54.5 - parent: 2 - - uid: 4673 - components: - - type: Transform - pos: 25.5,-54.5 - parent: 2 - - uid: 4675 - components: - - type: Transform - pos: 22.5,-52.5 - parent: 2 - - uid: 4676 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-52.5 - parent: 2 - - uid: 4686 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-52.5 - parent: 2 - - uid: 4687 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-51.5 - parent: 2 - uid: 14429 components: - type: Transform @@ -85696,10 +85557,10 @@ entities: - type: Transform pos: 57.514305,-35.453518 parent: 2 - - uid: 19346 + - uid: 13988 components: - type: Transform - pos: 58.428192,-20.46732 + pos: 61.41428,-19.450556 parent: 2 - proto: HandheldGPSBasic entities: @@ -86131,10 +85992,10 @@ entities: parent: 2 - proto: HolopadMedicalVirology entities: - - uid: 18511 + - uid: 4667 components: - type: Transform - pos: 32.5,-18.5 + pos: 30.5,-18.5 parent: 2 - proto: HolopadScienceArtifact entities: @@ -86234,13 +86095,6 @@ entities: - type: Transform pos: 0.5,-54.5 parent: 2 -- proto: HolopadServiceChapel - entities: - - uid: 19163 - components: - - type: Transform - pos: -21.5,-39.5 - parent: 2 - proto: HolopadServiceClownMime entities: - uid: 19134 @@ -86516,6 +86370,45 @@ entities: - type: Transform pos: 27.635538,-72.53113 parent: 2 +- proto: InflatableWall + entities: + - uid: 1847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-37.5 + parent: 2 + - uid: 2342 + components: + - type: Transform + pos: 54.5,-25.5 + parent: 2 + - uid: 3207 + components: + - type: Transform + pos: 26.5,-47.5 + parent: 2 + - uid: 4385 + components: + - type: Transform + pos: -41.5,-47.5 + parent: 2 + - uid: 4653 + components: + - type: Transform + pos: 26.5,-55.5 + parent: 2 + - uid: 6238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-33.5 + parent: 2 + - uid: 14108 + components: + - type: Transform + pos: -37.5,-43.5 + parent: 2 - proto: InflatableWallStack entities: - uid: 8002 @@ -86568,6 +86461,8 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,-53.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomCommon entities: - uid: 17760 @@ -86576,24 +86471,32 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17761 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17763 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17772 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomEngineering entities: - uid: 16536 @@ -86602,24 +86505,32 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,-67.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17755 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-71.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17756 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-57.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17762 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,-66.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomMedical entities: - uid: 6295 @@ -86628,28 +86539,38 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6681 components: - type: Transform pos: 16.5,-75.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17754 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-68.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17758 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17759 components: - type: Transform pos: 11.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomScience entities: - uid: 11363 @@ -86658,6 +86579,8 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomSecurity entities: - uid: 6087 @@ -86666,12 +86589,16 @@ entities: rot: -1.5707963267948966 rad pos: 63.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19381 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomService entities: - uid: 17768 @@ -86680,12 +86607,16 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17769 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomSupply entities: - uid: 2999 @@ -86694,6 +86625,8 @@ entities: rot: 3.141592653589793 rad pos: 23.5,-85.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: JanitorialTrolley entities: - uid: 5623 @@ -86861,7 +86794,8 @@ entities: - uid: 5678 components: - type: Transform - pos: -16.689243,-42.33948 + rot: 1.5707963267948966 rad + pos: -18.285185,-42.4478 parent: 2 - uid: 6027 components: @@ -86992,37 +86926,15 @@ entities: parent: 2 - proto: LeavesCannabisDried entities: - - uid: 18867 + - uid: 4681 components: - type: Transform - pos: -25.706669,-32.16909 + pos: -19.954123,-42.201088 parent: 2 - - uid: 18889 + - uid: 11715 components: - type: Transform - pos: -25.789955,-32.280567 - parent: 2 - - uid: 18902 - components: - - type: Transform - pos: -25.357204,-32.064083 - parent: 2 -- proto: LeavesTobaccoDried - entities: - - uid: 19012 - components: - - type: Transform - pos: -25.30165,-31.992579 - parent: 2 - - uid: 19013 - components: - - type: Transform - pos: -25.259981,-31.89941 - parent: 2 - - uid: 19014 - components: - - type: Transform - pos: -25.64344,-32.075485 + pos: -20.113028,-42.324776 parent: 2 - proto: LiquidNitrogenCanister entities: @@ -87072,6 +86984,8 @@ entities: 3324: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonChiefEngineer entities: - uid: 6608 @@ -87103,6 +87017,8 @@ entities: 15103: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonJanitor entities: - uid: 1041 @@ -87121,6 +87037,8 @@ entities: 696: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonMedical entities: - uid: 5114 @@ -87136,6 +87054,8 @@ entities: 546: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonService entities: - uid: 2479 @@ -87151,6 +87071,8 @@ entities: 252: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockerAtmosphericsFilledHardsuit entities: - uid: 4796 @@ -87324,10 +87246,10 @@ entities: parent: 2 - proto: LockerFreezerVaultFilled entities: - - uid: 5146 + - uid: 11718 components: - type: Transform - pos: 9.5,-43.5 + pos: 9.5,-44.5 parent: 2 - proto: LockerHeadOfPersonnelFilled entities: @@ -87520,13 +87442,15 @@ entities: - type: Transform pos: -16.5,-15.5 parent: 2 -- proto: LockerSecurityFilled +- proto: LockerSecurity entities: - - uid: 6149 + - uid: 4676 components: - type: Transform pos: 11.5,-47.5 parent: 2 +- proto: LockerSecurityFilled + entities: - uid: 9892 components: - type: Transform @@ -87559,6 +87483,8 @@ entities: - type: Transform pos: 12.5,-68.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: LockerWardenFilled entities: - uid: 3453 @@ -87700,11 +87626,6 @@ entities: - type: Transform pos: 56.648838,-18.357616 parent: 2 - - uid: 18475 - components: - - type: Transform - pos: -23.48515,-92.497 - parent: 2 - proto: MachineAnomalyGenerator entities: - uid: 583 @@ -87865,11 +87786,6 @@ entities: - type: Transform pos: -34.5,-29.5 parent: 2 - - uid: 17361 - components: - - type: Transform - pos: -25.5,-39.5 - parent: 2 - uid: 17421 components: - type: Transform @@ -87978,16 +87894,18 @@ entities: parent: 2 - proto: Matchbox entities: - - uid: 5667 - components: - - type: Transform - pos: -25.615442,-29.699175 - parent: 2 - uid: 18996 components: - type: Transform pos: -21.27906,-47.504948 parent: 2 +- proto: MatchstickSpent + entities: + - uid: 5662 + components: + - type: Transform + pos: -9.56385,-38.433666 + parent: 2 - proto: MaterialBones1 entities: - uid: 7918 @@ -88076,13 +87994,6 @@ entities: - type: Transform pos: -3.5,-22.5 parent: 2 -- proto: MaterialDiamond1 - entities: - - uid: 17564 - components: - - type: Transform - pos: 9.487229,-44.345783 - parent: 2 - proto: MaterialDurathread entities: - uid: 16377 @@ -88121,6 +88032,21 @@ entities: parent: 2 - proto: MaterialWoodPlank1 entities: + - uid: 1679 + components: + - type: Transform + pos: -7.5,-33.5 + parent: 2 + - uid: 5376 + components: + - type: Transform + pos: -10.5,-32.5 + parent: 2 + - uid: 5649 + components: + - type: Transform + pos: -5.5,-38.5 + parent: 2 - uid: 7336 components: - type: Transform @@ -88275,11 +88201,6 @@ entities: - type: Transform pos: 21.454115,-29.711697 parent: 2 - - uid: 17032 - components: - - type: Transform - pos: 21.599949,-29.378132 - parent: 2 - proto: MedkitOxygenFilled entities: - uid: 5126 @@ -88355,24 +88276,32 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6160 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-49.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6161 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7093 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: MopBucketFull entities: - uid: 5622 @@ -88678,6 +88607,8 @@ entities: - type: Transform pos: 38.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: NTDefaultCircuitBoard entities: - uid: 18623 @@ -88838,6 +88769,8 @@ entities: - type: Transform pos: 72.5,-52.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingSadClown entities: - uid: 6001 @@ -88846,6 +88779,8 @@ entities: rot: 1.5707963267948966 rad pos: -49.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingTheGreatWave entities: - uid: 18495 @@ -88853,6 +88788,8 @@ entities: - type: Transform pos: -39.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingTheScream entities: - uid: 7051 @@ -88860,6 +88797,8 @@ entities: - type: Transform pos: -22.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaladinCircuitBoard entities: - uid: 18620 @@ -89230,6 +89169,13 @@ entities: - type: Transform pos: -9.678529,-26.311075 parent: 2 +- proto: PhoneInstrument + entities: + - uid: 14216 + components: + - type: Transform + pos: -48.062805,-45.86218 + parent: 2 - proto: PianoInstrument entities: - uid: 6989 @@ -89298,12 +89244,6 @@ entities: parent: 2 - proto: PlasmaReinforcedWindowDirectional entities: - - uid: 1616 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-21.5 - parent: 2 - uid: 3731 components: - type: Transform @@ -89316,12 +89256,42 @@ entities: rot: 3.141592653589793 rad pos: 58.5,-47.5 parent: 2 + - uid: 4704 + components: + - type: Transform + pos: 45.5,-20.5 + parent: 2 + - uid: 4723 + components: + - type: Transform + pos: 46.5,-20.5 + parent: 2 - uid: 4724 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-66.5 parent: 2 + - uid: 4921 + components: + - type: Transform + pos: 48.5,-20.5 + parent: 2 + - uid: 4923 + components: + - type: Transform + pos: 44.5,-20.5 + parent: 2 + - uid: 4924 + components: + - type: Transform + pos: 42.5,-20.5 + parent: 2 + - uid: 4927 + components: + - type: Transform + pos: 47.5,-20.5 + parent: 2 - uid: 5073 components: - type: Transform @@ -89334,17 +89304,26 @@ entities: rot: 3.141592653589793 rad pos: -57.5,-66.5 parent: 2 + - uid: 5146 + components: + - type: Transform + pos: 43.5,-20.5 + parent: 2 - uid: 5183 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,-66.5 parent: 2 - - uid: 5965 + - uid: 5691 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-66.5 + pos: 54.5,-20.5 + parent: 2 + - uid: 5692 + components: + - type: Transform + pos: 55.5,-20.5 parent: 2 - uid: 5976 components: @@ -89376,11 +89355,41 @@ entities: rot: 3.141592653589793 rad pos: 89.5,-46.5 parent: 2 + - uid: 11723 + components: + - type: Transform + pos: 56.5,-20.5 + parent: 2 - uid: 11755 components: - type: Transform pos: 89.5,-44.5 parent: 2 + - uid: 14000 + components: + - type: Transform + pos: 51.5,-20.5 + parent: 2 + - uid: 14001 + components: + - type: Transform + pos: 52.5,-20.5 + parent: 2 + - uid: 14002 + components: + - type: Transform + pos: 50.5,-20.5 + parent: 2 + - uid: 14003 + components: + - type: Transform + pos: 53.5,-20.5 + parent: 2 + - uid: 14004 + components: + - type: Transform + pos: 49.5,-20.5 + parent: 2 - uid: 16336 components: - type: Transform @@ -89399,11 +89408,6 @@ entities: rot: -1.5707963267948966 rad pos: -59.5,-61.5 parent: 2 - - uid: 18339 - components: - - type: Transform - pos: 58.5,-20.5 - parent: 2 - proto: PlasmaTank entities: - uid: 7689 @@ -89484,12 +89488,6 @@ entities: rot: 3.141592653589793 rad pos: 81.5,-44.5 parent: 2 - - uid: 2378 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-45.5 - parent: 2 - uid: 2896 components: - type: Transform @@ -89584,23 +89582,11 @@ entities: parent: 2 - proto: PlasmaWindoorSecureScienceLocked entities: - - uid: 5117 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-29.5 - parent: 2 - uid: 11364 components: - type: Transform pos: -7.5,-18.5 parent: 2 - - uid: 11711 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-35.5 - parent: 2 - uid: 13975 components: - type: Transform @@ -89620,6 +89606,12 @@ entities: rot: 3.141592653589793 rad pos: 59.5,-47.5 parent: 2 + - uid: 4742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-21.5 + parent: 2 - uid: 6143 components: - type: Transform @@ -89974,6 +89966,8 @@ entities: rot: 3.141592653589793 rad pos: -1.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandAtmosiaDeclarationIndependence entities: - uid: 17214 @@ -89982,6 +89976,8 @@ entities: rot: 3.141592653589793 rad pos: 45.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandClown entities: - uid: 5968 @@ -89990,18 +89986,24 @@ entities: rot: -1.5707963267948966 rad pos: -58.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19271 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19272 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandDonk entities: - uid: 2807 @@ -90009,98 +90011,132 @@ entities: - type: Transform pos: 13.5,-85.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6807 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-99.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6808 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-86.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6809 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-90.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6810 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-93.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6811 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-94.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6813 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-94.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6956 components: - type: Transform pos: 30.5,-102.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16968 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-83.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16969 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-83.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16970 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-86.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16971 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-86.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17229 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,-102.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17230 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,-102.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18230 components: - type: Transform pos: 36.5,-89.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18530 components: - type: Transform pos: 11.5,-76.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18538 components: - type: Transform pos: 16.5,-85.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandDonutCorp entities: - uid: 17316 @@ -90108,6 +90144,8 @@ entities: - type: Transform pos: 6.5,-81.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandEAT entities: - uid: 15130 @@ -90115,11 +90153,15 @@ entities: - type: Transform pos: 31.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16638 components: - type: Transform pos: 45.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandEnergySwords entities: - uid: 18496 @@ -90127,6 +90169,8 @@ entities: - type: Transform pos: -48.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandExoAcid entities: - uid: 19150 @@ -90135,34 +90179,46 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19155 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-59.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19169 components: - type: Transform pos: -41.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19176 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19211 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19240 components: - type: Transform pos: 21.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandExoChomp entities: - uid: 10734 @@ -90171,23 +90227,31 @@ entities: rot: -1.5707963267948966 rad pos: 74.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18764 components: - type: Transform pos: -37.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19148 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19202 components: - type: Transform rot: 1.5707963267948966 rad pos: 79.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandExoRun entities: - uid: 7810 @@ -90195,24 +90259,32 @@ entities: - type: Transform pos: 74.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19154 components: - type: Transform rot: 1.5707963267948966 rad pos: 73.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19172 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19190 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandHackingGuide entities: - uid: 19421 @@ -90220,6 +90292,8 @@ entities: - type: Transform pos: 39.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandLamarr entities: - uid: 17407 @@ -90227,6 +90301,8 @@ entities: - type: Transform pos: 3.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandRealExomorph entities: - uid: 2474 @@ -90234,16 +90310,22 @@ entities: - type: Transform pos: -23.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3137 components: - type: Transform pos: 76.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4387 components: - type: Transform pos: -21.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandRouny entities: - uid: 2672 @@ -90251,22 +90333,30 @@ entities: - type: Transform pos: -23.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7949 components: - type: Transform pos: 80.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19219 components: - type: Transform pos: -6.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19316 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandTools entities: - uid: 19383 @@ -90274,6 +90364,8 @@ entities: - type: Transform pos: -18.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandWehWatches entities: - uid: 16274 @@ -90281,6 +90373,8 @@ entities: - type: Transform pos: 51.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitAnatomyPoster entities: - uid: 2842 @@ -90288,6 +90382,8 @@ entities: - type: Transform pos: 12.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitBuild entities: - uid: 17216 @@ -90295,17 +90391,23 @@ entities: - type: Transform pos: 27.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17217 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19242 components: - type: Transform pos: -15.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitDickGumshue entities: - uid: 16263 @@ -90313,6 +90415,8 @@ entities: - type: Transform pos: 71.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitDoNotQuestion entities: - uid: 7071 @@ -90321,11 +90425,15 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18195 components: - type: Transform pos: 8.5,-46.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitEnlist entities: - uid: 7072 @@ -90334,6 +90442,8 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitFoamForceAd entities: - uid: 8428 @@ -90341,11 +90451,15 @@ entities: - type: Transform pos: 70.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8515 components: - type: Transform pos: 68.5,-59.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitHelpOthers entities: - uid: 17218 @@ -90354,6 +90468,8 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitHereForYourSafety entities: - uid: 16268 @@ -90361,11 +90477,15 @@ entities: - type: Transform pos: 70.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18196 components: - type: Transform pos: 11.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitIan entities: - uid: 18017 @@ -90373,6 +90493,8 @@ entities: - type: Transform pos: 12.5,-61.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitJustAWeekAway entities: - uid: 17036 @@ -90381,6 +90503,8 @@ entities: rot: 3.141592653589793 rad pos: 9.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitLoveIan entities: - uid: 17035 @@ -90389,11 +90513,15 @@ entities: rot: 3.141592653589793 rad pos: 13.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18021 components: - type: Transform pos: 12.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitMime entities: - uid: 6000 @@ -90402,6 +90530,8 @@ entities: rot: 1.5707963267948966 rad pos: -51.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitNanotrasenLogo entities: - uid: 16107 @@ -90409,44 +90539,60 @@ entities: - type: Transform pos: -1.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16287 components: - type: Transform pos: 63.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16293 components: - type: Transform pos: 43.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17031 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17033 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17037 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-57.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18732 components: - type: Transform pos: 22.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18733 components: - type: Transform pos: 26.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitObey entities: - uid: 7159 @@ -90454,11 +90600,15 @@ entities: - type: Transform pos: 66.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7170 components: - type: Transform pos: 65.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitRenault entities: - uid: 18031 @@ -90467,6 +90617,8 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,-54.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitReportCrimes entities: - uid: 7069 @@ -90474,11 +90626,15 @@ entities: - type: Transform pos: 31.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16269 components: - type: Transform pos: 63.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyEyeProtection entities: - uid: 19241 @@ -90486,6 +90642,8 @@ entities: - type: Transform pos: 17.5,-69.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyInternals entities: - uid: 17219 @@ -90494,12 +90652,16 @@ entities: rot: 3.141592653589793 rad pos: 7.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18774 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.5,-67.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothDelam entities: - uid: 17232 @@ -90508,6 +90670,8 @@ entities: rot: 3.141592653589793 rad pos: -32.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothEpi entities: - uid: 16285 @@ -90515,12 +90679,16 @@ entities: - type: Transform pos: 49.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17233 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-61.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothHardhat entities: - uid: 17234 @@ -90529,12 +90697,16 @@ entities: rot: 3.141592653589793 rad pos: -32.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18773 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,-67.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothMeth entities: - uid: 6970 @@ -90543,12 +90715,16 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,-67.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17235 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothPiping entities: - uid: 17236 @@ -90557,6 +90733,8 @@ entities: rot: 3.141592653589793 rad pos: -32.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyReport entities: - uid: 15143 @@ -90564,11 +90742,15 @@ entities: - type: Transform pos: 48.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16284 components: - type: Transform pos: 57.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSecWatch entities: - uid: 7068 @@ -90576,11 +90758,15 @@ entities: - type: Transform pos: 26.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16271 components: - type: Transform pos: 54.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSpaceCops entities: - uid: 16272 @@ -90588,6 +90774,8 @@ entities: - type: Transform pos: 68.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitStateLaws entities: - uid: 17222 @@ -90596,6 +90784,8 @@ entities: rot: 3.141592653589793 rad pos: 26.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitTyrone entities: - uid: 18011 @@ -90604,6 +90794,8 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitWalk entities: - uid: 15144 @@ -90611,12 +90803,16 @@ entities: - type: Transform pos: 62.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16029 components: - type: Transform rot: -1.5707963267948966 rad pos: 73.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitWorkForAFuture entities: - uid: 16270 @@ -90624,12 +90820,16 @@ entities: - type: Transform pos: 73.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17220 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PottedPlant0 entities: - uid: 7767 @@ -90705,11 +90905,6 @@ entities: - type: Transform pos: 3.5,-69.5 parent: 2 - - uid: 17422 - components: - - type: Transform - pos: -2.5,-41.5 - parent: 2 - proto: PottedPlantBioluminscent entities: - uid: 8788 @@ -90839,24 +91034,6 @@ entities: parent: 2 - proto: Poweredlight entities: - - uid: 270 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-40.5 - parent: 2 - - uid: 287 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 94.5,-46.5 - parent: 2 - - uid: 468 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-15.5 - parent: 2 - uid: 806 components: - type: Transform @@ -90869,39 +91046,57 @@ entities: rot: 3.141592653589793 rad pos: 12.5,-32.5 parent: 2 - - uid: 916 + - uid: 1337 + components: + - type: Transform + pos: 28.5,-22.5 + parent: 2 + - uid: 1338 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 2 + - uid: 1339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-29.5 + parent: 2 + - uid: 1416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-17.5 + parent: 2 + - uid: 1445 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,-12.5 + pos: -26.5,-47.5 parent: 2 - - uid: 1113 + - uid: 1616 components: - type: Transform - pos: 41.5,-23.5 + rot: -1.5707963267948966 rad + pos: -51.5,-42.5 parent: 2 - - uid: 1449 + - uid: 1671 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-40.5 + rot: -1.5707963267948966 rad + pos: -47.5,-38.5 parent: 2 - - uid: 1847 + - uid: 1672 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,-25.5 + rot: -1.5707963267948966 rad + pos: -47.5,-52.5 parent: 2 - - uid: 1884 + - uid: 1680 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-58.5 - parent: 2 - - uid: 2194 - components: - - type: Transform - pos: 26.5,-48.5 + rot: -1.5707963267948966 rad + pos: -51.5,-48.5 parent: 2 - uid: 2245 components: @@ -90909,47 +91104,16 @@ entities: rot: -1.5707963267948966 rad pos: 54.5,-70.5 parent: 2 - - uid: 2254 + - uid: 3007 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-66.5 - parent: 2 - - uid: 2463 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-57.5 - parent: 2 - - uid: 2649 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-48.5 - parent: 2 - - uid: 2968 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-62.5 - parent: 2 - - uid: 3003 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-40.5 + pos: 17.5,-34.5 parent: 2 - uid: 3064 components: - type: Transform pos: 64.5,-23.5 parent: 2 - - uid: 3207 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-30.5 - parent: 2 - uid: 3348 components: - type: Transform @@ -90962,44 +91126,45 @@ entities: rot: -1.5707963267948966 rad pos: 66.5,-18.5 parent: 2 - - uid: 4018 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-17.5 - parent: 2 - uid: 4173 components: - type: Transform pos: 63.5,-16.5 parent: 2 - - uid: 4511 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-61.5 - parent: 2 - - uid: 4921 - components: - - type: Transform - pos: 29.5,-15.5 - parent: 2 - - uid: 4922 + - uid: 4715 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,-10.5 + pos: 15.5,-59.5 parent: 2 - - uid: 5084 + - uid: 4934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-23.5 + parent: 2 + - uid: 4935 + components: + - type: Transform + pos: -39.5,-64.5 + parent: 2 + - uid: 4936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-64.5 + parent: 2 + - uid: 5029 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,-21.5 + pos: -45.5,-65.5 parent: 2 - uid: 5122 components: - type: Transform - pos: -17.5,-37.5 + rot: -1.5707963267948966 rad + pos: -16.5,-16.5 parent: 2 - uid: 5184 components: @@ -91007,61 +91172,28 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,-70.5 parent: 2 - - uid: 5205 + - uid: 5298 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-18.5 + rot: -1.5707963267948966 rad + pos: -33.5,-64.5 parent: 2 - - uid: 5224 + - uid: 5682 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,-31.5 - parent: 2 - - uid: 5376 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-69.5 - parent: 2 - - uid: 5780 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-84.5 - parent: 2 - - uid: 5842 - components: - - type: Transform - pos: 16.5,-27.5 + pos: -8.5,-43.5 parent: 2 - uid: 5855 components: - type: Transform pos: 12.5,-27.5 parent: 2 - - uid: 5881 + - uid: 6123 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-72.5 - parent: 2 - - uid: 6206 - components: - - type: Transform - pos: 18.5,-34.5 - parent: 2 - - uid: 6260 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-67.5 - parent: 2 - - uid: 6289 - components: - - type: Transform - pos: 68.5,-32.5 + rot: -1.5707963267948966 rad + pos: 26.5,-34.5 parent: 2 - uid: 6390 components: @@ -91074,42 +91206,18 @@ entities: rot: 3.141592653589793 rad pos: 15.5,-20.5 parent: 2 - - uid: 7158 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-36.5 - parent: 2 - uid: 7199 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-21.5 parent: 2 - - uid: 7234 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-23.5 - parent: 2 - uid: 7271 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,-16.5 parent: 2 - - uid: 7295 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-52.5 - parent: 2 - - uid: 7568 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-27.5 - parent: 2 - uid: 7598 components: - type: Transform @@ -91121,24 +91229,12 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-57.5 parent: 2 - - uid: 7668 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-32.5 - parent: 2 - uid: 7709 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-32.5 parent: 2 - - uid: 7710 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-37.5 - parent: 2 - uid: 7711 components: - type: Transform @@ -91146,88 +91242,50 @@ entities: pos: 21.5,-70.5 parent: 2 - type: Timer - - uid: 7943 - components: - - type: Transform - pos: 60.5,-41.5 - parent: 2 - - uid: 7944 - components: - - type: Transform - pos: 40.5,-52.5 - parent: 2 - - uid: 8037 - components: - - type: Transform - pos: 33.5,-52.5 - parent: 2 - uid: 8181 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,-64.5 parent: 2 - - uid: 8807 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-51.5 - parent: 2 - - uid: 9074 - components: - - type: Transform - pos: 11.5,-77.5 - parent: 2 - - uid: 9679 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-29.5 - parent: 2 - - uid: 9822 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-60.5 - parent: 2 - - uid: 9885 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-13.5 - parent: 2 - - uid: 9957 - components: - - type: Transform - pos: -9.5,-30.5 - parent: 2 - uid: 10225 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-15.5 parent: 2 + - uid: 10283 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 2 - uid: 10411 components: - type: Transform rot: 3.141592653589793 rad pos: 79.5,-47.5 parent: 2 - - uid: 10494 - components: - - type: Transform - pos: -2.5,-30.5 - parent: 2 - uid: 10645 components: - type: Transform - pos: -6.5,-30.5 + pos: 24.5,-11.5 parent: 2 - - uid: 10741 + - uid: 10742 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-34.5 + rot: 3.141592653589793 rad + pos: 51.5,-24.5 + parent: 2 + - uid: 10786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-24.5 + parent: 2 + - uid: 10795 + components: + - type: Transform + pos: 18.5,-11.5 parent: 2 - uid: 10830 components: @@ -91235,17 +91293,6 @@ entities: rot: -1.5707963267948966 rad pos: 94.5,-44.5 parent: 2 - - uid: 11365 - components: - - type: Transform - pos: -8.5,-19.5 - parent: 2 - - uid: 11457 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-18.5 - parent: 2 - uid: 11470 components: - type: Transform @@ -91257,58 +91304,12 @@ entities: rot: 1.5707963267948966 rad pos: 58.5,-20.5 parent: 2 - - uid: 11916 - components: - - type: Transform - pos: -22.5,-37.5 - parent: 2 - - uid: 11917 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-27.5 - parent: 2 - - uid: 11918 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-27.5 - parent: 2 - - uid: 11947 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-73.5 - parent: 2 - - uid: 12786 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-65.5 - parent: 2 - uid: 12827 components: - type: Transform rot: -1.5707963267948966 rad pos: 60.5,-26.5 parent: 2 - - uid: 12916 - components: - - type: Transform - pos: 57.5,-23.5 - parent: 2 - - uid: 13208 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-29.5 - parent: 2 - - uid: 13330 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-28.5 - parent: 2 - uid: 13332 components: - type: Transform @@ -91333,12 +91334,6 @@ entities: rot: 3.141592653589793 rad pos: 62.5,-29.5 parent: 2 - - uid: 13888 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-16.5 - parent: 2 - uid: 13918 components: - type: Transform @@ -91349,35 +91344,18 @@ entities: - type: Transform pos: -1.5,-5.5 parent: 2 - - uid: 13947 - components: - - type: Transform - pos: 4.5,-5.5 - parent: 2 - uid: 13949 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,2.5 parent: 2 - - uid: 13950 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,0.5 - parent: 2 - uid: 13951 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-5.5 parent: 2 - - uid: 13952 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-7.5 - parent: 2 - uid: 13954 components: - type: Transform @@ -91408,86 +91386,22 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-2.5 parent: 2 - - uid: 13959 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-7.5 - parent: 2 - - uid: 13960 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-4.5 - parent: 2 - - uid: 13961 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-0.5 - parent: 2 - uid: 13962 components: - type: Transform pos: -6.5,-1.5 parent: 2 - - uid: 13963 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-3.5 - parent: 2 - - uid: 13964 - components: - - type: Transform - pos: 6.5,-3.5 - parent: 2 - uid: 13965 components: - type: Transform pos: -4.5,2.5 parent: 2 - - uid: 13971 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-12.5 - parent: 2 - - uid: 13972 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-12.5 - parent: 2 - - uid: 13973 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-15.5 - parent: 2 - - uid: 13974 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-15.5 - parent: 2 - uid: 13976 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-15.5 parent: 2 - - uid: 13980 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-16.5 - parent: 2 - - uid: 13981 - components: - - type: Transform - pos: 10.5,-14.5 - parent: 2 - uid: 13982 components: - type: Transform @@ -91504,77 +91418,12 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,-20.5 parent: 2 - - uid: 13988 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-22.5 - parent: 2 - uid: 13989 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-25.5 parent: 2 - - uid: 14000 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-25.5 - parent: 2 - - uid: 14001 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-20.5 - parent: 2 - - uid: 14002 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-33.5 - parent: 2 - - uid: 14003 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-33.5 - parent: 2 - - uid: 14004 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-36.5 - parent: 2 - - uid: 14012 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-36.5 - parent: 2 - - uid: 14018 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-47.5 - parent: 2 - - uid: 14019 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-41.5 - parent: 2 - - uid: 14021 - components: - - type: Transform - pos: -26.5,-55.5 - parent: 2 - - uid: 14022 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-51.5 - parent: 2 - uid: 14023 components: - type: Transform @@ -91586,63 +91435,23 @@ entities: - type: Transform pos: -12.5,-58.5 parent: 2 - - uid: 14037 - components: - - type: Transform - pos: -21.5,-66.5 - parent: 2 - uid: 14038 components: - type: Transform pos: -25.5,-66.5 parent: 2 - - uid: 14039 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-66.5 - parent: 2 - uid: 14040 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,-62.5 parent: 2 - - uid: 14048 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-12.5 - parent: 2 - uid: 14050 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,-76.5 parent: 2 - - uid: 14054 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-63.5 - parent: 2 - - uid: 14055 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-54.5 - parent: 2 - - uid: 14057 - components: - - type: Transform - pos: -31.5,-51.5 - parent: 2 - - uid: 14059 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-60.5 - parent: 2 - uid: 14060 components: - type: Transform @@ -91667,125 +91476,27 @@ entities: rot: -1.5707963267948966 rad pos: -56.5,-65.5 parent: 2 - - uid: 14066 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-57.5 - parent: 2 - uid: 14071 components: - type: Transform pos: 8.5,-47.5 parent: 2 - - uid: 14072 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-49.5 - parent: 2 - - uid: 14073 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-51.5 - parent: 2 - - uid: 14074 - components: - - type: Transform - pos: 7.5,-52.5 - parent: 2 - - uid: 14075 - components: - - type: Transform - pos: 11.5,-52.5 - parent: 2 - - uid: 14077 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-57.5 - parent: 2 - - uid: 14078 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-61.5 - parent: 2 - - uid: 14080 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-56.5 - parent: 2 - uid: 14084 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-51.5 parent: 2 - - uid: 14085 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-56.5 - parent: 2 - - uid: 14087 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-55.5 - parent: 2 - - uid: 14088 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-48.5 - parent: 2 - - uid: 14092 - components: - - type: Transform - pos: 5.5,-65.5 - parent: 2 - - uid: 14095 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-69.5 - parent: 2 - uid: 14097 components: - type: Transform pos: -2.5,-69.5 parent: 2 - - uid: 14107 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-76.5 - parent: 2 - - uid: 14108 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-79.5 - parent: 2 - - uid: 14109 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-79.5 - parent: 2 - uid: 14110 components: - type: Transform pos: 22.5,-76.5 parent: 2 - - uid: 14111 - components: - - type: Transform - pos: 26.5,-76.5 - parent: 2 - uid: 14112 components: - type: Transform @@ -91798,297 +91509,40 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,-81.5 parent: 2 - - uid: 14114 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-81.5 - parent: 2 - uid: 14116 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-21.5 parent: 2 - - uid: 14117 - components: - - type: Transform - pos: -15.5,-18.5 - parent: 2 - - uid: 14120 - components: - - type: Transform - pos: 11.5,-71.5 - parent: 2 - - uid: 14124 - components: - - type: Transform - pos: -19.5,-15.5 - parent: 2 - - uid: 14128 - components: - - type: Transform - pos: -12.5,-23.5 - parent: 2 - - uid: 14129 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-27.5 - parent: 2 - uid: 14130 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-26.5 parent: 2 - - uid: 14131 - components: - - type: Transform - pos: -20.5,-24.5 - parent: 2 - - uid: 14133 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-39.5 - parent: 2 - - uid: 14134 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-41.5 - parent: 2 - - uid: 14135 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-41.5 - parent: 2 - - uid: 14136 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-33.5 - parent: 2 - - uid: 14145 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-13.5 - parent: 2 - - uid: 14146 - components: - - type: Transform - pos: -19.5,-11.5 - parent: 2 - - uid: 14147 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-16.5 - parent: 2 - - uid: 14149 - components: - - type: Transform - pos: -25.5,-11.5 - parent: 2 - uid: 14150 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-16.5 + rot: -1.5707963267948966 rad + pos: 25.5,-39.5 parent: 2 - uid: 14151 components: - type: Transform pos: -34.5,-10.5 parent: 2 - - uid: 14154 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-12.5 - parent: 2 - uid: 14158 components: - type: Transform pos: -4.5,-10.5 parent: 2 - - uid: 14159 - components: - - type: Transform - pos: 9.5,-10.5 - parent: 2 - - uid: 14161 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-22.5 - parent: 2 - - uid: 14162 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-25.5 - parent: 2 - - uid: 14163 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-21.5 - parent: 2 - - uid: 14164 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-27.5 - parent: 2 - - uid: 14165 - components: - - type: Transform - pos: -32.5,-33.5 - parent: 2 - - uid: 14166 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-37.5 - parent: 2 - - uid: 14167 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-39.5 - parent: 2 - - uid: 14168 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-31.5 - parent: 2 - - uid: 14169 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-47.5 - parent: 2 - - uid: 14170 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-43.5 - parent: 2 - - uid: 14171 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-49.5 - parent: 2 - - uid: 14172 - components: - - type: Transform - pos: -32.5,-41.5 - parent: 2 - - uid: 14173 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-47.5 - parent: 2 - - uid: 14174 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-43.5 - parent: 2 - - uid: 14175 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-48.5 - parent: 2 - - uid: 14176 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-42.5 - parent: 2 - - uid: 14177 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-39.5 - parent: 2 - - uid: 14180 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-54.5 - parent: 2 - - uid: 14182 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-48.5 - parent: 2 - - uid: 14183 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-42.5 - parent: 2 - - uid: 14184 - components: - - type: Transform - pos: -50.5,-36.5 - parent: 2 - - uid: 14185 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-48.5 - parent: 2 - - uid: 14186 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-42.5 - parent: 2 - - uid: 14187 - components: - - type: Transform - pos: -54.5,-43.5 - parent: 2 - - uid: 14188 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-47.5 - parent: 2 - - uid: 14193 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-73.5 - parent: 2 - - uid: 14202 - components: - - type: Transform - pos: 18.5,-91.5 - parent: 2 - uid: 14204 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-93.5 parent: 2 - - uid: 14205 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-89.5 - parent: 2 - uid: 14206 components: - type: Transform @@ -92101,115 +91555,18 @@ entities: rot: 3.141592653589793 rad pos: 22.5,-99.5 parent: 2 - - uid: 14208 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-101.5 - parent: 2 - uid: 14209 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-101.5 parent: 2 - - uid: 14210 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-95.5 - parent: 2 - - uid: 14211 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-93.5 - parent: 2 - uid: 14214 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-90.5 parent: 2 - - uid: 14215 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-54.5 - parent: 2 - - uid: 14216 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-79.5 - parent: 2 - - uid: 14217 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-73.5 - parent: 2 - - type: Timer - - uid: 14218 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-68.5 - parent: 2 - - type: Timer - - uid: 14219 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-55.5 - parent: 2 - - uid: 14220 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-64.5 - parent: 2 - - uid: 14221 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-51.5 - parent: 2 - - uid: 14222 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-58.5 - parent: 2 - - uid: 14223 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-58.5 - parent: 2 - - uid: 14224 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-55.5 - parent: 2 - - uid: 14225 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-51.5 - parent: 2 - - uid: 14226 - components: - - type: Transform - pos: 22.5,-48.5 - parent: 2 - - uid: 14228 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-54.5 - parent: 2 - uid: 14232 components: - type: Transform @@ -92221,52 +91578,11 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,-39.5 parent: 2 - - uid: 14235 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-45.5 - parent: 2 - uid: 14236 components: - type: Transform pos: 41.5,-40.5 parent: 2 - - uid: 14260 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-52.5 - parent: 2 - - uid: 14284 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-33.5 - parent: 2 - - uid: 14285 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-39.5 - parent: 2 - - uid: 14286 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-45.5 - parent: 2 - - uid: 14292 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-72.5 - parent: 2 - - uid: 14324 - components: - - type: Transform - pos: 39.5,-56.5 - parent: 2 - uid: 14325 components: - type: Transform @@ -92349,23 +91665,6 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,-68.5 parent: 2 - - uid: 14803 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-15.5 - parent: 2 - - uid: 14946 - components: - - type: Transform - pos: 14.5,-11.5 - parent: 2 - - uid: 15146 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-31.5 - parent: 2 - uid: 15148 components: - type: Transform @@ -92382,18 +91681,6 @@ entities: - type: Transform pos: 56.5,-36.5 parent: 2 - - uid: 15201 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-39.5 - parent: 2 - - uid: 15202 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-28.5 - parent: 2 - uid: 15203 components: - type: Transform @@ -92406,36 +91693,12 @@ entities: rot: -1.5707963267948966 rad pos: 70.5,-28.5 parent: 2 - - uid: 15205 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-39.5 - parent: 2 - uid: 15206 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,-41.5 parent: 2 - - uid: 15207 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,-42.5 - parent: 2 - - uid: 15208 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-52.5 - parent: 2 - - uid: 15209 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-51.5 - parent: 2 - uid: 15210 components: - type: Transform @@ -92448,69 +91711,12 @@ entities: rot: 1.5707963267948966 rad pos: 64.5,-47.5 parent: 2 - - uid: 15212 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-44.5 - parent: 2 - - uid: 15213 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-44.5 - parent: 2 - - uid: 15215 - components: - - type: Transform - pos: 52.5,-43.5 - parent: 2 - - uid: 15216 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-47.5 - parent: 2 - - uid: 15217 - components: - - type: Transform - pos: 49.5,-50.5 - parent: 2 - - uid: 15218 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-46.5 - parent: 2 - - uid: 15219 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-41.5 - parent: 2 - - uid: 15225 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-41.5 - parent: 2 - uid: 15226 components: - type: Transform rot: -1.5707963267948966 rad pos: 65.5,-35.5 parent: 2 - - uid: 15227 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-32.5 - parent: 2 - - uid: 15233 - components: - - type: Transform - pos: 60.5,-31.5 - parent: 2 - uid: 15234 components: - type: Transform @@ -92523,41 +91729,12 @@ entities: rot: -1.5707963267948966 rad pos: 69.5,-34.5 parent: 2 - - uid: 15237 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,-44.5 - parent: 2 - - uid: 15238 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-38.5 - parent: 2 - - uid: 15247 - components: - - type: Transform - pos: 88.5,-43.5 - parent: 2 - uid: 15248 components: - type: Transform rot: 3.141592653589793 rad pos: 88.5,-47.5 parent: 2 - - uid: 15251 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-49.5 - parent: 2 - - uid: 15252 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-49.5 - parent: 2 - uid: 15253 components: - type: Transform @@ -92574,18 +91751,6 @@ entities: - type: Transform pos: 54.5,-55.5 parent: 2 - - uid: 15399 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-57.5 - parent: 2 - - uid: 15411 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-21.5 - parent: 2 - uid: 15442 components: - type: Transform @@ -92596,12 +91761,6 @@ entities: - type: Transform pos: 15.5,-69.5 parent: 2 - - uid: 15881 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-14.5 - parent: 2 - uid: 16147 components: - type: Transform @@ -92626,39 +91785,12 @@ entities: rot: 3.141592653589793 rad pos: 17.5,-100.5 parent: 2 - - uid: 16533 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-40.5 - parent: 2 - - uid: 16540 - components: - - type: Transform - pos: -13.5,-15.5 - parent: 2 - uid: 16547 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-68.5 parent: 2 - - uid: 16548 - components: - - type: Transform - pos: 13.5,-65.5 - parent: 2 - - uid: 16549 - components: - - type: Transform - pos: 20.5,-65.5 - parent: 2 - - uid: 16550 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-69.5 - parent: 2 - uid: 16564 components: - type: Transform @@ -92675,18 +91807,6 @@ entities: - type: Transform pos: -24.5,-16.5 parent: 2 - - uid: 17332 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-67.5 - parent: 2 - - uid: 17416 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-31.5 - parent: 2 - uid: 17549 components: - type: Transform @@ -92699,91 +91819,12 @@ entities: rot: 3.141592653589793 rad pos: 10.5,-75.5 parent: 2 - - uid: 17785 - components: - - type: Transform - pos: -12.5,-11.5 - parent: 2 - - uid: 17806 - components: - - type: Transform - pos: 3.5,-34.5 - parent: 2 - uid: 17831 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-89.5 parent: 2 - - uid: 17832 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-89.5 - parent: 2 - - uid: 18069 - components: - - type: Transform - pos: 18.5,-11.5 - parent: 2 - - uid: 18070 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-13.5 - parent: 2 - - uid: 18072 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-10.5 - parent: 2 - - uid: 18073 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-27.5 - parent: 2 - - uid: 18074 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-39.5 - parent: 2 - - uid: 18075 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-39.5 - parent: 2 - - uid: 18076 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-50.5 - parent: 2 - - uid: 18077 - components: - - type: Transform - pos: -50.5,-44.5 - parent: 2 - - uid: 18078 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-37.5 - parent: 2 - - uid: 18079 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-52.5 - parent: 2 - - uid: 18081 - components: - - type: Transform - pos: -36.5,-64.5 - parent: 2 - uid: 18082 components: - type: Transform @@ -92808,71 +91849,17 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,-78.5 parent: 2 - - uid: 18086 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-78.5 - parent: 2 - uid: 18087 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-78.5 parent: 2 - - uid: 18088 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-78.5 - parent: 2 - uid: 18089 components: - type: Transform pos: 16.5,-65.5 parent: 2 - - uid: 18090 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-69.5 - parent: 2 - - uid: 18093 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-89.5 - parent: 2 - - uid: 18094 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-101.5 - parent: 2 - - uid: 18095 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-100.5 - parent: 2 - - uid: 18096 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-100.5 - parent: 2 - - uid: 18097 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-85.5 - parent: 2 - - uid: 18098 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-85.5 - parent: 2 - uid: 18108 components: - type: Transform @@ -92885,120 +91872,12 @@ entities: rot: 3.141592653589793 rad pos: 32.5,-46.5 parent: 2 - - uid: 18111 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-46.5 - parent: 2 - - uid: 18112 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-15.5 - parent: 2 - - uid: 18113 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-17.5 - parent: 2 - - uid: 18116 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-16.5 - parent: 2 - - uid: 18121 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-17.5 - parent: 2 - - uid: 18122 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-17.5 - parent: 2 - - uid: 18123 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-36.5 - parent: 2 - - uid: 18124 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-36.5 - parent: 2 - uid: 18125 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,-62.5 parent: 2 - - uid: 18126 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-25.5 - parent: 2 - - uid: 18128 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-79.5 - parent: 2 - - uid: 18138 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-52.5 - parent: 2 - - uid: 18139 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-38.5 - parent: 2 - - uid: 18140 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-55.5 - parent: 2 - - uid: 18141 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-35.5 - parent: 2 - - uid: 18142 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-47.5 - parent: 2 - - uid: 18143 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-43.5 - parent: 2 - - uid: 18144 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-53.5 - parent: 2 - - uid: 18146 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-47.5 - parent: 2 - uid: 18147 components: - type: Transform @@ -93016,42 +91895,12 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,-25.5 parent: 2 - - uid: 18153 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-22.5 - parent: 2 - uid: 18155 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-58.5 parent: 2 - - uid: 18157 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-18.5 - parent: 2 - - uid: 18176 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-64.5 - parent: 2 - - uid: 18177 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-64.5 - parent: 2 - - uid: 18178 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-70.5 - parent: 2 - uid: 18179 components: - type: Transform @@ -93075,41 +91924,6 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,-93.5 parent: 2 - - uid: 18192 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-69.5 - parent: 2 - - uid: 18252 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-28.5 - parent: 2 - - uid: 18306 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-14.5 - parent: 2 - - uid: 18357 - components: - - type: Transform - pos: 39.5,-63.5 - parent: 2 - - uid: 18406 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-10.5 - parent: 2 - - uid: 18784 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-15.5 - parent: 2 - uid: 18824 components: - type: Transform @@ -93122,75 +91936,12 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,-52.5 parent: 2 - - uid: 19026 - components: - - type: Transform - pos: 32.5,-37.5 - parent: 2 - - uid: 19031 - components: - - type: Transform - pos: -49.5,-49.5 - parent: 2 - - uid: 19032 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-41.5 - parent: 2 - - uid: 19033 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-40.5 - parent: 2 - - uid: 19034 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-50.5 - parent: 2 - - uid: 19199 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-55.5 - parent: 2 - - uid: 19270 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-61.5 - parent: 2 - uid: 19328 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,-69.5 parent: 2 - - uid: 19398 - components: - - type: Transform - pos: 11.5,-34.5 - parent: 2 - - uid: 19443 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-13.5 - parent: 2 - - uid: 19472 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-24.5 - parent: 2 - - uid: 19475 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-24.5 - parent: 2 - uid: 19492 components: - type: Transform @@ -93202,35 +91953,6 @@ entities: rot: 3.141592653589793 rad pos: 47.5,-72.5 parent: 2 - - uid: 19511 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-24.5 - parent: 2 - - uid: 19512 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-20.5 - parent: 2 - - uid: 19538 - components: - - type: Transform - pos: -17.5,-53.5 - parent: 2 - - uid: 19542 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-14.5 - parent: 2 - - uid: 19543 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-20.5 - parent: 2 - uid: 19544 components: - type: Transform @@ -93253,61 +91975,46 @@ entities: - type: Transform pos: 34.5,-17.5 parent: 2 - - uid: 19549 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-24.5 - parent: 2 - - uid: 19550 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-24.5 - parent: 2 - - uid: 19552 - components: - - type: Transform - pos: 39.5,-23.5 - parent: 2 - uid: 19553 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,-11.5 parent: 2 - - uid: 19576 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-51.5 - parent: 2 - - uid: 19580 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-14.5 - parent: 2 - - uid: 19644 - components: - - type: Transform - pos: 62.5,-20.5 - parent: 2 - - uid: 19729 - components: - - type: Transform - pos: 33.5,-97.5 - parent: 2 - uid: 20052 components: - type: Transform pos: 84.5,-44.5 parent: 2 - - uid: 20053 +- proto: PoweredlightCyan + entities: + - uid: 1336 + components: + - type: Transform + pos: 10.5,-77.5 + parent: 2 + - uid: 1449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-71.5 + parent: 2 + - uid: 10302 + components: + - type: Transform + pos: 4.5,-65.5 + parent: 2 + - uid: 10494 components: - type: Transform rot: 3.141592653589793 rad - pos: 84.5,-46.5 + pos: 19.5,-79.5 + parent: 2 + - uid: 14217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-68.5 parent: 2 - proto: PoweredlightExterior entities: @@ -93483,19 +92190,112 @@ entities: parent: 2 - proto: PoweredlightGreen entities: + - uid: 1709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-45.5 + parent: 2 + - uid: 1717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-50.5 + parent: 2 + - uid: 3215 + components: + - type: Transform + pos: -31.5,-55.5 + parent: 2 + - uid: 3438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-53.5 + parent: 2 + - uid: 4394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-50.5 + parent: 2 + - uid: 4675 + components: + - type: Transform + pos: 22.5,-48.5 + parent: 2 + - uid: 4892 + components: + - type: Transform + pos: 37.5,-53.5 + parent: 2 + - uid: 4922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-46.5 + parent: 2 - uid: 5201 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-42.5 parent: 2 -- proto: PoweredlightPink - entities: - - uid: 3215 + - uid: 5654 + components: + - type: Transform + pos: -15.5,-52.5 + parent: 2 + - uid: 9848 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,-43.5 + pos: -13.5,-33.5 + parent: 2 + - uid: 14019 + components: + - type: Transform + pos: -5.5,-30.5 + parent: 2 +- proto: PoweredlightPink + entities: + - uid: 3495 + components: + - type: Transform + pos: 3.5,-34.5 + parent: 2 + - uid: 3876 + components: + - type: Transform + pos: -31.5,-37.5 + parent: 2 + - uid: 4089 + components: + - type: Transform + pos: -15.5,-11.5 + parent: 2 + - uid: 4703 + components: + - type: Transform + pos: 12.5,-52.5 + parent: 2 + - uid: 5650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-16.5 + parent: 2 + - uid: 5681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-28.5 + parent: 2 + - uid: 9957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-58.5 parent: 2 - uid: 12564 components: @@ -93503,42 +92303,23 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,-41.5 parent: 2 + - uid: 14027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-35.5 + parent: 2 + - uid: 14114 + components: + - type: Transform + pos: -43.5,-40.5 + parent: 2 - uid: 16463 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-43.5 parent: 2 - - uid: 17739 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-41.5 - parent: 2 - - uid: 19596 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-38.5 - parent: 2 - - uid: 19598 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-46.5 - parent: 2 - - uid: 19599 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-38.5 - parent: 2 - - uid: 19600 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-46.5 - parent: 2 - proto: PoweredLightPostSmall entities: - uid: 235 @@ -93573,12 +92354,6 @@ entities: rot: 1.5707963267948966 rad pos: -59.5,-25.5 parent: 2 - - uid: 1694 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-24.5 - parent: 2 - uid: 1702 components: - type: Transform @@ -93603,34 +92378,17 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-68.5 parent: 2 - - uid: 3395 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-77.5 - parent: 2 - uid: 3486 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,-61.5 parent: 2 - - uid: 3495 + - uid: 4395 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-37.5 - parent: 2 - - uid: 3948 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-36.5 - parent: 2 - - uid: 4303 - components: - - type: Transform - pos: -35.5,-60.5 + rot: 3.141592653589793 rad + pos: -32.5,-42.5 parent: 2 - uid: 4436 components: @@ -93650,16 +92408,39 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,-61.5 parent: 2 - - uid: 5298 + - uid: 4693 components: - type: Transform - pos: 71.5,-70.5 + pos: -32.5,-48.5 parent: 2 - - uid: 5308 + - uid: 5684 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-72.5 + pos: -6.5,-61.5 + parent: 2 + - uid: 5685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-64.5 + parent: 2 + - uid: 5686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-67.5 + parent: 2 + - uid: 5687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-17.5 + parent: 2 + - uid: 5881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-67.5 parent: 2 - uid: 6045 components: @@ -93678,16 +92459,6 @@ entities: rot: 1.5707963267948966 rad pos: 34.5,-61.5 parent: 2 - - uid: 7146 - components: - - type: Transform - pos: 43.5,-75.5 - parent: 2 - - uid: 7148 - components: - - type: Transform - pos: -47.5,-64.5 - parent: 2 - uid: 7454 components: - type: Transform @@ -93699,63 +92470,23 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,-26.5 parent: 2 - - uid: 9307 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-73.5 - parent: 2 - - uid: 9848 - components: - - type: Transform - pos: -42.5,-65.5 - parent: 2 - - uid: 10283 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-45.5 - parent: 2 - uid: 10743 components: - type: Transform rot: 1.5707963267948966 rad pos: 65.5,-57.5 parent: 2 - - uid: 10795 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-43.5 - parent: 2 - uid: 11130 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-80.5 parent: 2 - - uid: 11131 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-78.5 - parent: 2 - uid: 11397 components: - type: Transform pos: -54.5,-27.5 parent: 2 - - uid: 12915 - components: - - type: Transform - pos: 20.5,-63.5 - parent: 2 - - uid: 13390 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-101.5 - parent: 2 - uid: 13391 components: - type: Transform @@ -93789,52 +92520,17 @@ entities: rot: 3.141592653589793 rad pos: 11.5,-25.5 parent: 2 - - uid: 13985 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-23.5 - parent: 2 - uid: 13994 components: - type: Transform pos: 5.5,-27.5 parent: 2 - - uid: 13995 - components: - - type: Transform - pos: 8.5,-27.5 - parent: 2 - - uid: 14014 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-43.5 - parent: 2 - - uid: 14027 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-63.5 - parent: 2 - uid: 14031 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-64.5 parent: 2 - - uid: 14041 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-60.5 - parent: 2 - - uid: 14076 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-59.5 - parent: 2 - uid: 14079 components: - type: Transform @@ -93867,38 +92563,10 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-67.5 parent: 2 - - uid: 14100 + - uid: 14120 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-64.5 - parent: 2 - - uid: 14101 - components: - - type: Transform - pos: -5.5,-61.5 - parent: 2 - - uid: 14102 - components: - - type: Transform - pos: -7.5,-61.5 - parent: 2 - - uid: 14103 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-72.5 - parent: 2 - - uid: 14132 - components: - - type: Transform - pos: -24.5,-29.5 - parent: 2 - - uid: 14137 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-22.5 + pos: -32.5,-48.5 parent: 2 - uid: 14142 components: @@ -93941,12 +92609,6 @@ entities: rot: 1.5707963267948966 rad pos: -45.5,-54.5 parent: 2 - - uid: 14190 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-37.5 - parent: 2 - uid: 14191 components: - type: Transform @@ -93975,12 +92637,6 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,-88.5 parent: 2 - - uid: 14197 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-73.5 - parent: 2 - uid: 14198 components: - type: Transform @@ -94004,12 +92660,6 @@ entities: rot: 3.141592653589793 rad pos: 34.5,-50.5 parent: 2 - - uid: 14231 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-50.5 - parent: 2 - uid: 14332 components: - type: Transform @@ -94045,71 +92695,30 @@ entities: rot: 3.141592653589793 rad pos: -37.5,-25.5 parent: 2 - - uid: 15214 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-58.5 - parent: 2 - - uid: 15240 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-44.5 - parent: 2 - - uid: 15245 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,-47.5 - parent: 2 - uid: 15246 components: - type: Transform rot: 1.5707963267948966 rad pos: 75.5,-45.5 parent: 2 - - uid: 15254 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-50.5 - parent: 2 - uid: 15255 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,-56.5 parent: 2 - - uid: 15256 - components: - - type: Transform - pos: 58.5,-68.5 - parent: 2 - uid: 15257 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,-74.5 parent: 2 - - uid: 15258 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-71.5 - parent: 2 - uid: 15259 components: - type: Transform rot: -1.5707963267948966 rad pos: 61.5,-68.5 parent: 2 - - uid: 15260 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-65.5 - parent: 2 - uid: 15264 components: - type: Transform @@ -94138,121 +92747,23 @@ entities: - type: Transform pos: 66.5,-62.5 parent: 2 - - uid: 15336 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,-68.5 - parent: 2 - - uid: 15339 - components: - - type: Transform - pos: 75.5,-60.5 - parent: 2 - - uid: 15340 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-64.5 - parent: 2 - - uid: 15359 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-69.5 - parent: 2 - - uid: 15373 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-66.5 - parent: 2 - uid: 15386 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,-75.5 parent: 2 - - uid: 15387 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-76.5 - parent: 2 - - uid: 15388 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-55.5 - parent: 2 - - uid: 15430 - components: - - type: Transform - pos: 77.5,-51.5 - parent: 2 - uid: 15462 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,-59.5 parent: 2 - - uid: 15546 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-70.5 - parent: 2 - - uid: 15852 - components: - - type: Transform - pos: 48.5,-26.5 - parent: 2 - - uid: 15853 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-32.5 - parent: 2 - - uid: 15856 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-38.5 - parent: 2 - - uid: 15857 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-43.5 - parent: 2 - - uid: 15858 - components: - - type: Transform - pos: 51.5,-40.5 - parent: 2 - - uid: 15883 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-46.5 - parent: 2 - uid: 16021 components: - type: Transform pos: 41.5,-32.5 parent: 2 - - uid: 16022 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-36.5 - parent: 2 - - uid: 16028 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-32.5 - parent: 2 - uid: 16041 components: - type: Transform @@ -94292,12 +92803,6 @@ entities: - type: Transform pos: -33.5,-27.5 parent: 2 - - uid: 16544 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-77.5 - parent: 2 - uid: 16545 components: - type: Transform @@ -94321,16 +92826,6 @@ entities: - type: Transform pos: -34.5,-29.5 parent: 2 - - uid: 16597 - components: - - type: Transform - pos: -39.5,-77.5 - parent: 2 - - uid: 16974 - components: - - type: Transform - pos: 53.5,-96.5 - parent: 2 - uid: 17137 components: - type: Transform @@ -94369,94 +92864,18 @@ entities: rot: 1.5707963267948966 rad pos: 40.5,-21.5 parent: 2 - - uid: 18030 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-23.5 - parent: 2 - - uid: 18065 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-69.5 - parent: 2 - - uid: 18080 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-67.5 - parent: 2 - uid: 18099 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,-101.5 parent: 2 - - uid: 18107 - components: - - type: Transform - pos: 34.5,-48.5 - parent: 2 - - uid: 18118 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-26.5 - parent: 2 - - uid: 18120 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-17.5 - parent: 2 - - uid: 18136 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-29.5 - parent: 2 - uid: 18137 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-37.5 parent: 2 - - uid: 18156 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-47.5 - parent: 2 - - uid: 18185 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-21.5 - parent: 2 - - uid: 18190 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-90.5 - parent: 2 - - uid: 18401 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-56.5 - parent: 2 - - uid: 19030 - components: - - type: Transform - pos: -44.5,-52.5 - parent: 2 - - uid: 19074 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-34.5 - parent: 2 - uid: 19273 components: - type: Transform @@ -94474,12 +92893,6 @@ entities: - type: Transform pos: 55.5,-97.5 parent: 2 - - uid: 19418 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-34.5 - parent: 2 - uid: 19474 components: - type: Transform @@ -94491,12 +92904,6 @@ entities: rot: 1.5707963267948966 rad pos: 51.5,-62.5 parent: 2 - - uid: 19551 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-20.5 - parent: 2 - uid: 20009 components: - type: Transform @@ -94505,11 +92912,41 @@ entities: parent: 2 - proto: PoweredWarmSmallLight entities: - - uid: 15239 + - uid: 1431 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,-49.5 + rot: 1.5707963267948966 rad + pos: -49.5,-47.5 + parent: 2 + - uid: 1432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-43.5 + parent: 2 + - uid: 1716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-41.5 + parent: 2 + - uid: 5656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-28.5 + parent: 2 + - uid: 6672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-41.5 + parent: 2 + - uid: 9679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-32.5 parent: 2 - uid: 15241 components: @@ -94523,11 +92960,6 @@ entities: rot: 1.5707963267948966 rad pos: 68.5,-48.5 parent: 2 - - uid: 17504 - components: - - type: Transform - pos: 70.5,-46.5 - parent: 2 - proto: PrefilledSyringe entities: - uid: 17022 @@ -94587,6 +93019,11 @@ entities: - type: Transform pos: 75.5,-23.5 parent: 2 + - uid: 5842 + components: + - type: Transform + pos: 22.5,-55.5 + parent: 2 - uid: 6244 components: - type: Transform @@ -94764,6 +93201,16 @@ entities: parent: 2 - proto: PuddleBloodSmall entities: + - uid: 1683 + components: + - type: Transform + pos: 21.5,-53.5 + parent: 2 + - uid: 1684 + components: + - type: Transform + pos: 27.5,-52.5 + parent: 2 - uid: 2480 components: - type: Transform @@ -94774,6 +93221,91 @@ entities: - type: Transform pos: 75.5,-54.5 parent: 2 + - uid: 4666 + components: + - type: Transform + pos: -12.5,-34.5 + parent: 2 + - uid: 4835 + components: + - type: Transform + pos: -4.5,-40.5 + parent: 2 + - uid: 4850 + components: + - type: Transform + pos: -5.5,-40.5 + parent: 2 + - uid: 4928 + components: + - type: Transform + pos: -3.5,-38.5 + parent: 2 + - uid: 4929 + components: + - type: Transform + pos: -10.5,-33.5 + parent: 2 + - uid: 4930 + components: + - type: Transform + pos: -4.5,-41.5 + parent: 2 + - uid: 4931 + components: + - type: Transform + pos: -2.5,-39.5 + parent: 2 + - uid: 5031 + components: + - type: Transform + pos: -3.5,-39.5 + parent: 2 + - uid: 5117 + components: + - type: Transform + pos: -4.5,-33.5 + parent: 2 + - uid: 5224 + components: + - type: Transform + pos: -2.5,-38.5 + parent: 2 + - uid: 5652 + components: + - type: Transform + pos: -4.5,-39.5 + parent: 2 + - uid: 5653 + components: + - type: Transform + pos: -1.5,-38.5 + parent: 2 + - uid: 5664 + components: + - type: Transform + pos: -0.5,-37.5 + parent: 2 + - uid: 5667 + components: + - type: Transform + pos: -7.5,-40.5 + parent: 2 + - uid: 5689 + components: + - type: Transform + pos: 21.5,-55.5 + parent: 2 + - uid: 9885 + components: + - type: Transform + pos: -2.5,-32.5 + parent: 2 + - uid: 11724 + components: + - type: Transform + pos: 22.5,-56.5 + parent: 2 - uid: 14315 components: - type: Transform @@ -95825,6 +94357,11 @@ entities: parent: 2 - proto: RandomArtifactSpawner entities: + - uid: 4668 + components: + - type: Transform + pos: -19.5,-32.5 + parent: 2 - uid: 5150 components: - type: Transform @@ -96139,11 +94676,6 @@ entities: - type: Transform pos: -9.5,-77.5 parent: 2 - - uid: 19274 - components: - - type: Transform - pos: 19.5,-50.5 - parent: 2 - proto: RandomSoap entities: - uid: 6202 @@ -96178,31 +94710,6 @@ entities: - type: Transform pos: 2.5,-66.5 parent: 2 - - uid: 17157 - components: - - type: Transform - pos: 12.5,-52.5 - parent: 2 - - uid: 17158 - components: - - type: Transform - pos: -5.5,-39.5 - parent: 2 - - uid: 17159 - components: - - type: Transform - pos: -11.5,-32.5 - parent: 2 - - uid: 17160 - components: - - type: Transform - pos: -27.5,-53.5 - parent: 2 - - uid: 17161 - components: - - type: Transform - pos: -29.5,-34.5 - parent: 2 - uid: 17163 components: - type: Transform @@ -96213,11 +94720,6 @@ entities: - type: Transform pos: 23.5,-65.5 parent: 2 - - uid: 17172 - components: - - type: Transform - pos: 28.5,-49.5 - parent: 2 - uid: 17320 components: - type: Transform @@ -96252,11 +94754,6 @@ entities: parent: 2 - proto: RandomVending entities: - - uid: 1710 - components: - - type: Transform - pos: -3.5,-69.5 - parent: 2 - uid: 5837 components: - type: Transform @@ -96272,16 +94769,6 @@ entities: - type: Transform pos: -4.5,-7.5 parent: 2 - - uid: 6238 - components: - - type: Transform - pos: -26.5,-58.5 - parent: 2 - - uid: 6239 - components: - - type: Transform - pos: -25.5,-58.5 - parent: 2 - uid: 7677 components: - type: Transform @@ -96292,54 +94779,29 @@ entities: - type: Transform pos: 73.5,-19.5 parent: 2 - - uid: 7758 - components: - - type: Transform - pos: -3.5,-70.5 - parent: 2 - - uid: 8038 - components: - - type: Transform - pos: 26.5,-35.5 - parent: 2 - - uid: 18329 - components: - - type: Transform - pos: -32.5,-51.5 - parent: 2 - - uid: 18330 - components: - - type: Transform - pos: -32.5,-39.5 - parent: 2 - proto: RandomVendingDrinks entities: + - uid: 5912 + components: + - type: Transform + pos: -34.5,-52.5 + parent: 2 - uid: 9913 components: - type: Transform pos: -42.5,-67.5 parent: 2 - - uid: 10246 - components: - - type: Transform - pos: 28.5,-57.5 - parent: 2 - uid: 10802 components: - type: Transform pos: 48.5,-50.5 parent: 2 - - uid: 14365 - components: - - type: Transform - pos: 8.5,-37.5 - parent: 2 - proto: RandomVendingSnacks entities: - - uid: 595 + - uid: 1743 components: - type: Transform - pos: 11.5,-37.5 + pos: -35.5,-38.5 parent: 2 - uid: 5273 components: @@ -96361,26 +94823,11 @@ entities: - type: Transform pos: -26.5,-18.5 parent: 2 - - uid: 14336 - components: - - type: Transform - pos: 27.5,-58.5 - parent: 2 - - uid: 14721 - components: - - type: Transform - pos: -41.5,-67.5 - parent: 2 - uid: 16051 components: - type: Transform pos: 42.5,-75.5 parent: 2 - - uid: 16117 - components: - - type: Transform - pos: 7.5,-61.5 - parent: 2 - proto: RCD entities: - uid: 5860 @@ -96485,11 +94932,6 @@ entities: - type: Transform pos: -17.5,-36.5 parent: 2 - - uid: 230 - components: - - type: Transform - pos: -16.5,-36.5 - parent: 2 - uid: 231 components: - type: Transform @@ -96590,16 +95032,6 @@ entities: - type: Transform pos: -23.5,-34.5 parent: 2 - - uid: 4540 - components: - - type: Transform - pos: -6.5,-41.5 - parent: 2 - - uid: 4545 - components: - - type: Transform - pos: -23.5,-36.5 - parent: 2 - uid: 4546 components: - type: Transform @@ -96625,31 +95057,11 @@ entities: - type: Transform pos: -20.5,-34.5 parent: 2 - - uid: 4659 - components: - - type: Transform - pos: 24.5,-55.5 - parent: 2 - - uid: 4668 - components: - - type: Transform - pos: 22.5,-53.5 - parent: 2 - - uid: 4690 - components: - - type: Transform - pos: 24.5,-51.5 - parent: 2 - uid: 4741 components: - type: Transform pos: -18.5,-28.5 parent: 2 - - uid: 4742 - components: - - type: Transform - pos: -16.5,-28.5 - parent: 2 - uid: 4743 components: - type: Transform @@ -96705,21 +95117,6 @@ entities: - type: Transform pos: 9.5,-51.5 parent: 2 - - uid: 8213 - components: - - type: Transform - pos: -9.5,-41.5 - parent: 2 - - uid: 8367 - components: - - type: Transform - pos: -10.5,-41.5 - parent: 2 - - uid: 8368 - components: - - type: Transform - pos: -8.5,-41.5 - parent: 2 - uid: 10766 components: - type: Transform @@ -96732,12 +95129,6 @@ entities: rot: 1.5707963267948966 rad pos: 91.5,-44.5 parent: 2 - - uid: 10798 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-21.5 - parent: 2 - uid: 10823 components: - type: Transform @@ -96840,11 +95231,6 @@ entities: - type: Transform pos: 14.5,-43.5 parent: 2 - - uid: 18152 - components: - - type: Transform - pos: -15.5,-32.5 - parent: 2 - uid: 18328 components: - type: Transform @@ -96898,75 +95284,6 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-45.5 parent: 2 - - uid: 4654 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-54.5 - parent: 2 - - uid: 4657 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-54.5 - parent: 2 - - uid: 4660 - components: - - type: Transform - pos: 22.5,-52.5 - parent: 2 - - uid: 4666 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-52.5 - parent: 2 - - uid: 4669 - components: - - type: Transform - pos: 25.5,-54.5 - parent: 2 - - uid: 4670 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-54.5 - parent: 2 - - uid: 4671 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-52.5 - parent: 2 - - uid: 4672 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-55.5 - parent: 2 - - uid: 4674 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-52.5 - parent: 2 - - uid: 4677 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-51.5 - parent: 2 - - uid: 4681 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-55.5 - parent: 2 - - uid: 4689 - components: - - type: Transform - pos: 23.5,-51.5 - parent: 2 - uid: 6916 components: - type: Transform @@ -97548,6 +95865,41 @@ entities: - type: Transform pos: 10.5,-55.5 parent: 2 + - uid: 4205 + components: + - type: Transform + pos: -40.5,-47.5 + parent: 2 + - uid: 4211 + components: + - type: Transform + pos: -39.5,-47.5 + parent: 2 + - uid: 4303 + components: + - type: Transform + pos: -38.5,-47.5 + parent: 2 + - uid: 4396 + components: + - type: Transform + pos: -40.5,-43.5 + parent: 2 + - uid: 4411 + components: + - type: Transform + pos: -38.5,-43.5 + parent: 2 + - uid: 4511 + components: + - type: Transform + pos: -41.5,-45.5 + parent: 2 + - uid: 4540 + components: + - type: Transform + pos: -41.5,-46.5 + parent: 2 - uid: 4551 components: - type: Transform @@ -97608,6 +95960,11 @@ entities: - type: Transform pos: 64.5,-21.5 parent: 2 + - uid: 6671 + components: + - type: Transform + pos: -10.5,-41.5 + parent: 2 - uid: 6857 components: - type: Transform @@ -97649,6 +96006,11 @@ entities: - type: Transform pos: 60.5,-39.5 parent: 2 + - uid: 7158 + components: + - type: Transform + pos: -9.5,-41.5 + parent: 2 - uid: 7160 components: - type: Transform @@ -97664,6 +96026,16 @@ entities: - type: Transform pos: 66.5,-49.5 parent: 2 + - uid: 7234 + components: + - type: Transform + pos: -6.5,-41.5 + parent: 2 + - uid: 7260 + components: + - type: Transform + pos: -8.5,-41.5 + parent: 2 - uid: 7309 components: - type: Transform @@ -97729,6 +96101,121 @@ entities: - type: Transform pos: 25.5,-88.5 parent: 2 + - uid: 14011 + components: + - type: Transform + pos: 26.5,-41.5 + parent: 2 + - uid: 14012 + components: + - type: Transform + pos: 26.5,-46.5 + parent: 2 + - uid: 14014 + components: + - type: Transform + pos: 26.5,-45.5 + parent: 2 + - uid: 14018 + components: + - type: Transform + pos: 26.5,-42.5 + parent: 2 + - uid: 14037 + components: + - type: Transform + pos: -40.5,-7.5 + parent: 2 + - uid: 14039 + components: + - type: Transform + pos: -30.5,-46.5 + parent: 2 + - uid: 14041 + components: + - type: Transform + pos: -30.5,-45.5 + parent: 2 + - uid: 14048 + components: + - type: Transform + pos: -30.5,-44.5 + parent: 2 + - uid: 14054 + components: + - type: Transform + pos: 26.5,-40.5 + parent: 2 + - uid: 14057 + components: + - type: Transform + pos: 27.5,-47.5 + parent: 2 + - uid: 14074 + components: + - type: Transform + pos: -32.5,-44.5 + parent: 2 + - uid: 14075 + components: + - type: Transform + pos: -32.5,-45.5 + parent: 2 + - uid: 14076 + components: + - type: Transform + pos: -32.5,-46.5 + parent: 2 + - uid: 14077 + components: + - type: Transform + pos: -40.5,-8.5 + parent: 2 + - uid: 14078 + components: + - type: Transform + pos: -38.5,-8.5 + parent: 2 + - uid: 14080 + components: + - type: Transform + pos: -40.5,-9.5 + parent: 2 + - uid: 14085 + components: + - type: Transform + pos: -36.5,-9.5 + parent: 2 + - uid: 14087 + components: + - type: Transform + pos: -36.5,-8.5 + parent: 2 + - uid: 14088 + components: + - type: Transform + pos: -38.5,-7.5 + parent: 2 + - uid: 14092 + components: + - type: Transform + pos: -36.5,-7.5 + parent: 2 + - uid: 14095 + components: + - type: Transform + pos: -38.5,-9.5 + parent: 2 + - uid: 14117 + components: + - type: Transform + pos: -39.5,-43.5 + parent: 2 + - uid: 14129 + components: + - type: Transform + pos: -41.5,-44.5 + parent: 2 - uid: 14359 components: - type: Transform @@ -98105,56 +96592,75 @@ entities: - type: Transform pos: 30.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} + - uid: 9822 + components: + - type: Transform + pos: -14.5,-34.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 17989 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19444 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19446 components: - type: Transform pos: -25.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19447 components: - type: Transform pos: 12.5,-76.5 parent: 2 - - uid: 19448 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-33.5 - parent: 2 + - type: Fixtures + fixtures: {} - uid: 19449 components: - type: Transform pos: -45.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19450 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19451 components: - type: Transform pos: 30.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19452 components: - type: Transform rot: 3.141592653589793 rad pos: 66.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: Screwdriver entities: - uid: 17356 @@ -98253,6 +96759,11 @@ entities: parent: 2 - proto: ShardGlassReinforced entities: + - uid: 2304 + components: + - type: Transform + pos: -3.7276778,-34.553207 + parent: 2 - uid: 7802 components: - type: Transform @@ -98278,6 +96789,11 @@ entities: - type: Transform pos: 1.5636982,-72.57246 parent: 2 + - uid: 14146 + components: + - type: Transform + pos: -8.546482,-37.101284 + parent: 2 - uid: 15469 components: - type: Transform @@ -98303,11 +96819,6 @@ entities: - type: Transform pos: -42.6255,-79.322044 parent: 2 - - uid: 6672 - components: - - type: Transform - pos: -20.285402,-65.214096 - parent: 2 - uid: 6969 components: - type: Transform @@ -98323,6 +96834,11 @@ entities: - type: Transform pos: 57.418205,-62.48799 parent: 2 + - uid: 8807 + components: + - type: Transform + pos: -14.446809,-60.429398 + parent: 2 - uid: 16647 components: - type: Transform @@ -98458,11 +96974,6 @@ entities: - type: Transform pos: 46.594925,-73.20312 parent: 2 - - uid: 6671 - components: - - type: Transform - pos: -20.597902,-65.12376 - parent: 2 - uid: 6932 components: - type: Transform @@ -98483,6 +96994,11 @@ entities: - type: Transform pos: 59.330914,-62.53247 parent: 2 + - uid: 9074 + components: + - type: Transform + pos: -13.478059,-60.538773 + parent: 2 - uid: 13337 components: - type: Transform @@ -98587,6 +97103,8 @@ entities: - 15265 - 15266 - 15274 + - type: Fixtures + fixtures: {} - proto: ShellShotgunImprovised entities: - uid: 17439 @@ -98609,12 +97127,16 @@ entities: rot: -1.5707963267948966 rad pos: 70.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7311 components: - type: Transform rot: -1.5707963267948966 rad pos: 70.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ShuttersNormal entities: - uid: 252 @@ -99024,12 +97546,16 @@ entities: rot: -1.5707963267948966 rad pos: 86.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15199 components: - type: Transform rot: -1.5707963267948966 rad pos: 86.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignAiUpload entities: - uid: 7136 @@ -99038,6 +97564,8 @@ entities: rot: -1.5707963267948966 rad pos: 77.5,-46.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignalButton entities: - uid: 3098 @@ -99063,6 +97591,8 @@ entities: - Toggle - - Pressed - AutoClose + - type: Fixtures + fixtures: {} - uid: 5999 components: - type: Transform @@ -99080,6 +97610,8 @@ entities: 6224: - - Pressed - Trigger + - type: Fixtures + fixtures: {} - uid: 6233 components: - type: Transform @@ -99097,6 +97629,8 @@ entities: 16993: - - Pressed - Trigger + - type: Fixtures + fixtures: {} - uid: 6674 components: - type: Transform @@ -99113,6 +97647,8 @@ entities: 2281: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 7129 components: - type: Transform @@ -99123,6 +97659,8 @@ entities: 18451: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 8850 components: - type: Transform @@ -99143,6 +97681,8 @@ entities: 8855: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 10578 components: - type: Transform @@ -99227,6 +97767,8 @@ entities: - AutoClose - - Pressed - Open + - type: Fixtures + fixtures: {} - uid: 10582 components: - type: Transform @@ -99309,6 +97851,8 @@ entities: 15175: - - Pressed - Close + - type: Fixtures + fixtures: {} - uid: 13186 components: - type: Transform @@ -99388,6 +97932,8 @@ entities: 3041: - - Pressed - Close + - type: Fixtures + fixtures: {} - uid: 13187 components: - type: Transform @@ -99469,6 +98015,8 @@ entities: - Open - - Pressed - AutoClose + - type: Fixtures + fixtures: {} - uid: 16617 components: - type: Transform @@ -99483,6 +98031,8 @@ entities: 15886: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 17742 components: - type: Transform @@ -99499,6 +98049,8 @@ entities: 313: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 17829 components: - type: Transform @@ -99543,6 +98095,8 @@ entities: 7772: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 17875 components: - type: Transform @@ -99563,6 +98117,8 @@ entities: 4945: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 17876 components: - type: Transform @@ -99582,6 +98138,8 @@ entities: 4938: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: SignalButtonDirectional entities: - uid: 5437 @@ -99598,6 +98156,8 @@ entities: 5539: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 10224 components: - type: Transform @@ -99618,6 +98178,8 @@ entities: 6210: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 12415 components: - type: Transform @@ -99643,6 +98205,8 @@ entities: 654: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 13194 components: - type: Transform @@ -99669,6 +98233,8 @@ entities: 626: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 13195 components: - type: Transform @@ -99683,6 +98249,8 @@ entities: 546: - - Pressed - Open + - type: Fixtures + fixtures: {} - uid: 15700 components: - type: Transform @@ -99769,6 +98337,8 @@ entities: 11978: - - Pressed - Forward + - type: Fixtures + fixtures: {} - uid: 15849 components: - type: Transform @@ -99855,6 +98425,8 @@ entities: 11978: - - Pressed - Off + - type: Fixtures + fixtures: {} - uid: 16241 components: - type: Transform @@ -99872,6 +98444,8 @@ entities: 10890: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 18371 components: - type: Transform @@ -99889,6 +98463,8 @@ entities: 18213: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 19574 components: - type: Transform @@ -99953,6 +98529,8 @@ entities: 14056: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: SignAnomaly entities: - uid: 16210 @@ -99961,11 +98539,15 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19256 components: - type: Transform pos: -26.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignAnomaly2 entities: - uid: 16191 @@ -99973,6 +98555,8 @@ entities: - type: Transform pos: -8.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignArmory entities: - uid: 208 @@ -99980,11 +98564,15 @@ entities: - type: Transform pos: 66.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8576 components: - type: Transform pos: 57.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignAtmos entities: - uid: 8652 @@ -99992,21 +98580,29 @@ entities: - type: Transform pos: 26.5,-65.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16106 components: - type: Transform pos: 36.5,-74.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16109 components: - type: Transform pos: 34.5,-75.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16192 components: - type: Transform pos: 26.5,-68.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBar entities: - uid: 16195 @@ -100014,6 +98610,8 @@ entities: - type: Transform pos: 30.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBio entities: - uid: 16817 @@ -100021,6 +98619,8 @@ entities: - type: Transform pos: 4.5,-74.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBridge entities: - uid: 200 @@ -100029,12 +98629,16 @@ entities: rot: 1.5707963267948966 rad pos: -30.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7289 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCansScience entities: - uid: 14148 @@ -100042,6 +98646,8 @@ entities: - type: Transform pos: -23.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCargo entities: - uid: 6764 @@ -100050,12 +98656,16 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,-80.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18850 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-80.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCargoDock entities: - uid: 16196 @@ -100063,11 +98673,15 @@ entities: - type: Transform pos: 19.5,-102.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16197 components: - type: Transform pos: 29.5,-102.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignChapel entities: - uid: 13203 @@ -100075,22 +98689,15 @@ entities: - type: Transform pos: -26.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16198 components: - type: Transform pos: -15.5,-40.5 parent: 2 - - uid: 16211 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-38.5 - parent: 2 - - uid: 16418 - components: - - type: Transform - pos: -15.5,-36.5 - parent: 2 + - type: Fixtures + fixtures: {} - proto: SignChem entities: - uid: 2732 @@ -100099,28 +98706,38 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,-70.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9406 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14139 components: - type: Transform pos: -0.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16179 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-75.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19281 components: - type: Transform pos: 11.5,-67.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignConference entities: - uid: 5608 @@ -100129,6 +98746,8 @@ entities: rot: 1.5707963267948966 rad pos: -49.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCryo entities: - uid: 19069 @@ -100136,6 +98755,8 @@ entities: - type: Transform pos: 4.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCryogenicsMed entities: - uid: 3832 @@ -100143,6 +98764,8 @@ entities: - type: Transform pos: -3.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDangerMed entities: - uid: 17782 @@ -100151,36 +98774,48 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18269 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18374 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18375 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18376 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18377 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalAtmos entities: - uid: 9434 @@ -100189,40 +98824,54 @@ entities: rot: 3.141592653589793 rad pos: -15.498708,-51.71671 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16151 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5008106,-33.718235 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17980 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.500819,-41.285877 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17982 components: - type: Transform pos: 22.49896,-37.2837 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17983 components: - type: Transform pos: 22.498604,-59.285027 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17985 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-54.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19621 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalBar entities: - uid: 16128 @@ -100231,6 +98880,8 @@ entities: rot: 1.5707963267948966 rad pos: 1.4994224,-33.715874 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalBridge entities: - uid: 12825 @@ -100239,47 +98890,63 @@ entities: rot: -1.5707963267948966 rad pos: -2.5007706,-29.713655 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13202 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16141 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16158 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.49973,-51.71622 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16185 components: - type: Transform rot: 3.141592653589793 rad pos: -26.50135,-54.28437 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16187 components: - type: Transform pos: -30.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19629 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19631 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5013075,-33.288094 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalChapel entities: - uid: 12824 @@ -100288,11 +98955,15 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16189 components: - type: Transform pos: -30.500944,-18.284409 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalChemistry entities: - uid: 6271 @@ -100301,27 +98972,37 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9290 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16113 components: - type: Transform pos: 22.5,-59.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16127 components: - type: Transform pos: 6.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16134 components: - type: Transform pos: 2.498827,-33.284237 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalCryo entities: - uid: 16159 @@ -100330,18 +99011,24 @@ entities: rot: 3.141592653589793 rad pos: 22.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16180 components: - type: Transform rot: 3.141592653589793 rad pos: 7.50015,-51.284824 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17820 components: - type: Transform rot: 3.141592653589793 rad pos: 1.4999281,-29.715975 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalDorms entities: - uid: 3123 @@ -100350,22 +99037,30 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10764 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16140 components: - type: Transform pos: -15.501332,-42.715443 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16184 components: - type: Transform pos: -35.5,-57.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalEng entities: - uid: 35 @@ -100374,61 +99069,83 @@ entities: rot: -1.5707963267948966 rad pos: -2.5007706,-29.284346 parent: 2 + - type: Fixtures + fixtures: {} + - uid: 1429 + components: + - type: Transform + pos: -14.5,-36.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 14203 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.501791,-54.716873 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14808 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15613 components: - type: Transform pos: -26.499496,-33.933483 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16139 components: - type: Transform pos: -15.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16150 components: - type: Transform pos: -1.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16154 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.498922,-55.28569 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16188 components: - type: Transform pos: -30.500944,-18.717422 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16199 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-80.5 parent: 2 - - uid: 19632 - components: - - type: Transform - pos: -15.5013685,-35.71809 - parent: 2 + - type: Fixtures + fixtures: {} - uid: 19633 components: - type: Transform rot: 3.141592653589793 rad pos: 6.50085,-51.716766 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalEvac entities: - uid: 516 @@ -100437,223 +99154,299 @@ entities: rot: -1.5707963267948966 rad pos: 44.501007,-25.282156 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1830 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} + - uid: 2335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-36.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 3321 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5213 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5015326,-8.71623 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7888 components: - type: Transform pos: 4.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7935 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.49919,-51.71689 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9298 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,-77.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13204 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5012168,-12.284781 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14008 components: - type: Transform rot: 3.141592653589793 rad pos: -26.501286,-54.06827 parent: 2 - - uid: 15790 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-35.5 - parent: 2 + - type: Fixtures + fixtures: {} - uid: 15910 components: - type: Transform rot: -1.5707963267948966 rad pos: 72.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16142 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16144 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16162 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.49889,-51.283894 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16168 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.50092,-33.28325 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16174 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16177 components: - type: Transform rot: 3.141592653589793 rad pos: 26.501543,-75.28514 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16358 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.499287,-25.282099 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16365 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16369 components: - type: Transform rot: 3.141592653589793 rad pos: 28.50031,-21.283514 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16372 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16414 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16432 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,-75.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16979 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.4993314,-15.717761 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17221 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.4992862,-8.714865 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17409 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.499661,-41.28664 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17707 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5012491,-29.285704 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17809 components: - type: Transform rot: 3.141592653589793 rad pos: -26.50015,-33.06894 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17810 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18198 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-69.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18205 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18210 components: - type: Transform pos: -5.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18871 components: - type: Transform pos: 36.5,-77.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19406 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-80.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19442 components: - type: Transform pos: -1.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19454 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5003424,-8.714865 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19630 components: - type: Transform rot: 3.141592653589793 rad pos: 6.498548,-51.284073 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19637 components: - type: Transform pos: -5.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalFood entities: - uid: 5177 @@ -100661,35 +99454,47 @@ entities: - type: Transform pos: 0.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7936 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.499363,-51.284214 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16130 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.4994224,-33.283478 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16176 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-75.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18204 components: - type: Transform pos: 22.498983,-37.717163 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19636 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.499051,-51.286167 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalHop entities: - uid: 16132 @@ -100697,18 +99502,24 @@ entities: - type: Transform pos: 2.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16152 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18200 components: - type: Transform rot: 3.141592653589793 rad pos: 7.498763,-69.71605 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalHydro entities: - uid: 14430 @@ -100716,23 +99527,31 @@ entities: - type: Transform pos: 15.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16133 components: - type: Transform pos: 2.5014625,-33.715656 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16153 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.498922,-55.715004 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19736 components: - type: Transform rot: 3.141592653589793 rad pos: 39.49834,-48.28038 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalJanitor entities: - uid: 16166 @@ -100740,17 +99559,23 @@ entities: - type: Transform pos: -11.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16167 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.500022,-33.28552 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17078 components: - type: Transform pos: -1.4999341,-15.283161 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalLibrary entities: - uid: 16136 @@ -100758,11 +99583,15 @@ entities: - type: Transform pos: 3.4989862,-33.716446 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16163 components: - type: Transform pos: 6.499085,-55.716106 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalMed entities: - uid: 1024 @@ -100771,57 +99600,77 @@ entities: rot: 3.141592653589793 rad pos: -15.499675,-51.285248 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3000 components: - type: Transform pos: 17.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14822 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.499496,-33.717285 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16160 components: - type: Transform rot: 3.141592653589793 rad pos: 22.499716,-47.716415 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16161 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16178 components: - type: Transform pos: -1.4999341,-12.716049 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16373 components: - type: Transform pos: 23.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17984 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18201 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5010014,-69.072586 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19639 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.499754,-10.717974 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSalvage entities: - uid: 16209 @@ -100830,6 +99679,8 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,-96.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSci entities: - uid: 11099 @@ -100838,42 +99689,56 @@ entities: rot: 3.141592653589793 rad pos: -15.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16149 components: - type: Transform rot: 3.141592653589793 rad pos: 7.50015,-51.71722 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16156 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16157 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17808 components: - type: Transform rot: 3.141592653589793 rad pos: -26.50015,-33.285137 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17811 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18199 components: - type: Transform rot: 3.141592653589793 rad pos: 7.4985375,-69.28461 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSec entities: - uid: 10664 @@ -100882,58 +99747,78 @@ entities: rot: 1.5707963267948966 rad pos: 44.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10762 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16122 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16123 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16124 components: - type: Transform pos: 22.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16125 components: - type: Transform pos: -1.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16359 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17813 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.499488,-41.71687 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17922 components: - type: Transform rot: 3.141592653589793 rad pos: 26.500002,-75.714455 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19635 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.499051,-51.718567 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSolar entities: - uid: 6964 @@ -100942,146 +99827,196 @@ entities: rot: -1.5707963267948966 rad pos: -30.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7659 components: - type: Transform pos: 78.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7661 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,-68.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7662 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9299 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.5,-75.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9300 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,-77.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9876 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.501007,-25.714556 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10773 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14068 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14725 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14819 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16114 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-78.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16116 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,-70.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16370 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.499249,-21.715097 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16374 components: - type: Transform rot: 3.141592653589793 rad pos: 86.5,-68.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16378 components: - type: Transform rot: 1.5707963267948966 rad pos: 73.5,-70.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16420 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,-73.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17814 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17815 components: - type: Transform pos: -35.50011,-57.715824 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17816 components: - type: Transform pos: -52.5,-67.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17817 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.50103,-63.718613 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18869 components: - type: Transform rot: 1.5707963267948966 rad pos: 77.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18870 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-79.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18905 components: - type: Transform pos: 86.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19269 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.500843,-58.713875 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSupply entities: - uid: 16112 @@ -101089,50 +100024,68 @@ entities: - type: Transform pos: 22.498564,-59.717285 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16135 components: - type: Transform pos: 3.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16143 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.501286,-54.50067 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17364 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-80.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17807 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.499496,-33.501083 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17812 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18035 components: - type: Transform pos: -4.500692,-12.716591 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18202 components: - type: Transform pos: 12.5,-75.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19634 components: - type: Transform pos: 6.499085,-55.283707 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDisposalSpace entities: - uid: 19775 @@ -101141,6 +100094,8 @@ entities: rot: 1.5707963267948966 rad pos: 71.5,-72.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDoors entities: - uid: 18160 @@ -101149,6 +100104,8 @@ entities: rot: 3.141592653589793 rad pos: 84.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignElectricalMed entities: - uid: 15718 @@ -101157,35 +100114,47 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-81.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16759 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-88.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16760 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-88.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16761 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-87.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16762 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-87.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19407 components: - type: Transform pos: 33.5,-96.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEngine entities: - uid: 522 @@ -101193,6 +100162,8 @@ entities: - type: Transform pos: -6.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEngineering entities: - uid: 10822 @@ -101201,17 +100172,23 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17380 components: - type: Transform pos: -32.5,-65.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17986 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEscapePods entities: - uid: 16999 @@ -101220,24 +100197,32 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-76.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17003 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-78.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17028 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-76.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17029 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEVA entities: - uid: 16190 @@ -101245,6 +100230,8 @@ entities: - type: Transform pos: 3.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignExamroom entities: - uid: 5207 @@ -101252,6 +100239,8 @@ entities: - type: Transform pos: 11.5,-70.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignGravity entities: - uid: 16203 @@ -101260,6 +100249,8 @@ entities: rot: -1.5707963267948966 rad pos: -37.5,-46.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignHead entities: - uid: 16201 @@ -101268,12 +100259,16 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16202 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignHydro1 entities: - uid: 14927 @@ -101282,11 +100277,15 @@ entities: rot: 1.5707963267948966 rad pos: 38.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18313 components: - type: Transform pos: 14.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignInterrogation entities: - uid: 7095 @@ -101294,6 +100293,8 @@ entities: - type: Transform pos: 50.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignJanitor entities: - uid: 5617 @@ -101302,6 +100303,8 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,-49.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignKitchen entities: - uid: 18300 @@ -101309,6 +100312,8 @@ entities: - type: Transform pos: 1.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignLaserMed entities: - uid: 18442 @@ -101317,12 +100322,16 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,-72.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18443 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,-72.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignLawyer entities: - uid: 12853 @@ -101330,6 +100339,8 @@ entities: - type: Transform pos: 49.5,-53.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignLibrary entities: - uid: 16204 @@ -101338,6 +100349,8 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-68.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMail entities: - uid: 5369 @@ -101345,6 +100358,8 @@ entities: - type: Transform pos: 16.5,-99.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMaterials entities: - uid: 19071 @@ -101352,6 +100367,8 @@ entities: - type: Transform pos: -32.5,-68.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMedical entities: - uid: 8046 @@ -101360,21 +100377,29 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17923 components: - type: Transform pos: 11.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18314 components: - type: Transform pos: 18.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19638 components: - type: Transform pos: 7.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMorgue entities: - uid: 9303 @@ -101382,11 +100407,15 @@ entities: - type: Transform pos: 30.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14731 components: - type: Transform pos: 27.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignNews entities: - uid: 2923 @@ -101395,6 +100424,8 @@ entities: rot: -1.5707963267948966 rad pos: -30.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignPrison entities: - uid: 12852 @@ -101402,6 +100433,8 @@ entities: - type: Transform pos: 64.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRadiation entities: - uid: 18444 @@ -101410,12 +100443,16 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-81.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18447 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-82.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRadiationMed entities: - uid: 10796 @@ -101424,45 +100461,61 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,-75.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16756 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-88.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16757 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-88.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17544 components: - type: Transform pos: -23.5,-89.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18445 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-72.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18446 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-72.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19128 components: - type: Transform pos: -10.5,-76.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19258 components: - type: Transform pos: -12.5,-78.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRND entities: - uid: 19073 @@ -101470,6 +100523,8 @@ entities: - type: Transform pos: -2.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRobo entities: - uid: 2221 @@ -101477,6 +100532,8 @@ entities: - type: Transform pos: -12.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSalvage entities: - uid: 6923 @@ -101484,23 +100541,31 @@ entities: - type: Transform pos: 46.5,-97.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16207 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-104.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16208 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-100.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19731 components: - type: Transform pos: 53.5,-104.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignScience entities: - uid: 6645 @@ -101508,12 +100573,16 @@ entities: - type: Transform pos: -8.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18197 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-74.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecurearea entities: - uid: 3107 @@ -101522,22 +100591,30 @@ entities: rot: 3.141592653589793 rad pos: 74.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3783 components: - type: Transform pos: 77.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7961 components: - type: Transform pos: 75.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10775 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecureMed entities: - uid: 6707 @@ -101545,36 +100622,48 @@ entities: - type: Transform pos: 31.5,-88.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6709 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-90.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15694 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15696 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18910 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-84.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18911 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-86.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecureMedRed entities: - uid: 5972 @@ -101582,23 +100671,31 @@ entities: - type: Transform pos: -64.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5973 components: - type: Transform pos: -62.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8052 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8053 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecureSmall entities: - uid: 3559 @@ -101606,53 +100703,55 @@ entities: - type: Transform pos: 53.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7151 components: - type: Transform pos: 51.5,-22.5 parent: 2 - - uid: 11713 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-20.5 - parent: 2 + - type: Fixtures + fixtures: {} - uid: 11730 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11731 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17981 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18145 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-55.5 parent: 2 - - uid: 18361 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-20.5 - parent: 2 + - type: Fixtures + fixtures: {} - uid: 18362 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecureSmallRed entities: - uid: 18912 @@ -101661,12 +100760,16 @@ entities: rot: 3.141592653589793 rad pos: 38.50035,-87.62597 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18913 components: - type: Transform rot: 3.141592653589793 rad pos: 36.500515,-82.37051 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecurity entities: - uid: 3616 @@ -101675,23 +100778,31 @@ entities: rot: 1.5707963267948966 rad pos: 60.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3620 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15670 components: - type: Transform rot: -1.5707963267948966 rad pos: 74.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18041 components: - type: Transform pos: 64.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignShipDock entities: - uid: 19640 @@ -101700,38 +100811,57 @@ entities: rot: 1.5707963267948966 rad pos: -30.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19641 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignShock entities: + - uid: 3003 + components: + - type: Transform + pos: -8.5,-41.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 11726 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11727 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11728 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11729 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSpace entities: - uid: 6957 @@ -101739,41 +100869,57 @@ entities: - type: Transform pos: 22.5,-100.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8658 components: - type: Transform pos: 81.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13331 components: - type: Transform pos: 84.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19276 components: - type: Transform pos: 31.5,-86.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19277 components: - type: Transform pos: 38.5,-82.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19278 components: - type: Transform pos: 29.5,-84.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19279 components: - type: Transform pos: 36.5,-87.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19280 components: - type: Transform pos: 84.5,-70.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSurgery entities: - uid: 14675 @@ -101782,6 +100928,8 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignToolStorage entities: - uid: 5613 @@ -101790,6 +100938,8 @@ entities: rot: 1.5707963267948966 rad pos: -18.5,-53.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignVault entities: - uid: 19066 @@ -101797,6 +100947,8 @@ entities: - type: Transform pos: 8.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignVirology entities: - uid: 7615 @@ -101805,12 +100957,16 @@ entities: rot: -1.5707963267948966 rad pos: 32.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8787 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SingularityGenerator entities: - uid: 5744 @@ -101968,6 +101124,13 @@ entities: - type: Transform pos: -12.5,-63.5 parent: 2 +- proto: SmokingPipeFilledCannabis + entities: + - uid: 11711 + components: + - type: Transform + pos: -20.534903,-42.4654 + parent: 2 - proto: SnapPopBox entities: - uid: 17566 @@ -102774,6 +101937,28 @@ entities: - type: Transform pos: -8.5,-48.5 parent: 2 +- proto: SpawnPointLatejoin + entities: + - uid: 14218 + components: + - type: Transform + pos: 1.5,1.5 + parent: 2 + - uid: 14219 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 + - uid: 14220 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2 + - uid: 14221 + components: + - type: Transform + pos: 4.5,1.5 + parent: 2 - proto: SpawnPointLawyer entities: - uid: 3459 @@ -103160,6 +102345,14 @@ entities: - type: Transform pos: 1.3780347,-62.383446 parent: 2 +- proto: SprayPainter + entities: + - uid: 14149 + components: + - type: Transform + rot: 5.934119456780721 rad + pos: 7.4473543,-9.529352 + parent: 2 - proto: StairDark entities: - uid: 4632 @@ -103432,142 +102625,133 @@ entities: - type: Transform pos: 66.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5854 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-86.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6270 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6959 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-80.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6960 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-92.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7096 components: - type: Transform pos: 52.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13197 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} + - uid: 13960 + components: + - type: Transform + pos: -9.5,-29.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 14154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-44.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 14818 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14820 components: - type: Transform pos: -26.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14821 components: - type: Transform pos: 4.5,-4.5 parent: 2 - - uid: 14827 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-34.5 - parent: 2 + - type: Fixtures + fixtures: {} - uid: 14828 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-56.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14830 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-71.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17803 components: - type: Transform pos: 4.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18203 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-70.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18834 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SteelBench entities: - - uid: 5649 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-40.5 - parent: 2 - - uid: 5650 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-40.5 - parent: 2 - - uid: 5651 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-40.5 - parent: 2 - - uid: 5652 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-40.5 - parent: 2 - - uid: 5653 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-41.5 - parent: 2 - - uid: 5654 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-41.5 - parent: 2 - - uid: 5655 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-41.5 - parent: 2 - - uid: 5656 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-41.5 - parent: 2 - uid: 7781 components: - type: Transform @@ -103612,11 +102796,11 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,-37.5 parent: 2 - - uid: 15513 + - uid: 9307 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-35.5 + rot: 3.141592653589793 rad + pos: -24.5,-32.5 parent: 2 - proto: StoolBar entities: @@ -103710,13 +102894,6 @@ entities: - type: Transform pos: 72.37239,-40.623806 parent: 2 - - uid: 19378 - components: - - type: Transform - pos: 9.691935,-47.56793 - parent: 2 - - type: Battery - startingCharge: 0 - proto: SubstationBasic entities: - uid: 2711 @@ -104542,6 +103719,17 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Medical/Genpop Hallway + - uid: 13950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-34.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: AME West - uid: 16546 components: - type: Transform @@ -104812,17 +104000,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: AME Hall, North - - uid: 18742 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-35.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: AME Hall, West - uid: 18743 components: - type: Transform @@ -105788,6 +104965,12 @@ entities: - type: Transform pos: 30.5,-16.5 parent: 2 + - uid: 4690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-19.5 + parent: 2 - uid: 4855 components: - type: Transform @@ -106193,6 +105376,12 @@ entities: - type: Transform pos: 20.5,-17.5 parent: 2 + - uid: 11398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-19.5 + parent: 2 - uid: 11772 components: - type: Transform @@ -106278,11 +105467,6 @@ entities: - type: Transform pos: 1.5,-62.5 parent: 2 - - uid: 17931 - components: - - type: Transform - pos: 58.5,-20.5 - parent: 2 - uid: 18148 components: - type: Transform @@ -107362,10 +106546,28 @@ entities: - type: Transform pos: 42.5,-34.5 parent: 2 - - uid: 3438 + - uid: 1720 components: - type: Transform - pos: -25.5,-32.5 + rot: -1.5707963267948966 rad + pos: -24.5,-39.5 + parent: 2 + - uid: 1722 + components: + - type: Transform + pos: -31.5,-58.5 + parent: 2 + - uid: 2316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-42.5 + parent: 2 + - uid: 4677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-40.5 parent: 2 - uid: 5082 components: @@ -107397,6 +106599,12 @@ entities: - type: Transform pos: -15.5,-18.5 parent: 2 + - uid: 7148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-39.5 + parent: 2 - uid: 7429 components: - type: Transform @@ -107471,30 +106679,23 @@ entities: - type: Transform pos: -42.5,-79.5 parent: 2 - - uid: 11398 + - uid: 11712 components: - type: Transform - pos: -25.5,-31.5 + rot: -1.5707963267948966 rad + pos: -20.5,-42.5 parent: 2 - - uid: 12420 + - uid: 11713 components: - type: Transform - pos: -23.5,-39.5 + rot: -1.5707963267948966 rad + pos: -20.5,-40.5 parent: 2 - - uid: 13338 + - uid: 11717 components: - type: Transform - pos: -24.5,-39.5 - parent: 2 - - uid: 13997 - components: - - type: Transform - pos: -25.5,-30.5 - parent: 2 - - uid: 14011 - components: - - type: Transform - pos: -25.5,-29.5 + rot: -1.5707963267948966 rad + pos: -18.5,-40.5 parent: 2 - uid: 14013 components: @@ -107526,6 +106727,11 @@ entities: - type: Transform pos: -33.5,-25.5 parent: 2 + - uid: 14111 + components: + - type: Transform + pos: -25.5,-29.5 + parent: 2 - uid: 14119 components: - type: Transform @@ -107604,11 +106810,6 @@ entities: - type: Transform pos: -32.5,-29.5 parent: 2 - - uid: 16435 - components: - - type: Transform - pos: -25.5,-39.5 - parent: 2 - uid: 16438 components: - type: Transform @@ -107639,11 +106840,6 @@ entities: - type: Transform pos: -40.5,-80.5 parent: 2 - - uid: 17088 - components: - - type: Transform - pos: 9.5,-44.5 - parent: 2 - uid: 17143 components: - type: Transform @@ -108135,11 +107331,6 @@ entities: - type: Transform pos: -22.379463,-51.43902 parent: 2 - - uid: 5912 - components: - - type: Transform - pos: 6.3929605,-3.2707329 - parent: 2 - uid: 5913 components: - type: Transform @@ -108207,13 +107398,6 @@ entities: - type: Transform pos: 91.23651,-82.45368 parent: 2 -- proto: ToyFigurineChaplain - entities: - - uid: 19391 - components: - - type: Transform - pos: -18.517744,-31.41124 - parent: 2 - proto: ToyFigurineFootsoldier entities: - uid: 16126 @@ -108254,13 +107438,6 @@ entities: - type: Transform pos: 52.988304,-98.97241 parent: 2 -- proto: ToyFigurineScientist - entities: - - uid: 15611 - components: - - type: Transform - pos: -22.517565,-35.42746 - parent: 2 - proto: ToyHammer entities: - uid: 15275 @@ -108273,7 +107450,7 @@ entities: - uid: 5148 components: - type: Transform - pos: 9.85424,-44.367374 + pos: 11.488949,-44.128864 parent: 2 - uid: 17381 components: @@ -108606,42 +107783,6 @@ entities: - Forward - - Middle - Off - - uid: 18264 - components: - - type: Transform - pos: 60.5,-20.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 18358: - - - Left - - On - - - Right - - On - - - Middle - - Off - 6123: - - - Left - - Open - - - Right - - Open - - - Middle - - Close - - - Left - - AutoClose - - - Right - - AutoClose - 4205: - - - Left - - Open - - - Right - - Open - - - Middle - - Close - - - Left - - AutoClose - - - Right - - AutoClose - proto: UnfinishedMachineFrame entities: - uid: 8057 @@ -108780,21 +107921,11 @@ entities: - type: Transform pos: 34.5,-46.5 parent: 2 - - uid: 17443 - components: - - type: Transform - pos: -14.5,-31.5 - parent: 2 - uid: 17444 components: - type: Transform pos: -47.5,-55.5 parent: 2 - - uid: 17822 - components: - - type: Transform - pos: 20.5,-48.5 - parent: 2 - proto: VendingMachineClothing entities: - uid: 6158 @@ -109089,18 +108220,24 @@ entities: - type: Transform pos: 14.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5936 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6254 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: VendingMachineWinter entities: - uid: 6159 @@ -109138,6 +108275,8 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WallmountTelevision entities: - uid: 15276 @@ -109145,6 +108284,8 @@ entities: - type: Transform pos: 50.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WallReinforced entities: - uid: 43 @@ -111027,6 +110168,11 @@ entities: - type: Transform pos: 22.5,-10.5 parent: 2 + - uid: 11725 + components: + - type: Transform + pos: -35.5,-9.5 + parent: 2 - uid: 11800 components: - type: Transform @@ -111088,6 +110234,22 @@ entities: - type: Transform pos: 43.5,-15.5 parent: 2 + - uid: 14124 + components: + - type: Transform + pos: -37.5,-46.5 + parent: 2 + - uid: 14128 + components: + - type: Transform + pos: -37.5,-44.5 + parent: 2 + - uid: 14132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-8.5 + parent: 2 - uid: 14271 components: - type: Transform @@ -111555,11 +110717,6 @@ entities: - type: Transform pos: -33.5,-8.5 parent: 2 - - uid: 389 - components: - - type: Transform - pos: -35.5,-8.5 - parent: 2 - uid: 393 components: - type: Transform @@ -112663,26 +111820,6 @@ entities: - type: Transform pos: -33.5,-39.5 parent: 2 - - uid: 1336 - components: - - type: Transform - pos: -33.5,-40.5 - parent: 2 - - uid: 1337 - components: - - type: Transform - pos: -32.5,-40.5 - parent: 2 - - uid: 1338 - components: - - type: Transform - pos: -31.5,-40.5 - parent: 2 - - uid: 1339 - components: - - type: Transform - pos: -30.5,-40.5 - parent: 2 - uid: 1363 components: - type: Transform @@ -112923,11 +112060,6 @@ entities: - type: Transform pos: -44.5,-12.5 parent: 2 - - uid: 1445 - components: - - type: Transform - pos: -14.5,-30.5 - parent: 2 - uid: 1504 components: - type: Transform @@ -113418,45 +112550,10 @@ entities: - type: Transform pos: -57.5,-30.5 parent: 2 - - uid: 1709 + - uid: 1710 components: - type: Transform - pos: -30.5,-43.5 - parent: 2 - - uid: 1716 - components: - - type: Transform - pos: -31.5,-43.5 - parent: 2 - - uid: 1717 - components: - - type: Transform - pos: -32.5,-43.5 - parent: 2 - - uid: 1718 - components: - - type: Transform - pos: -33.5,-43.5 - parent: 2 - - uid: 1719 - components: - - type: Transform - pos: -33.5,-47.5 - parent: 2 - - uid: 1720 - components: - - type: Transform - pos: -32.5,-47.5 - parent: 2 - - uid: 1721 - components: - - type: Transform - pos: -31.5,-47.5 - parent: 2 - - uid: 1722 - components: - - type: Transform - pos: -30.5,-47.5 + pos: -16.5,-28.5 parent: 2 - uid: 1723 components: @@ -114948,11 +114045,6 @@ entities: - type: Transform pos: 55.5,-58.5 parent: 2 - - uid: 2289 - components: - - type: Transform - pos: -15.5,-33.5 - parent: 2 - uid: 2295 components: - type: Transform @@ -114988,21 +114080,6 @@ entities: - type: Transform pos: -10.5,-67.5 parent: 2 - - uid: 2303 - components: - - type: Transform - pos: -15.5,-31.5 - parent: 2 - - uid: 2304 - components: - - type: Transform - pos: -15.5,-35.5 - parent: 2 - - uid: 2305 - components: - - type: Transform - pos: -15.5,-29.5 - parent: 2 - uid: 2307 components: - type: Transform @@ -115523,11 +114600,6 @@ entities: - type: Transform pos: 9.5,-81.5 parent: 2 - - uid: 2836 - components: - - type: Transform - pos: -15.5,-34.5 - parent: 2 - uid: 2845 components: - type: Transform @@ -115558,11 +114630,6 @@ entities: - type: Transform pos: 41.5,-78.5 parent: 2 - - uid: 2886 - components: - - type: Transform - pos: -15.5,-36.5 - parent: 2 - uid: 2931 components: - type: Transform @@ -115728,11 +114795,6 @@ entities: - type: Transform pos: 65.5,-74.5 parent: 2 - - uid: 3007 - components: - - type: Transform - pos: -15.5,-30.5 - parent: 2 - uid: 3010 components: - type: Transform @@ -119009,21 +118071,51 @@ entities: - type: Transform pos: -8.5,-26.5 parent: 2 + - uid: 11916 + components: + - type: Transform + pos: -33.5,-40.5 + parent: 2 + - uid: 11917 + components: + - type: Transform + pos: -32.5,-40.5 + parent: 2 + - uid: 11918 + components: + - type: Transform + pos: -31.5,-40.5 + parent: 2 - uid: 11945 components: - type: Transform pos: 44.5,-73.5 parent: 2 + - uid: 11947 + components: + - type: Transform + pos: -30.5,-40.5 + parent: 2 - uid: 11981 components: - type: Transform pos: 49.5,-32.5 parent: 2 + - uid: 12420 + components: + - type: Transform + pos: -30.5,-43.5 + parent: 2 - uid: 12709 components: - type: Transform pos: -24.5,-15.5 parent: 2 + - uid: 12786 + components: + - type: Transform + pos: -31.5,-43.5 + parent: 2 - uid: 12799 components: - type: Transform @@ -119034,6 +118126,16 @@ entities: - type: Transform pos: -23.5,-19.5 parent: 2 + - uid: 12915 + components: + - type: Transform + pos: -32.5,-43.5 + parent: 2 + - uid: 12916 + components: + - type: Transform + pos: -33.5,-43.5 + parent: 2 - uid: 12929 components: - type: Transform @@ -119049,11 +118151,31 @@ entities: - type: Transform pos: 73.5,-39.5 parent: 2 + - uid: 13208 + components: + - type: Transform + pos: -33.5,-47.5 + parent: 2 - uid: 13254 components: - type: Transform pos: 73.5,-38.5 parent: 2 + - uid: 13330 + components: + - type: Transform + pos: -32.5,-47.5 + parent: 2 + - uid: 13338 + components: + - type: Transform + pos: -31.5,-47.5 + parent: 2 + - uid: 13390 + components: + - type: Transform + pos: -30.5,-47.5 + parent: 2 - uid: 13393 components: - type: Transform @@ -119114,6 +118236,36 @@ entities: - type: Transform pos: 72.5,-37.5 parent: 2 + - uid: 13964 + components: + - type: Transform + pos: -34.5,-51.5 + parent: 2 + - uid: 13971 + components: + - type: Transform + pos: -33.5,-51.5 + parent: 2 + - uid: 13972 + components: + - type: Transform + pos: -30.5,-50.5 + parent: 2 + - uid: 13973 + components: + - type: Transform + pos: -31.5,-50.5 + parent: 2 + - uid: 13974 + components: + - type: Transform + pos: -32.5,-50.5 + parent: 2 + - uid: 13980 + components: + - type: Transform + pos: -33.5,-50.5 + parent: 2 - uid: 14010 components: - type: Transform @@ -120659,11 +119811,6 @@ entities: - type: Transform pos: -1.5,-42.5 parent: 2 - - uid: 965 - components: - - type: Transform - pos: -0.5,-42.5 - parent: 2 - uid: 966 components: - type: Transform @@ -121785,35 +120932,11 @@ entities: - type: Transform pos: -55.5,-65.5 parent: 2 - - uid: 1740 - components: - - type: Transform - pos: -34.5,-51.5 - parent: 2 - uid: 1741 components: - type: Transform - pos: -33.5,-51.5 - parent: 2 - - uid: 1742 - components: - - type: Transform - pos: -33.5,-50.5 - parent: 2 - - uid: 1743 - components: - - type: Transform - pos: -32.5,-50.5 - parent: 2 - - uid: 1744 - components: - - type: Transform - pos: -31.5,-50.5 - parent: 2 - - uid: 1745 - components: - - type: Transform - pos: -30.5,-50.5 + rot: 3.141592653589793 rad + pos: -14.5,-33.5 parent: 2 - uid: 1807 components: @@ -122057,6 +121180,12 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,-19.5 parent: 2 + - uid: 2343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-36.5 + parent: 2 - uid: 2380 components: - type: Transform @@ -122782,6 +121911,12 @@ entities: - type: Transform pos: 71.5,-25.5 parent: 2 + - uid: 3948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-36.5 + parent: 2 - uid: 3951 components: - type: Transform @@ -123411,11 +122546,6 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,-21.5 parent: 2 - - uid: 7097 - components: - - type: Transform - pos: 3.5,-60.5 - parent: 2 - uid: 7115 components: - type: Transform @@ -123509,6 +122639,12 @@ entities: rot: 1.5707963267948966 rad pos: 36.5,-36.5 parent: 2 + - uid: 7568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-31.5 + parent: 2 - uid: 7578 components: - type: Transform @@ -123738,11 +122874,6 @@ entities: - type: Transform pos: 54.5,-47.5 parent: 2 - - uid: 8704 - components: - - type: Transform - pos: -31.5,-54.5 - parent: 2 - uid: 8813 components: - type: Transform @@ -124028,6 +123159,11 @@ entities: - type: Transform pos: 36.5,-30.5 parent: 2 + - uid: 11982 + components: + - type: Transform + pos: -14.5,-30.5 + parent: 2 - uid: 12408 components: - type: Transform @@ -124200,12 +123336,35 @@ entities: rot: 1.5707963267948966 rad pos: 38.5,-33.5 parent: 2 + - uid: 13947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-34.5 + parent: 2 + - uid: 13952 + components: + - type: Transform + pos: -15.5,-29.5 + parent: 2 + - uid: 13961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-35.5 + parent: 2 - uid: 14046 components: - type: Transform rot: 1.5707963267948966 rad pos: 77.5,-38.5 parent: 2 + - uid: 14072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-54.5 + parent: 2 - uid: 14093 components: - type: Transform @@ -124586,11 +123745,6 @@ entities: - type: Transform pos: 61.5,-15.5 parent: 2 - - uid: 7260 - components: - - type: Transform - pos: 66.5,-27.5 - parent: 2 - uid: 8231 components: - type: Transform @@ -124616,6 +123770,8 @@ entities: rot: 3.141592653589793 rad pos: 37.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningN2 entities: - uid: 7812 @@ -124624,6 +123780,8 @@ entities: rot: 3.141592653589793 rad pos: 35.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningO2 entities: - uid: 7811 @@ -124632,6 +123790,8 @@ entities: rot: 3.141592653589793 rad pos: 33.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningPlasma entities: - uid: 7815 @@ -124640,6 +123800,8 @@ entities: rot: 3.141592653589793 rad pos: 41.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningWaste entities: - uid: 7814 @@ -124648,12 +123810,16 @@ entities: rot: 3.141592653589793 rad pos: 39.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7816 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WaterCooler entities: - uid: 3191 @@ -124917,6 +124083,16 @@ entities: parent: 2 - proto: WeaponTurretXeno entities: + - uid: 1718 + components: + - type: Transform + pos: 41.5,-21.5 + parent: 2 + - uid: 10741 + components: + - type: Transform + pos: 52.5,-21.5 + parent: 2 - uid: 12956 components: - type: Transform @@ -125038,6 +124214,18 @@ entities: parent: 2 - proto: Windoor entities: + - uid: 4706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-59.5 + parent: 2 + - uid: 5690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-55.5 + parent: 2 - uid: 6205 components: - type: Transform @@ -125303,18 +124491,6 @@ entities: rot: 3.141592653589793 rad pos: 59.5,-40.5 parent: 2 - - uid: 9896 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-42.5 - parent: 2 - - uid: 9897 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-43.5 - parent: 2 - proto: WindoorSecureAtmosphericsLocked entities: - uid: 8009 @@ -125345,6 +124521,12 @@ entities: parent: 2 - proto: WindoorSecureEngineeringLocked entities: + - uid: 4657 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-53.5 + parent: 2 - uid: 4865 components: - type: Transform @@ -125504,12 +124686,6 @@ entities: rot: 1.5707963267948966 rad pos: 51.5,-29.5 parent: 2 - - uid: 4205 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-21.5 - parent: 2 - uid: 4377 components: - type: Transform @@ -125540,12 +124716,6 @@ entities: rot: -1.5707963267948966 rad pos: 57.5,-27.5 parent: 2 - - uid: 6123 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-21.5 - parent: 2 - uid: 7067 components: - type: Transform @@ -125570,6 +124740,18 @@ entities: rot: -1.5707963267948966 rad pos: 61.5,-27.5 parent: 2 + - uid: 14133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-42.5 + parent: 2 + - uid: 14134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-43.5 + parent: 2 - uid: 19647 components: - type: Transform @@ -125717,12 +124899,73 @@ entities: rot: 3.141592653589793 rad pos: 76.5,-62.5 parent: 2 + - uid: 4569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-52.5 + parent: 2 + - uid: 4570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-51.5 + parent: 2 - uid: 4610 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.5,-31.5 parent: 2 + - uid: 4654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-55.5 + parent: 2 + - uid: 4655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-54.5 + parent: 2 + - uid: 4656 + components: + - type: Transform + pos: 26.5,-54.5 + parent: 2 + - uid: 4658 + components: + - type: Transform + pos: 24.5,-55.5 + parent: 2 + - uid: 4659 + components: + - type: Transform + pos: 23.5,-55.5 + parent: 2 + - uid: 4660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-52.5 + parent: 2 + - uid: 4661 + components: + - type: Transform + pos: 25.5,-55.5 + parent: 2 + - uid: 4662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-51.5 + parent: 2 + - uid: 4663 + components: + - type: Transform + pos: 22.5,-54.5 + parent: 2 - uid: 4866 components: - type: Transform @@ -125751,6 +124994,18 @@ entities: rot: 1.5707963267948966 rad pos: 26.5,-85.5 parent: 2 + - uid: 7070 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-51.5 + parent: 2 + - uid: 7097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-52.5 + parent: 2 - uid: 7272 components: - type: Transform @@ -125761,6 +125016,48 @@ entities: - type: Transform pos: 33.5,-72.5 parent: 2 + - uid: 7668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-51.5 + parent: 2 + - uid: 7710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-51.5 + parent: 2 + - uid: 7758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-53.5 + parent: 2 + - uid: 7943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-54.5 + parent: 2 + - uid: 7944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-52.5 + parent: 2 + - uid: 8037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-51.5 + parent: 2 + - uid: 8367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-55.5 + parent: 2 - uid: 8826 components: - type: Transform @@ -125806,6 +125103,29 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,-15.5 parent: 2 + - uid: 14135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-36.5 + parent: 2 + - uid: 14136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-34.5 + parent: 2 + - uid: 14137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-37.5 + parent: 2 + - uid: 14145 + components: + - type: Transform + pos: -6.5,-33.5 + parent: 2 - uid: 16394 components: - type: Transform @@ -125833,35 +125153,6 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,-72.5 parent: 2 - - uid: 19483 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-36.5 - parent: 2 - - uid: 19484 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-34.5 - parent: 2 - - uid: 19485 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-37.5 - parent: 2 - - uid: 19486 - components: - - type: Transform - pos: -9.5,-33.5 - parent: 2 - - uid: 19488 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-35.5 - parent: 2 - uid: 19535 components: - type: Transform @@ -125941,6 +125232,11 @@ entities: - type: Transform pos: 51.5,-64.5 parent: 2 + - uid: 585 + components: + - type: Transform + pos: -30.5,-45.5 + parent: 2 - uid: 760 components: - type: Transform @@ -126064,6 +125360,16 @@ entities: - type: Transform pos: -16.5,-10.5 parent: 2 + - uid: 1685 + components: + - type: Transform + pos: 49.5,-22.5 + parent: 2 + - uid: 1686 + components: + - type: Transform + pos: 50.5,-22.5 + parent: 2 - uid: 1804 components: - type: Transform @@ -126214,31 +125520,11 @@ entities: - type: Transform pos: 17.5,-47.5 parent: 2 - - uid: 2316 - components: - - type: Transform - pos: 26.5,-46.5 - parent: 2 - - uid: 2317 - components: - - type: Transform - pos: 26.5,-42.5 - parent: 2 - uid: 2318 components: - type: Transform pos: 16.5,-47.5 parent: 2 - - uid: 2319 - components: - - type: Transform - pos: 27.5,-47.5 - parent: 2 - - uid: 2321 - components: - - type: Transform - pos: 26.5,-47.5 - parent: 2 - uid: 2322 components: - type: Transform @@ -126249,36 +125535,6 @@ entities: - type: Transform pos: 15.5,-47.5 parent: 2 - - uid: 2324 - components: - - type: Transform - pos: -30.5,-36.5 - parent: 2 - - uid: 2340 - components: - - type: Transform - pos: -31.5,-37.5 - parent: 2 - - uid: 2341 - components: - - type: Transform - pos: -31.5,-35.5 - parent: 2 - - uid: 2342 - components: - - type: Transform - pos: -32.5,-36.5 - parent: 2 - - uid: 2343 - components: - - type: Transform - pos: -36.5,-9.5 - parent: 2 - - uid: 2344 - components: - - type: Transform - pos: -35.5,-9.5 - parent: 2 - uid: 2345 components: - type: Transform @@ -126329,6 +125585,11 @@ entities: - type: Transform pos: -56.5,-30.5 parent: 2 + - uid: 2378 + components: + - type: Transform + pos: 47.5,-22.5 + parent: 2 - uid: 2389 components: - type: Transform @@ -126374,6 +125635,11 @@ entities: - type: Transform pos: -25.5,-44.5 parent: 2 + - uid: 2649 + components: + - type: Transform + pos: 42.5,-22.5 + parent: 2 - uid: 2673 components: - type: Transform @@ -126387,23 +125653,53 @@ entities: - uid: 2704 components: - type: Transform - pos: -32.5,-44.5 + pos: 40.5,-22.5 parent: 2 - uid: 2709 components: - type: Transform - pos: -32.5,-45.5 + pos: 48.5,-22.5 parent: 2 - uid: 2726 components: - type: Transform - pos: -32.5,-46.5 + pos: 43.5,-22.5 parent: 2 - uid: 2727 components: - type: Transform pos: 19.5,-37.5 parent: 2 + - uid: 2836 + components: + - type: Transform + pos: 44.5,-22.5 + parent: 2 + - uid: 2843 + components: + - type: Transform + pos: 45.5,-22.5 + parent: 2 + - uid: 2851 + components: + - type: Transform + pos: 46.5,-22.5 + parent: 2 + - uid: 2886 + components: + - type: Transform + pos: 54.5,-22.5 + parent: 2 + - uid: 2887 + components: + - type: Transform + pos: 56.5,-22.5 + parent: 2 + - uid: 2968 + components: + - type: Transform + pos: 55.5,-22.5 + parent: 2 - uid: 3105 components: - type: Transform @@ -126669,21 +125965,6 @@ entities: - type: Transform pos: -8.5,-80.5 parent: 2 - - uid: 4383 - components: - - type: Transform - pos: 26.5,-45.5 - parent: 2 - - uid: 4384 - components: - - type: Transform - pos: 26.5,-40.5 - parent: 2 - - uid: 4385 - components: - - type: Transform - pos: 26.5,-41.5 - parent: 2 - uid: 4386 components: - type: Transform @@ -126704,26 +125985,6 @@ entities: - type: Transform pos: -5.5,-18.5 parent: 2 - - uid: 4393 - components: - - type: Transform - pos: -31.5,-53.5 - parent: 2 - - uid: 4394 - components: - - type: Transform - pos: -31.5,-55.5 - parent: 2 - - uid: 4395 - components: - - type: Transform - pos: -32.5,-54.5 - parent: 2 - - uid: 4396 - components: - - type: Transform - pos: -30.5,-54.5 - parent: 2 - uid: 4397 components: - type: Transform @@ -127029,21 +126290,6 @@ entities: - type: Transform pos: 39.5,-14.5 parent: 2 - - uid: 4556 - components: - - type: Transform - pos: -30.5,-46.5 - parent: 2 - - uid: 4569 - components: - - type: Transform - pos: -30.5,-45.5 - parent: 2 - - uid: 4570 - components: - - type: Transform - pos: -30.5,-44.5 - parent: 2 - uid: 4571 components: - type: Transform @@ -127094,46 +126340,6 @@ entities: - type: Transform pos: -32.5,-8.5 parent: 2 - - uid: 4700 - components: - - type: Transform - pos: -36.5,-8.5 - parent: 2 - - uid: 4701 - components: - - type: Transform - pos: -40.5,-9.5 - parent: 2 - - uid: 4702 - components: - - type: Transform - pos: -36.5,-7.5 - parent: 2 - - uid: 4703 - components: - - type: Transform - pos: -38.5,-9.5 - parent: 2 - - uid: 4704 - components: - - type: Transform - pos: -38.5,-7.5 - parent: 2 - - uid: 4706 - components: - - type: Transform - pos: -38.5,-8.5 - parent: 2 - - uid: 4715 - components: - - type: Transform - pos: -40.5,-7.5 - parent: 2 - - uid: 4723 - components: - - type: Transform - pos: -40.5,-8.5 - parent: 2 - uid: 4761 components: - type: Transform @@ -127149,81 +126355,6 @@ entities: - type: Transform pos: 21.5,-75.5 parent: 2 - - uid: 4850 - components: - - type: Transform - pos: -41.5,-43.5 - parent: 2 - - uid: 4891 - components: - - type: Transform - pos: -41.5,-44.5 - parent: 2 - - uid: 4892 - components: - - type: Transform - pos: -41.5,-45.5 - parent: 2 - - uid: 4923 - components: - - type: Transform - pos: -41.5,-46.5 - parent: 2 - - uid: 4924 - components: - - type: Transform - pos: -41.5,-47.5 - parent: 2 - - uid: 4927 - components: - - type: Transform - pos: -40.5,-47.5 - parent: 2 - - uid: 4928 - components: - - type: Transform - pos: -39.5,-47.5 - parent: 2 - - uid: 4929 - components: - - type: Transform - pos: -38.5,-47.5 - parent: 2 - - uid: 4930 - components: - - type: Transform - pos: -37.5,-47.5 - parent: 2 - - uid: 4931 - components: - - type: Transform - pos: -37.5,-44.5 - parent: 2 - - uid: 4932 - components: - - type: Transform - pos: -37.5,-46.5 - parent: 2 - - uid: 4933 - components: - - type: Transform - pos: -37.5,-43.5 - parent: 2 - - uid: 4934 - components: - - type: Transform - pos: -38.5,-43.5 - parent: 2 - - uid: 4935 - components: - - type: Transform - pos: -39.5,-43.5 - parent: 2 - - uid: 4936 - components: - - type: Transform - pos: -40.5,-43.5 - parent: 2 - uid: 4937 components: - type: Transform @@ -127694,6 +126825,11 @@ entities: - type: Transform pos: -17.5,-73.5 parent: 2 + - uid: 11716 + components: + - type: Transform + pos: -30.5,-46.5 + parent: 2 - uid: 11872 components: - type: Transform @@ -127714,6 +126850,21 @@ entities: - type: Transform pos: 51.5,-60.5 parent: 2 + - uid: 13888 + components: + - type: Transform + pos: -14.5,-32.5 + parent: 2 + - uid: 13963 + components: + - type: Transform + pos: -0.5,-42.5 + parent: 2 + - uid: 13981 + components: + - type: Transform + pos: -30.5,-44.5 + parent: 2 - uid: 14115 components: - type: Transform diff --git a/Resources/Maps/marathon.yml b/Resources/Maps/marathon.yml index 0b29fe144d..4679e76938 100644 --- a/Resources/Maps/marathon.yml +++ b/Resources/Maps/marathon.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Map - engineVersion: 264.0.0 + engineVersion: 266.0.0 forkId: "" forkVersion: "" - time: 07/22/2025 16:14:30 - entityCount: 23140 + time: 08/21/2025 15:09:09 + entityCount: 23143 maps: - 5350 grids: @@ -22616,6 +22616,21 @@ entities: - type: Transform pos: -25.5,-49.5 parent: 30 + - uid: 10406 + components: + - type: Transform + pos: -50.5,64.5 + parent: 30 + - uid: 10407 + components: + - type: Transform + pos: -50.5,65.5 + parent: 30 + - uid: 10408 + components: + - type: Transform + pos: -50.5,66.5 + parent: 30 - uid: 10444 components: - type: Transform diff --git a/Resources/Maps/oasis.yml b/Resources/Maps/oasis.yml index 057dd96e4b..5f55256fc8 100644 --- a/Resources/Maps/oasis.yml +++ b/Resources/Maps/oasis.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Map - engineVersion: 264.0.0 + engineVersion: 266.0.0 forkId: "" forkVersion: "" - time: 07/22/2025 16:51:18 - entityCount: 30823 + time: 08/17/2025 20:31:53 + entityCount: 31133 maps: - 1 grids: @@ -51,15 +51,18 @@ tilemap: 26: FloorMetalDiamond 3: FloorMowedAstroGrass 7: FloorPlanetGrass + 57: FloorRedCircuit 30: FloorReinforced 48: FloorReinforcedHardened 54: FloorRockVault + 58: FloorShuttleBlue 17: FloorSteel 25: FloorSteelDiagonal 37: FloorSteelOffset 15: FloorTechMaint 21: FloorTechMaint2 43: FloorTechMaint3 + 56: FloorTechMaintDark 31: FloorWhite 34: FloorWhiteMini 38: FloorWhiteOffset @@ -95,119 +98,119 @@ entities: chunks: 0,0: ind: 0,0 - tiles: AAAAAAADAAAAAAAAAgAAAAAAAAMAAQAAAAABAAEAAAAAAAABAAAAAAMAAQAAAAABAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAQABAAAAAAAAAQAAAAACAAEAAAAAAgABAAAAAAAAAQAAAAABAAAAAAAAAgAAAAAAAAMAAAAAAAABAAEAAAAAAAABAAAAAAAAAQAAAAADAAEAAAAAAAABAAAAAAIAAQAAAAADAAEAAAAAAgABAAAAAAEAAQAAAAACAAEAAAAAAQABAAAAAAAAAQAAAAABAAEAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAAAgABAAAAAAIAAQAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAAFAAAAAAMABQAAAAAAAAMAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAgABAAAAAAEAAQAAAAAAAAIAAAAAAAAHAAAAAAEABgAAAAACAAYAAAAAAwADAAAAAAAABgAAAAADAAMAAAAAAAADAAAAAAAABQAAAAADAAUAAAAAAwADAAAAAAAAAwAAAAAAAAEAAAAAAgABAAAAAAAAAQAAAAAAAAIAAAAAAAAGAAAAAAEABgAAAAADAAYAAAAAAgAGAAAAAAEABgAAAAACAAYAAAAAAwAGAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAAGAAAAAAIABgAAAAACAAYAAAAAAwAGAAAAAAIABgAAAAAAAAYAAAAAAgAGAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAAAAAEAAAAAAQADAAAAAAAABgAAAAADAAYAAAAAAgAGAAAAAAAABgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAEAAwAAAAAAAAMAAAAAAAADAAAAAAAABgAAAAABAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAIAAQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAMAAQAAAAABAAEAAAAAAAAEAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAEABgAAAAAAAAEAAAAAAwABAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAEABgAAAAADAAYAAAAAAQABAAAAAAEAAQAAAAABAAUAAAAAAAAFAAAAAAEAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAYAAAAAAwADAAAAAAAAAQAAAAADAAEAAAAAAQAFAAAAAAIABQAAAAACAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABgAAAAAAAAYAAAAAAgADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAEAAQAAAAACAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAYAAAAAAQAGAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAAAAAEAAAAAAwACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAAABgAAAAABAAYAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAA== + tiles: AAAAAAABAAAAAAAAAgAAAAAAAAIAAQAAAAADAAEAAAAAAAABAAAAAAMAAQAAAAAAAAEAAAAAAQABAAAAAAMAAQAAAAADAAEAAAAAAQABAAAAAAMAAQAAAAAAAAEAAAAAAgABAAAAAAMAAQAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAEAAAAAAgABAAAAAAMAAQAAAAAAAAEAAAAAAgABAAAAAAMAAQAAAAADAAEAAAAAAAABAAAAAAMAAQAAAAACAAEAAAAAAQABAAAAAAAAAQAAAAABAAEAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAAFAAAAAAIABQAAAAADAAMAAAAAAAACAAAAAAAAAQAAAAABAAEAAAAAAgABAAAAAAIAAQAAAAABAAIAAAAAAAAHAAAAAAIABgAAAAADAAYAAAAAAwADAAAAAAAABgAAAAACAAMAAAAAAAADAAAAAAAABQAAAAACAAUAAAAAAwADAAAAAAAAAwAAAAAAAAEAAAAAAgABAAAAAAMAAQAAAAACAAIAAAAAAAAGAAAAAAEABgAAAAADAAYAAAAAAAAGAAAAAAMABgAAAAACAAYAAAAAAAAGAAAAAAIAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAACAAIAAAAAAAAGAAAAAAIABgAAAAABAAYAAAAAAAAGAAAAAAEABgAAAAABAAYAAAAAAAAGAAAAAAEAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAABAAEAAAAAAgADAAAAAAAABgAAAAADAAYAAAAAAwAGAAAAAAAABgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAwABAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAAABgAAAAACAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAMAAQAAAAACAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAAAAQAAAAABAAEAAAAAAgAEAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAMABgAAAAADAAEAAAAAAgABAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAIABgAAAAAAAAYAAAAAAAABAAAAAAIAAQAAAAACAAUAAAAAAwAFAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAYAAAAAAQADAAAAAAAAAQAAAAABAAEAAAAAAwAFAAAAAAMABQAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABgAAAAABAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAQABAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABgAAAAABAAYAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAMAAQAAAAABAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAYAAAAAAQAGAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAADAAEAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAAABgAAAAACAAYAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAA== version: 7 -1,0: ind: -1,0 - tiles: AQAAAAAAAAEAAAAAAgABAAAAAAIAAQAAAAABAAEAAAAAAQABAAAAAAMAAQAAAAAAAAEAAAAAAwABAAAAAAEAAQAAAAABAAEAAAAAAwABAAAAAAEAAQAAAAABAAEAAAAAAwAAAAAAAAAAAAAAAAABAAEAAAAAAwABAAAAAAMAAQAAAAACAAEAAAAAAgABAAAAAAEAAQAAAAABAAEAAAAAAAABAAAAAAAAAQAAAAACAAEAAAAAAAABAAAAAAMAAQAAAAAAAAEAAAAAAQABAAAAAAAAAAAAAAABAAAAAAAAAwAIAAAAAAIAAgAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAAAAAUAAAAAAAADAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAABAAAAAAAAAwAAAAAAAAAACAAAAAABAAgAAAAAAgADAAAAAAAAAwAAAAAAAAUAAAAAAwAFAAAAAAEAAwAAAAAAAAYAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAAAAgAAAAAAAAEAAAAAAQABAAAAAAAAAQAAAAADAAgAAAAAAQAIAAAAAAAACAAAAAACAAMAAAAAAAAFAAAAAAMABQAAAAAAAAUAAAAAAwAGAAAAAAIAAwAAAAAAAAMAAAAAAAADAAAAAAAABgAAAAAAAAYAAAAAAgACAAAAAAAAAQAAAAADAAEAAAAAAAAIAAAAAAEACAAAAAADAAgAAAAAAQAFAAAAAAMABQAAAAAAAAUAAAAAAgAGAAAAAAIABgAAAAACAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAIABgAAAAACAAIAAAAAAAABAAAAAAAACAAAAAAAAAgAAAAAAwAIAAAAAAIABQAAAAAAAAUAAAAAAgAFAAAAAAIAAwAAAAAAAAMAAAAAAAAIAAAAAAIACAAAAAACAAgAAAAAAAAIAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAACAAgAAAAAAgAIAAAAAAIACAAAAAADAAUAAAAAAQAFAAAAAAAABQAAAAAAAAQAAAAAAAADAAAAAAAACAAAAAABAAgAAAAAAQAIAAAAAAIACAAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAgAIAAAAAAAACAAAAAACAAgAAAAAAgAGAAAAAAEABQAAAAAAAAUAAAAAAAADAAAAAAAAAwAAAAAAAAgAAAAAAQAIAAAAAAMACAAAAAABAAgAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAEACAAAAAABAAgAAAAAAwAIAAAAAAAABgAAAAACAAUAAAAAAQAFAAAAAAEAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAYAAAAAAwACAAAAAAAAAQAAAAABAAgAAAAAAwAIAAAAAAAABgAAAAACAAYAAAAAAwAFAAAAAAAABQAAAAADAAUAAAAAAgAFAAAAAAIAAwAAAAAAAAMAAAAAAAAGAAAAAAMABgAAAAABAAYAAAAAAgAGAAAAAAMABAAAAAAAAAEAAAAAAQAIAAAAAAEABgAAAAAAAAYAAAAAAAADAAAAAAAABQAAAAABAAUAAAAAAAAFAAAAAAAABQAAAAADAAUAAAAAAAAGAAAAAAMABgAAAAABAAYAAAAAAgAEAAAAAAAABAAAAAAAAAQAAAAAAAABAAAAAAEAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAFAAAAAAAABQAAAAABAAUAAAAAAAAFAAAAAAEABQAAAAACAAUAAAAAAwAFAAAAAAMABQAAAAADAAUAAAAAAAAFAAAAAAIAAQAAAAABAAMAAAAAAAAJAAAAAAIACQAAAAABAAkAAAAAAAAJAAAAAAEAAwAAAAAAAAUAAAAAAQAFAAAAAAEABQAAAAACAAUAAAAAAQAFAAAAAAIABQAAAAAAAAUAAAAAAwAFAAAAAAIABQAAAAAAAAEAAAAAAAADAAAAAAAACQAAAAAAAAkAAAAAAwAJAAAAAAAACQAAAAABAAMAAAAAAAAFAAAAAAAABQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAFAAAAAAAABQAAAAADAAMAAAAAAAABAAAAAAMAAwAAAAAAAAkAAAAAAAAJAAAAAAMACQAAAAACAAkAAAAAAwADAAAAAAAABQAAAAACAAUAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAAAAAUAAAAAAgACAAAAAAAAAQAAAAACAA== + tiles: AQAAAAADAAEAAAAAAAABAAAAAAMAAQAAAAACAAEAAAAAAgABAAAAAAIAAQAAAAABAAEAAAAAAQABAAAAAAAAAQAAAAABAAEAAAAAAwABAAAAAAMAAQAAAAADAAEAAAAAAgAAAAAAAAMAAAAAAAADAAEAAAAAAAABAAAAAAEAAQAAAAACAAEAAAAAAAABAAAAAAIAAQAAAAABAAEAAAAAAgABAAAAAAEAAQAAAAACAAEAAAAAAQABAAAAAAEAAQAAAAAAAAEAAAAAAwABAAAAAAIAAAAAAAABAAAAAAAAAAAIAAAAAAIAAgAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAABAAUAAAAAAgADAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAABAAAAAAIAAQAAAAACAAAAAAAAAgAAAAAAAAIACAAAAAADAAgAAAAAAAADAAAAAAAAAwAAAAAAAAUAAAAAAwAFAAAAAAIAAwAAAAAAAAYAAAAAAQADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAEAAgAAAAAAAAEAAAAAAAABAAAAAAMAAQAAAAAAAAgAAAAAAgAIAAAAAAEACAAAAAABAAMAAAAAAAAFAAAAAAEABQAAAAADAAUAAAAAAQAGAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAAABgAAAAABAAYAAAAAAwACAAAAAAAAAQAAAAAAAAEAAAAAAgAIAAAAAAIACAAAAAABAAgAAAAAAQAFAAAAAAIABQAAAAADAAUAAAAAAgAGAAAAAAMABgAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAMABgAAAAACAAIAAAAAAAABAAAAAAAACAAAAAABAAgAAAAAAAAIAAAAAAMABQAAAAACAAUAAAAAAAAFAAAAAAAAAwAAAAAAAAMAAAAAAAAIAAAAAAAACAAAAAADAAgAAAAAAwAIAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAAAAAgAAAAAAQAIAAAAAAAACAAAAAADAAUAAAAAAgAFAAAAAAAABQAAAAACAAQAAAAAAAADAAAAAAAACAAAAAADAAgAAAAAAgAIAAAAAAEACAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAgAIAAAAAAAACAAAAAABAAgAAAAAAwAGAAAAAAIABQAAAAAAAAUAAAAAAgADAAAAAAAAAwAAAAAAAAgAAAAAAQAIAAAAAAEACAAAAAACAAgAAAAAAgADAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAEACAAAAAABAAgAAAAAAQAIAAAAAAMABgAAAAABAAUAAAAAAAAFAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAYAAAAAAAACAAAAAAAAAQAAAAACAAgAAAAAAgAIAAAAAAMABgAAAAAAAAYAAAAAAgAFAAAAAAIABQAAAAADAAUAAAAAAQAFAAAAAAIAAwAAAAAAAAMAAAAAAAAGAAAAAAAABgAAAAACAAYAAAAAAQAGAAAAAAEABAAAAAAAAAEAAAAAAQAIAAAAAAAABgAAAAACAAYAAAAAAAADAAAAAAAABQAAAAABAAUAAAAAAQAFAAAAAAIABQAAAAAAAAUAAAAAAQAGAAAAAAMABgAAAAABAAYAAAAAAQAEAAAAAAAABAAAAAAAAAQAAAAAAAABAAAAAAIAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAFAAAAAAEABQAAAAADAAUAAAAAAAAFAAAAAAEABQAAAAAAAAUAAAAAAwAFAAAAAAAABQAAAAACAAUAAAAAAgAFAAAAAAEAAQAAAAAAAAMAAAAAAAAJAAAAAAMACQAAAAAAAAkAAAAAAgAJAAAAAAIAAwAAAAAAAAUAAAAAAAAFAAAAAAMABQAAAAADAAUAAAAAAwAFAAAAAAMABQAAAAABAAUAAAAAAwAFAAAAAAEABQAAAAACAAEAAAAAAAADAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAADAAMAAAAAAAAFAAAAAAAABQAAAAACAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAFAAAAAAMABQAAAAABAAMAAAAAAAABAAAAAAEAAwAAAAAAAAkAAAAAAAAJAAAAAAEACQAAAAAAAAkAAAAAAQADAAAAAAAABQAAAAAAAAUAAAAAAQADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAADAAUAAAAAAwACAAAAAAAAAQAAAAABAA== version: 7 0,-1: ind: 0,-1 - tiles: AQAAAAABAAEAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAYAAAAAAgAGAAAAAAEABgAAAAADAAQAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAABAAEAAAAAAQABAAAAAAMAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAABAAUAAAAAAwABAAAAAAIAAQAAAAACAAUAAAAAAAAFAAAAAAMABQAAAAAAAAUAAAAAAQADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAABAAUAAAAAAwAFAAAAAAMAAQAAAAAAAAEAAAAAAQAFAAAAAAMABQAAAAABAAUAAAAAAwAFAAAAAAIABQAAAAAAAAUAAAAAAgAFAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAABAAUAAAAAAgAFAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAIAAwAAAAAAAAMAAAAAAAAFAAAAAAIABQAAAAADAAUAAAAAAAAFAAAAAAMABQAAAAAAAAUAAAAAAQAFAAAAAAMABQAAAAACAAUAAAAAAAAFAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAIAAQAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAAAAAUAAAAAAwAFAAAAAAAABQAAAAADAAUAAAAAAgAFAAAAAAEAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAADAAEAAAAAAQADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAADAAUAAAAAAAAFAAAAAAMABQAAAAACAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAwABAAAAAAIAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAFAAAAAAIABQAAAAAAAAUAAAAAAgADAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAMAAQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAKAAAAAAIACgAAAAACAAoAAAAAAAADAAAAAAAAAwAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAADAAEAAAAAAgADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAACgAAAAAAAAoAAAAAAwAKAAAAAAMAAwAAAAAAAAMAAAAAAAAFAAAAAAIABQAAAAABAAUAAAAAAQADAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAIAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAoAAAAAAwAKAAAAAAMACgAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAAAAAUAAAAAAQAFAAAAAAEAAwAAAAAAAAMAAAAAAAABAAAAAAMAAQAAAAAAAAIAAAAAAAAGAAAAAAEABgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAFAAAAAAAABQAAAAABAAUAAAAAAAADAAAAAAAAAQAAAAACAAEAAAAAAwABAAAAAAMAAgAAAAAAAAYAAAAAAgAGAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAACAAUAAAAAAwAFAAAAAAAAAwAAAAAAAAEAAAAAAwABAAAAAAAAAQAAAAAAAAEAAAAAAgACAAAAAAAABgAAAAAAAAYAAAAAAQADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAUAAAAAAQAFAAAAAAAABQAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAABAAAAAAEAAQAAAAADAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAABAAUAAAAAAQACAAAAAAAAAAAAAAADAAAAAAAAAAAAAAAAAAIAAQAAAAAAAAEAAAAAAAABAAAAAAMAAQAAAAADAAEAAAAAAgABAAAAAAEAAQAAAAABAAEAAAAAAQABAAAAAAIAAQAAAAAAAAEAAAAAAQABAAAAAAEAAQAAAAABAA== + tiles: AQAAAAACAAEAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAYAAAAAAgAGAAAAAAEABgAAAAACAAQAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAABAAEAAAAAAAABAAAAAAIAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAABAAUAAAAAAAABAAAAAAEAAQAAAAAAAAUAAAAAAgAFAAAAAAMABQAAAAAAAAUAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAACAAUAAAAAAAAFAAAAAAAAAQAAAAAAAAEAAAAAAAAFAAAAAAMABQAAAAACAAUAAAAAAQAFAAAAAAMABQAAAAADAAUAAAAAAgAFAAAAAAIAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAABAAUAAAAAAwAFAAAAAAEAAwAAAAAAAAEAAAAAAwABAAAAAAIAAwAAAAAAAAMAAAAAAAAFAAAAAAMABQAAAAABAAUAAAAAAwAFAAAAAAMABQAAAAABAAUAAAAAAAAFAAAAAAAABQAAAAADAAUAAAAAAgAFAAAAAAIAAwAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAABAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAADAAUAAAAAAAAFAAAAAAMABQAAAAADAAUAAAAAAgAFAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAABAAEAAAAAAgADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAACAAUAAAAAAQAFAAAAAAIABQAAAAABAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAgABAAAAAAEAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAFAAAAAAAABQAAAAACAAUAAAAAAQADAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAKAAAAAAEACgAAAAAAAAoAAAAAAAADAAAAAAAAAwAAAAAAAAUAAAAAAwAFAAAAAAAABQAAAAADAAMAAAAAAAADAAAAAAAAAQAAAAAAAAEAAAAAAgADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAEAAwAAAAAAAAMAAAAAAAAFAAAAAAAABQAAAAADAAUAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAQABAAAAAAIAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAoAAAAAAQAKAAAAAAAACgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAUAAAAAAgAFAAAAAAIAAwAAAAAAAAMAAAAAAAABAAAAAAIAAQAAAAADAAIAAAAAAAAGAAAAAAAABgAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAFAAAAAAIABQAAAAAAAAUAAAAAAwADAAAAAAAAAQAAAAACAAEAAAAAAwABAAAAAAEAAgAAAAAAAAYAAAAAAwAGAAAAAAIAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAACAAUAAAAAAQAFAAAAAAIAAwAAAAAAAAEAAAAAAwABAAAAAAMAAQAAAAAAAAEAAAAAAQACAAAAAAAABgAAAAADAAYAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAUAAAAAAgAFAAAAAAIABQAAAAACAAMAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAABAAAAAAMAAQAAAAADAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAADAAUAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAMAAQAAAAAAAAEAAAAAAQABAAAAAAIAAQAAAAACAAEAAAAAAwABAAAAAAAAAQAAAAACAAEAAAAAAAABAAAAAAEAAQAAAAACAAEAAAAAAAABAAAAAAAAAQAAAAACAA== version: 7 -1,-1: ind: -1,-1 - tiles: BQAAAAADAAUAAAAAAgAFAAAAAAAABQAAAAABAAUAAAAAAQAFAAAAAAMABQAAAAAAAAUAAAAAAwAFAAAAAAIABQAAAAACAAUAAAAAAgAFAAAAAAMABQAAAAACAAUAAAAAAQAFAAAAAAAAAQAAAAACAAUAAAAAAAAEAAAAAAAACgAAAAAAAAoAAAAAAAAEAAAAAAAABQAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAAABgAAAAACAAYAAAAAAgADAAAAAAAAAgAAAAAAAAEAAAAAAQAFAAAAAAIACgAAAAACAAoAAAAAAgAKAAAAAAMAAwAAAAAAAAUAAAAAAwADAAAAAAAABAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAQAAAAAAAAGAAAAAAEAAwAAAAAAAAMAAAAAAAABAAAAAAMABQAAAAABAAoAAAAAAgAKAAAAAAEAAwAAAAAAAAMAAAAAAAAFAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAADAAUAAAAAAQAEAAAAAAAACgAAAAADAAMAAAAAAAAEAAAAAAAABQAAAAACAAUAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAAFAAAAAAAABQAAAAADAAUAAAAAAAAFAAAAAAAABQAAAAACAAUAAAAAAAADAAAAAAAABAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAQAAAAAAAAFAAAAAAAABQAAAAACAAUAAAAAAQABAAAAAAEABQAAAAAAAAYAAAAAAAAGAAAAAAIAAwAAAAAAAAUAAAAAAgADAAAAAAAAAwAAAAAAAAYAAAAAAAAGAAAAAAMAAwAAAAAAAAUAAAAAAwAFAAAAAAEABQAAAAABAAUAAAAAAQAFAAAAAAMAAQAAAAABAAUAAAAAAgAGAAAAAAMABAAAAAAAAAMAAAAAAAADAAAAAAAABAAAAAAAAAYAAAAAAwAGAAAAAAIAAwAAAAAAAAUAAAAAAgAFAAAAAAEABQAAAAABAAUAAAAAAAAFAAAAAAMABQAAAAAAAAEAAAAAAgAFAAAAAAEAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAEABgAAAAABAAUAAAAAAAAFAAAAAAAABQAAAAABAAUAAAAAAAAFAAAAAAIAAwAAAAAAAAMAAAAAAAABAAAAAAMABQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAUAAAAAAwAFAAAAAAMABQAAAAACAAUAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAAAAAUAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAUAAAAAAwAFAAAAAAEABQAAAAACAAUAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAAFAAAAAAAAAwAAAAAAAAQAAAAAAAADAAAAAAAAAwAAAAAAAAQAAAAAAAAFAAAAAAMABQAAAAABAAUAAAAAAAADAAAAAAAAAwAAAAAAAAYAAAAAAQAGAAAAAAMABgAAAAADAAIAAAAAAAABAAAAAAIABQAAAAADAAMAAAAAAAAGAAAAAAMABgAAAAAAAAMAAAAAAAAFAAAAAAAABQAAAAADAAUAAAAAAgAFAAAAAAAAAwAAAAAAAAYAAAAAAQAGAAAAAAAABgAAAAABAAIAAAAAAAABAAAAAAIAAQAAAAAAAAUAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAADAAUAAAAAAAAFAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABgAAAAABAAIAAAAAAAABAAAAAAIAAQAAAAADAAEAAAAAAwAFAAAAAAIAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAUAAAAAAwAFAAAAAAMABQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAABAAAAAAEAAQAAAAABAAAAAAAAAgAAAAAAAAAAAQAAAAACAAEAAAAAAAABAAAAAAMAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAADAAEAAAAAAwABAAAAAAIAAQAAAAACAAEAAAAAAgABAAAAAAIAAQAAAAACAAEAAAAAAwAAAAAAAAIAAAAAAAABAA== + tiles: BQAAAAADAAUAAAAAAQAFAAAAAAEABQAAAAAAAAUAAAAAAwAFAAAAAAAABQAAAAACAAUAAAAAAwAFAAAAAAAABQAAAAACAAUAAAAAAAAFAAAAAAEABQAAAAAAAAUAAAAAAAAFAAAAAAIAAQAAAAADAAUAAAAAAwAEAAAAAAAACgAAAAABAAoAAAAAAwAEAAAAAAAABQAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAMABgAAAAABAAYAAAAAAQADAAAAAAAAAgAAAAAAAAEAAAAAAwAFAAAAAAIACgAAAAABAAoAAAAAAQAKAAAAAAAAAwAAAAAAAAUAAAAAAgADAAAAAAAABAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAQAAAAAAAAGAAAAAAIAAwAAAAAAAAMAAAAAAAABAAAAAAMABQAAAAABAAoAAAAAAgAKAAAAAAIAAwAAAAAAAAMAAAAAAAAFAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAAAAAUAAAAAAAAEAAAAAAAACgAAAAADAAMAAAAAAAAEAAAAAAAABQAAAAAAAAUAAAAAAQADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAgAFAAAAAAAABQAAAAAAAAUAAAAAAwAFAAAAAAEABQAAAAAAAAUAAAAAAQADAAAAAAAABAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAQAAAAAAAAFAAAAAAIABQAAAAADAAUAAAAAAwABAAAAAAEABQAAAAACAAYAAAAAAAAGAAAAAAEAAwAAAAAAAAUAAAAAAAADAAAAAAAAAwAAAAAAAAYAAAAAAgAGAAAAAAIAAwAAAAAAAAUAAAAAAQAFAAAAAAAABQAAAAAAAAUAAAAAAgAFAAAAAAEAAQAAAAAAAAUAAAAAAwAGAAAAAAEABAAAAAAAAAMAAAAAAAADAAAAAAAABAAAAAAAAAYAAAAAAgAGAAAAAAEAAwAAAAAAAAUAAAAAAQAFAAAAAAIABQAAAAADAAUAAAAAAgAFAAAAAAIABQAAAAACAAEAAAAAAwAFAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAIABgAAAAACAAUAAAAAAAAFAAAAAAAABQAAAAACAAUAAAAAAAAFAAAAAAIAAwAAAAAAAAMAAAAAAAABAAAAAAMABQAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAUAAAAAAgAFAAAAAAIABQAAAAAAAAUAAAAAAgADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAACAAUAAAAAAQADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAUAAAAAAgAFAAAAAAMABQAAAAADAAUAAAAAAQADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAgAFAAAAAAIAAwAAAAAAAAQAAAAAAAADAAAAAAAAAwAAAAAAAAQAAAAAAAAFAAAAAAIABQAAAAADAAUAAAAAAgADAAAAAAAAAwAAAAAAAAYAAAAAAgAGAAAAAAIABgAAAAABAAIAAAAAAAABAAAAAAEABQAAAAABAAMAAAAAAAAGAAAAAAEABgAAAAADAAMAAAAAAAAFAAAAAAEABQAAAAACAAUAAAAAAQAFAAAAAAAAAwAAAAAAAAYAAAAAAwAGAAAAAAEABgAAAAACAAIAAAAAAAABAAAAAAEAAQAAAAACAAUAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAAAAAUAAAAAAgAFAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAAABgAAAAACAAIAAAAAAAABAAAAAAMAAQAAAAAAAAEAAAAAAgAFAAAAAAEAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAUAAAAAAgAFAAAAAAAABQAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAABAAAAAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAwABAAAAAAIAAQAAAAACAAEAAAAAAAABAAAAAAEAAQAAAAACAAEAAAAAAQABAAAAAAEAAQAAAAABAAEAAAAAAgABAAAAAAIAAQAAAAADAAEAAAAAAwAAAAAAAAEAAAAAAAACAA== version: 7 -1,1: ind: -1,1 - tiles: BQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAADAAUAAAAAAAAFAAAAAAAABQAAAAADAAUAAAAAAQAFAAAAAAIABQAAAAADAAUAAAAAAAADAAAAAAAAAQAAAAADAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAADAAUAAAAAAgAFAAAAAAMABQAAAAAAAAUAAAAAAwAFAAAAAAEABQAAAAABAAUAAAAAAgAFAAAAAAEAAwAAAAAAAAEAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAAgAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAACAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAACAAAAAAAAEQAAAAADAAIAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAgAAAAAAABEAAAAAAgALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAABAAAAAAAQARAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAACAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAACAAAAAAAAEQAAAAACAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAAAMAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAMADAAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACAAwAAAAAAQACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAwAMAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEADAAAAAACAAIAAAAAAAAMAAAAAAAADAAAAAADAAwAAAAAAAACAAAAAAAADAAAAAABAAwAAAAAAQAMAAAAAAEADAAAAAADAAwAAAAAAQAMAAAAAAAADAAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACAA== + tiles: BQAAAAAAAAUAAAAAAQAFAAAAAAIABQAAAAACAAUAAAAAAwAFAAAAAAEABQAAAAABAAUAAAAAAQAFAAAAAAMABQAAAAAAAAUAAAAAAgAFAAAAAAAABQAAAAABAAUAAAAAAAADAAAAAAAAAQAAAAADAAUAAAAAAQAFAAAAAAEABQAAAAABAAUAAAAAAQAFAAAAAAMABQAAAAACAAUAAAAAAgAFAAAAAAMABQAAAAACAAUAAAAAAwAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAIAAwAAAAAAAAEAAAAAAQACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAAgAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAACAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAACAAAAAAAAEQAAAAADAAIAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAgAAAAAAABEAAAAAAwALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAABAAAAAAAgARAAAAAAIACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAACAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAACAAAAAAAAEQAAAAABAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAQAMAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAEADAAAAAACAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAABAAwAAAAAAgACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQAMAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIADAAAAAAAAAIAAAAAAAAMAAAAAAMADAAAAAACAAwAAAAAAwACAAAAAAAADAAAAAABAAwAAAAAAAAMAAAAAAMADAAAAAACAAwAAAAAAgAMAAAAAAEADAAAAAACAAIAAAAAAAARAAAAAAIAEQAAAAACAA== version: 7 -2,-1: ind: -2,-1 - tiles: EgAAAAAAABIAAAAAAAASAAAAAAIAEgAAAAACABIAAAAAAwASAAAAAAIAEgAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAABIAAAAAAgASAAAAAAEAEgAAAAAAABIAAAAAAAASAAAAAAIAEgAAAAAAABIAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABYAAAAAAAAWAAAAAAUABgAAAAABAAMAAAAAAAACAAAAAAAAAgAAAAAAABIAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAASAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAWAAAAAAUAFgAAAAAEAAYAAAAAAgADAAAAAAAAEgAAAAAAAAIAAAAAAAASAAAAAAEAEgAAAAACAAIAAAAAAAASAAAAAAEAEgAAAAAAABIAAAAAAwACAAAAAAAADwAAAAAAAA8AAAAAAAAVAAAAAAAAFgAAAAADABYAAAAAAAAGAAAAAAIAAwAAAAAAABIAAAAAAwACAAAAAAAAEgAAAAAAABIAAAAAAAACAAAAAAAAEgAAAAADABIAAAAAAAASAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABYAAAAAAwAWAAAAAAQABgAAAAABAAMAAAAAAAASAAAAAAIAAgAAAAAAABIAAAAAAwASAAAAAAAAAgAAAAAAABIAAAAAAgASAAAAAAIAEgAAAAACAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAwAAAAAAABMAAAAAAAARAAAAAAMAEwAAAAAAABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAFQAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAMAAAAAAAATAAAAAAAAEQAAAAACABMAAAAAAAARAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAADAAAAAAAAEwAAAAAAABMAAAAAAAATAAAAAAAAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAwAAAAAAABMAAAAAAAAUAAAAAAEAEwAAAAAAABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAATAAAAAAAAEQAAAAADABMAAAAAAAARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADAAAAAABAAwAAAAAAwAMAAAAAAAADAAAAAABAAIAAAAAAAADAAAAAAAAEwAAAAAAABEAAAAAAQATAAAAAAAAEQAAAAADAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAwAAAAAAQAMAAAAAAIADAAAAAACAAwAAAAAAAACAAAAAAAAAwAAAAAAABAAAAAAAQACAAAAAAAAEAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAMAAAAAAIADAAAAAADAAwAAAAAAQAMAAAAAAEAAgAAAAAAAAMAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAQARAAAAAAIAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAADABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAAQAAAAAAIAAgAAAAAAAAIAAAAAAAADAAAAAAAAEQAAAAAAABEAAAAAAgARAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAMAEQAAAAADABEAAAAAAQARAAAAAAEAEQAAAAACABEAAAAAAgARAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAAAAQAAAAADAA== + tiles: EgAAAAABABIAAAAAAQASAAAAAAEAEgAAAAAAABIAAAAAAQASAAAAAAMAEgAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAABIAAAAAAwASAAAAAAMAEgAAAAAAABIAAAAAAAASAAAAAAIAEgAAAAADABIAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABYAAAAABQAWAAAAAAIABgAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAABIAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAASAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAWAAAAAAIAFgAAAAAEAAYAAAAAAAADAAAAAAAAEgAAAAADAAIAAAAAAAASAAAAAAAAEgAAAAACAAIAAAAAAAASAAAAAAMAEgAAAAABABIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAVAAAAAAAAFgAAAAAAABYAAAAABQAGAAAAAAEAAwAAAAAAABIAAAAAAAACAAAAAAAAEgAAAAADABIAAAAAAwACAAAAAAAAEgAAAAAAABIAAAAAAAASAAAAAAIAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABYAAAAAAgAWAAAAAAQABgAAAAAAAAMAAAAAAAASAAAAAAEAAgAAAAAAABIAAAAAAgASAAAAAAEAAgAAAAAAABIAAAAAAQASAAAAAAEAEgAAAAABAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAwAAAAAAABMAAAAAAAARAAAAAAIAEwAAAAAAABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAFQAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAMAAAAAAAATAAAAAAAAEQAAAAADABMAAAAAAAARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAADAAAAAAAAEwAAAAAAABMAAAAAAAATAAAAAAAAEQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAwAAAAAAABMAAAAAAAAUAAAAAAMAEwAAAAAAABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAATAAAAAAAAEQAAAAAAABMAAAAAAAARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADAAAAAACAAwAAAAAAgAMAAAAAAIADAAAAAAAAAIAAAAAAAADAAAAAAAAEwAAAAAAABEAAAAAAwATAAAAAAAAEQAAAAABAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAwAAAAAAQAMAAAAAAAADAAAAAADAAwAAAAAAQACAAAAAAAAAwAAAAAAABAAAAAAAQACAAAAAAAAEAAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAMAAAAAAMADAAAAAACAAwAAAAAAgAMAAAAAAEAAgAAAAAAAAMAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAQARAAAAAAIAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAABABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAAQAAAAAAIAAgAAAAAAAAIAAAAAAAADAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAAAEQAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAADABEAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAgARAAAAAAIAAQAAAAABAA== version: 7 -2,0: ind: -2,0 - tiles: EQAAAAADABEAAAAAAQARAAAAAAEAEQAAAAABABEAAAAAAgARAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAMAEQAAAAADABEAAAAAAwARAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAAAAQAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAACABEAAAAAAQARAAAAAAMAEQAAAAACABEAAAAAAgARAAAAAAEAEQAAAAADABEAAAAAAQARAAAAAAIAEQAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAACAAEAAAAAAwACAAAAAAAAAgAAAAAAABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAQAAAAAAMAAgAAAAAAAAIAAAAAAAAIAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAMAEQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAgAAAAAAwAIAAAAAAMACAAAAAACAAgAAAAAAQACAAAAAAAACAAAAAADABEAAAAAAwARAAAAAAEAEQAAAAAAABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAIAAAAAAMACAAAAAAAAAgAAAAAAQAIAAAAAAIAFAAAAAABAAgAAAAAAwARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAADAAgAAAAAAwAIAAAAAAEACAAAAAAAABQAAAAAAgAIAAAAAAEAEQAAAAACABEAAAAAAgARAAAAAAIAEQAAAAADAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAwAIAAAAAAAACAAAAAAAAAgAAAAAAwAUAAAAAAMACAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAIACAAAAAAAAAgAAAAAAwAIAAAAAAIAFAAAAAAAAAgAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAABAAgAAAAAAQAIAAAAAAEACAAAAAACABQAAAAAAAAIAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAQAIAAAAAAIACAAAAAACAAgAAAAAAQAUAAAAAAAACAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAAACAAAAAABAAgAAAAAAQAIAAAAAAAAAgAAAAAAAAgAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAgAMAAAAAAMADAAAAAAAAAIAAAAAAAAIAAAAAAIACAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAEADAAAAAABAAwAAAAAAgACAAAAAAAACAAAAAAAAAgAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADAAAAAABAAwAAAAAAgAMAAAAAAEAAgAAAAAAAAgAAAAAAgAIAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAAAMAAAAAAMADAAAAAADAAIAAAAAAAAIAAAAAAEACAAAAAACAA== + tiles: EQAAAAADABEAAAAAAwARAAAAAAIAEQAAAAACABEAAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAgARAAAAAAMAEQAAAAABABEAAAAAAgARAAAAAAMAEQAAAAAAABEAAAAAAAARAAAAAAMAAQAAAAADABEAAAAAAwARAAAAAAIAEQAAAAACABEAAAAAAAARAAAAAAEAEQAAAAAAABEAAAAAAgARAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAEAEQAAAAACABEAAAAAAAARAAAAAAAAEQAAAAACAAEAAAAAAgACAAAAAAAAAgAAAAAAABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAAQAAAAAAIAAgAAAAAAAAIAAAAAAAAIAAAAAAIAEQAAAAACABEAAAAAAQARAAAAAAEAEQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAgAAAAAAQAIAAAAAAIACAAAAAABAAgAAAAAAgACAAAAAAAACAAAAAADABEAAAAAAwARAAAAAAMAEQAAAAABABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAIAAAAAAEACAAAAAAAAAgAAAAAAQAIAAAAAAIAFAAAAAADAAgAAAAAAQARAAAAAAEAEQAAAAAAABEAAAAAAgARAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAADAAgAAAAAAgAIAAAAAAEACAAAAAACABQAAAAAAwAIAAAAAAEAEQAAAAABABEAAAAAAgARAAAAAAIAEQAAAAABAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAABAAgAAAAAAgAUAAAAAAMACAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAIACAAAAAAAAAgAAAAAAwAIAAAAAAAAFAAAAAACAAgAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAACAAgAAAAAAAAIAAAAAAIACAAAAAADABQAAAAAAQAIAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAgAIAAAAAAAACAAAAAADAAgAAAAAAQAUAAAAAAMACAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAIACAAAAAABAAgAAAAAAAAIAAAAAAEAAgAAAAAAAAgAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAAAMAAAAAAMADAAAAAADAAIAAAAAAAAIAAAAAAAACAAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAIADAAAAAACAAwAAAAAAAACAAAAAAAACAAAAAACAAgAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADAAAAAADAAwAAAAAAgAMAAAAAAIAAgAAAAAAAAgAAAAAAAAIAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAADAAIAAAAAAAAIAAAAAAEACAAAAAAAAA== version: 7 -2,1: ind: -2,1 - tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAALAAAAAAAACwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADAAAAAABAAwAAAAAAQAMAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAgAMAAAAAAIADAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAABAAwAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAPAAAAAAAADAAAAAAAAAwAAAAAAQAMAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAgAMAAAAAAAADAAAAAABAA== + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAALAAAAAAAACwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADAAAAAAAAAwAAAAAAwAMAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAwAMAAAAAAIADAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAMADAAAAAADAAwAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAPAAAAAAAADAAAAAADAAwAAAAAAAAMAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAQAMAAAAAAAADAAAAAADAA== version: 7 0,1: ind: 0,1 - tiles: AQAAAAAAAAEAAAAAAgADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABgAAAAAAAAYAAAAAAgAGAAAAAAIABgAAAAAAAAYAAAAAAAAGAAAAAAMABgAAAAACAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAQABAAAAAAIAAwAAAAAAAAYAAAAAAgAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAMABgAAAAACAAYAAAAAAQAGAAAAAAAABgAAAAADAAYAAAAAAgAGAAAAAAMABgAAAAADAAYAAAAAAgARAAAAAAEAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAHAAAAAAIABwAAAAABAAcAAAAAAwAHAAAAAAIAEQAAAAACABEAAAAAAwAUAAAAAAMAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAAAFAAAAAADABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAAgAAAAAAABkAAAAAAQAZAAAAAAIAGQAAAAADABkAAAAAAgARAAAAAAEAEQAAAAACABQAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABQAAAAAAAAZAAAAAAMAGQAAAAABABkAAAAAAQAZAAAAAAAAEQAAAAAAABEAAAAAAQACAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAUAAAAAAEAGQAAAAADABkAAAAAAQAZAAAAAAMAGQAAAAABABEAAAAAAQARAAAAAAMAEQAAAAABABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAAgAAAAAAABkAAAAAAwAZAAAAAAEAGQAAAAABABkAAAAAAwARAAAAAAAAEQAAAAADAAIAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAABAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAQACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAABEAAAAAAQARAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAARAAAAAAMAEQAAAAADAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAAAEQAAAAACABEAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAMAAAAAAIADAAAAAACAAwAAAAAAwAMAAAAAAMAEQAAAAAAABEAAAAAAgARAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAABABEAAAAAAwARAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAMAEQAAAAADAA== + tiles: AQAAAAACAAEAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABgAAAAAAAAYAAAAAAQAGAAAAAAIABgAAAAAAAAYAAAAAAQAGAAAAAAAABgAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAwABAAAAAAIAAwAAAAAAAAYAAAAAAgAGAAAAAAEABgAAAAADAAYAAAAAAQAGAAAAAAEABgAAAAAAAAYAAAAAAAAGAAAAAAIABgAAAAADAAYAAAAAAgAGAAAAAAEABgAAAAAAAAYAAAAAAQARAAAAAAMAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAHAAAAAAIABwAAAAAAAAcAAAAAAgAHAAAAAAAAEQAAAAADABEAAAAAAgAUAAAAAAEAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAAAFAAAAAABABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAAgAAAAAAABkAAAAAAgAZAAAAAAAAGQAAAAAAABkAAAAAAAARAAAAAAMAEQAAAAABABQAAAAAAwAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABQAAAAAAwAZAAAAAAAAGQAAAAACABkAAAAAAwAZAAAAAAIAEQAAAAABABEAAAAAAQACAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAUAAAAAAIAGQAAAAABABkAAAAAAgAZAAAAAAIAGQAAAAADABEAAAAAAQARAAAAAAMAEQAAAAADABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAAgAAAAAAABkAAAAAAwAZAAAAAAIAGQAAAAABABkAAAAAAAARAAAAAAIAEQAAAAABAAIAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAABEAAAAAAwARAAAAAAIAEQAAAAABAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAgACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAIADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAABEAAAAAAwARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAARAAAAAAAAEQAAAAABAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAADABEAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAMAAAAAAEADAAAAAABAAwAAAAAAgAMAAAAAAEAEQAAAAADABEAAAAAAAARAAAAAAIAAgAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAADABEAAAAAAQARAAAAAAIAAgAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAA== version: 7 1,1: ind: 1,1 - tiles: BgAAAAADAAYAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAAAABQAAAAAAgAUAAAAAAEAFAAAAAADABQAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAIAFAAAAAAAAAYAAAAAAgAGAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAABABQAAAAAAAAUAAAAAAMAFAAAAAACABQAAAAAAgAUAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAHAAAAAABABwAAAAAAwACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAQAUAAAAAAIAFAAAAAACABQAAAAAAQAUAAAAAAEAFAAAAAACAAIAAAAAAAAcAAAAAAMAHAAAAAABABwAAAAAAAAcAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHAAAAAABAAwAAAAAAAAMAAAAAAMADAAAAAACAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABAAAAAAAAAQAAAAAAAAAgAAAAAAABwAAAAAAwAMAAAAAAIADAAAAAABAAwAAAAAAQACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEAAAAAACAAIAAAAAAAAcAAAAAAMADAAAAAAAAAwAAAAAAgAMAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAaAAAAAAAAAgAAAAAAAAIAAAAAAAAaAAAAAAAAEAAAAAAAABAAAAAAAQACAAAAAAAAHAAAAAACABwAAAAAAgAcAAAAAAAAHAAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABAAAAAAAAAQAAAAAAEAAgAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAGwAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAwAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAEQAAAAAAABEAAAAAAgARAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAEAEQAAAAACABEAAAAAAAARAAAAAAIAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAEAEQAAAAABABEAAAAAAwAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAZAAAAAAIAGQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAIADAAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAIAEQAAAAABABEAAAAAAQARAAAAAAIAEQAAAAAAAAIAAAAAAAAVAAAAAAAAEQAAAAACABEAAAAAAgARAAAAAAIAEQAAAAADAAIAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAQARAAAAAAEAEQAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAADABEAAAAAAwACAAAAAAAAFQAAAAAAAA== + tiles: BgAAAAADAAYAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAADABQAAAAAAgAUAAAAAAIAFAAAAAACABQAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAgAUAAAAAAIAFAAAAAAAAAYAAAAAAQAGAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAADABQAAAAAAgAUAAAAAAEAFAAAAAAAABQAAAAAAwAUAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAHAAAAAADABwAAAAAAgACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAwAUAAAAAAEAFAAAAAACABQAAAAAAwAUAAAAAAAAFAAAAAACAAIAAAAAAAAcAAAAAAIAHAAAAAADABwAAAAAAwAcAAAAAAIAAgAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHAAAAAACAAwAAAAAAQAMAAAAAAEADAAAAAACAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABAAAAAAAgAQAAAAAAMAAgAAAAAAABwAAAAAAgAMAAAAAAAADAAAAAAAAAwAAAAAAgACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEAAAAAAAAAIAAAAAAAAcAAAAAAEADAAAAAACAAwAAAAAAQAMAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAaAAAAAAAAAgAAAAAAAAIAAAAAAAAaAAAAAAAAEAAAAAACABAAAAAAAQACAAAAAAAAHAAAAAABABwAAAAAAAAcAAAAAAIAHAAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABAAAAAAAAAQAAAAAAAAAgAAAAAAABwAAAAAAgAcAAAAAAEAHAAAAAABABwAAAAAAQACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAGwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAgAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAADABEAAAAAAAARAAAAAAEAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAABABEAAAAAAAARAAAAAAAAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAQARAAAAAAIAEQAAAAABABEAAAAAAwAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAZAAAAAAAAGQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAABAAIAAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAIAEQAAAAABABEAAAAAAgARAAAAAAEAEQAAAAACABEAAAAAAwARAAAAAAAAEQAAAAADAAIAAAAAAAAVAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAMAEQAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAQARAAAAAAEAEQAAAAABABEAAAAAAAARAAAAAAEAEQAAAAAAABEAAAAAAAACAAAAAAAAFQAAAAAAAA== version: 7 1,0: ind: 1,0 - tiles: AQAAAAADAAEAAAAAAQARAAAAAAIAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAIAEQAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAEAEQAAAAAAAAEAAAAAAAABAAAAAAEAEQAAAAADABEAAAAAAgARAAAAAAIAEQAAAAABABEAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAwARAAAAAAEAEQAAAAABABEAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAgAUAAAAAAIAAwAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAIAAgAAAAAAABQAAAAAAwACAAAAAAAAFAAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAABABQAAAAAAQADAAAAAAAAAwAAAAAAAAIAAAAAAAAQAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAUAAAAAAMAAgAAAAAAABQAAAAAAAAUAAAAAAAAAwAAAAAAAAYAAAAAAwACAAAAAAAAEAAAAAAAABsAAAAAAAAUAAAAAAIAGwAAAAAAABsAAAAAAAAUAAAAAAIAFAAAAAABABQAAAAAAwAUAAAAAAIAFAAAAAABABQAAAAAAAAUAAAAAAEAFAAAAAACAAYAAAAAAwAGAAAAAAIAAgAAAAAAABQAAAAAAwAbAAAAAAAAFAAAAAAAABsAAAAAAAAbAAAAAAAAFAAAAAABABQAAAAAAQAUAAAAAAIAFAAAAAADABQAAAAAAgAUAAAAAAIAFAAAAAACABQAAAAAAwAGAAAAAAMABgAAAAACAAIAAAAAAAAQAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAUAAAAAAAAAgAAAAAAABQAAAAAAQAUAAAAAAAABgAAAAADAAYAAAAAAAACAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAEAFAAAAAABAAYAAAAAAgAGAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAADAAAAAAAABgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAAAABQAAAAAAQAUAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAABABQAAAAAAQAUAAAAAAEAAwAAAAAAAAYAAAAAAQAGAAAAAAMAAgAAAAAAAAIAAAAAAAAUAAAAAAIAFAAAAAADABQAAAAAAwAUAAAAAAEAFAAAAAADABQAAAAAAgACAAAAAAAAFAAAAAAAABQAAAAAAgAUAAAAAAMAFAAAAAADAAMAAAAAAAAGAAAAAAEABgAAAAABAAIAAAAAAAACAAAAAAAAFAAAAAADABQAAAAAAAAUAAAAAAIAFAAAAAACABQAAAAAAAAUAAAAAAMAFAAAAAAAABQAAAAAAQAUAAAAAAEAFAAAAAABABQAAAAAAQADAAAAAAAABgAAAAAAAAYAAAAAAwACAAAAAAAAAgAAAAAAABQAAAAAAgAUAAAAAAMAFAAAAAACABQAAAAAAwAUAAAAAAMAFAAAAAABABQAAAAAAQAUAAAAAAAAFAAAAAABABQAAAAAAgAUAAAAAAAAAwAAAAAAAAYAAAAAAAAGAAAAAAIAAgAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAABABQAAAAAAQAUAAAAAAMAFAAAAAACABQAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAQAUAAAAAAAAFAAAAAACAA== + tiles: AQAAAAAAAAEAAAAAAwARAAAAAAIAEQAAAAABABEAAAAAAQARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAIAEQAAAAACAAEAAAAAAAABAAAAAAEAEQAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAABABEAAAAAAwARAAAAAAMAEQAAAAADABEAAAAAAQARAAAAAAMAEQAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAQADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAwAUAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAIAAgAAAAAAABQAAAAAAAACAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAIAFAAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAABAAAAAAAwAQAAAAAAAAEAAAAAAAABAAAAAAAQAQAAAAAAEAEAAAAAACAB0AAAAAAQAdAAAAAAIAHQAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAACABQAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAAQAAAAAAAAGwAAAAACABsAAAAAAAAbAAAAAAEAGwAAAAAAABsAAAAAAAAdAAAAAAIAHQAAAAADAB0AAAAAAgAUAAAAAAEAAgAAAAAAABQAAAAAAAAUAAAAAAAAAwAAAAAAAAYAAAAAAwACAAAAAAAAEAAAAAACABsAAAAAAQAUAAAAAAMAGwAAAAADABsAAAAAAwAUAAAAAAEAFAAAAAABABQAAAAAAAAUAAAAAAEAFAAAAAACABQAAAAAAAAUAAAAAAMAFAAAAAACAAYAAAAAAwAGAAAAAAAAAgAAAAAAABQAAAAAAQAbAAAAAAAAFAAAAAABABsAAAAAAAAbAAAAAAIAFAAAAAABABQAAAAAAQAUAAAAAAIAFAAAAAABABQAAAAAAwAUAAAAAAAAFAAAAAABABQAAAAAAQAGAAAAAAAABgAAAAAAAAIAAAAAAAAQAAAAAAMAGwAAAAACABsAAAAAAAAbAAAAAAEAGwAAAAABABsAAAAAAwAdAAAAAAIAHQAAAAABAB0AAAAAAwAUAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAIABgAAAAACAAYAAAAAAwACAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAIAEAAAAAAAABAAAAAAAgAQAAAAAAMAHQAAAAABAB0AAAAAAgAdAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAABAAYAAAAAAAAGAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAgADAAAAAAAABgAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAIAFAAAAAAAABQAAAAAAQAUAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAABABQAAAAAAAAUAAAAAAMAAwAAAAAAAAYAAAAAAAAGAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAACABQAAAAAAAAUAAAAAAIAFAAAAAACABQAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAgAUAAAAAAIAFAAAAAABAAMAAAAAAAAGAAAAAAIABgAAAAABAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAMAFAAAAAADABQAAAAAAAAUAAAAAAMAFAAAAAABABQAAAAAAAAUAAAAAAEAFAAAAAABABQAAAAAAgADAAAAAAAABgAAAAACAAYAAAAAAwACAAAAAAAAAgAAAAAAABQAAAAAAwAUAAAAAAIAFAAAAAAAABQAAAAAAQAUAAAAAAMAFAAAAAADABQAAAAAAwAUAAAAAAAAFAAAAAAAABQAAAAAAwAUAAAAAAAAAwAAAAAAAAYAAAAAAAAGAAAAAAIAAgAAAAAAAAIAAAAAAAAUAAAAAAIAFAAAAAAAABQAAAAAAwAUAAAAAAIAFAAAAAAAABQAAAAAAwACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAADAA== version: 7 1,-1: ind: 1,-1 - tiles: BQAAAAADAAUAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAApAAAAAAAAKQAAAAAAAAUAAAAAAQADAAAAAAAACgAAAAABAAIAAAAAAAAUAAAAAAMAFAAAAAACABQAAAAAAgAUAAAAAAAAFAAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAHQAAAAAAACkAAAAAAAADAAAAAAAAAwAAAAAAAAoAAAAAAQACAAAAAAAAFAAAAAABABQAAAAAAgAUAAAAAAEAFAAAAAADABQAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB0AAAAAAAApAAAAAAAAAwAAAAAAAAMAAAAAAAAKAAAAAAIAAgAAAAAAABQAAAAAAAAUAAAAAAIAFAAAAAABABQAAAAAAwAUAAAAAAMADwAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAUAAAAAAAAEAAAAAAAAAMAAAAAAAADAAAAAAAACgAAAAADAAIAAAAAAAAUAAAAAAIAFAAAAAADABQAAAAAAgAUAAAAAAIAFAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAIAFAAAAAACABQAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAAwAAAAAAAAYAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAAAAAYAAAAAAgAGAAAAAAIAAgAAAAAAABQAAAAAAAAUAAAAAAEAFAAAAAAAABQAAAAAAgAUAAAAAAEAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAGAAAAAAMABgAAAAADAAIAAAAAAAAUAAAAAAAAFAAAAAACABQAAAAAAgAUAAAAAAAAFAAAAAADABQAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAABgAAAAADAAYAAAAAAgACAAAAAAAAFAAAAAACABQAAAAAAQAUAAAAAAMAFAAAAAADABQAAAAAAAAUAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAAAAAMAAAAAAAAGAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAABgAAAAABAAIAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAACAAAAAAAAEQAAAAACAAIAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAMAAgAAAAAAAAIAAAAAAAARAAAAAAAAAQAAAAACAAEAAAAAAwARAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAgARAAAAAAMAEQAAAAADABEAAAAAAgARAAAAAAEAEQAAAAACABEAAAAAAgARAAAAAAEAEQAAAAAAAA== + tiles: BQAAAAABAAUAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAApAAAAAAAAKQAAAAAAAAUAAAAAAwADAAAAAAAACgAAAAACAAIAAAAAAAAUAAAAAAIAFAAAAAADABQAAAAAAgAUAAAAAAIAFAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAHQAAAAABACkAAAAAAwADAAAAAAAAAwAAAAAAAAoAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAIAFAAAAAACABQAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB0AAAAAAgApAAAAAAEAAwAAAAAAAAMAAAAAAAAKAAAAAAMAAgAAAAAAABQAAAAAAAAUAAAAAAIAFAAAAAABABQAAAAAAAAUAAAAAAEADwAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAUAAAAAAEAEAAAAAABAAMAAAAAAAADAAAAAAAACgAAAAADAAIAAAAAAAAUAAAAAAIAFAAAAAADABQAAAAAAgAUAAAAAAIAFAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAFAAAAAACABQAAAAAAwADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAACABQAAAAAAwAUAAAAAAIAFAAAAAAAABQAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAQAUAAAAAAEAAwAAAAAAAAYAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAEAFAAAAAABAAYAAAAAAQAGAAAAAAIAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAQAUAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAFAAAAAACABQAAAAAAwAGAAAAAAIABgAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAADABQAAAAAAAAUAAAAAAMAFAAAAAACABQAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAMABgAAAAABAAYAAAAAAQACAAAAAAAAFAAAAAAAABQAAAAAAgAUAAAAAAIAFAAAAAAAABQAAAAAAwAUAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAADAAMAAAAAAAAGAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAABgAAAAACAAIAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABQAAAAAAQAUAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAACAAMAAAAAAAADAAAAAAAAAgAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAwADAAAAAAAAAwAAAAAAAAIAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAACAAAAAAAAEQAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAAQAAAAAAAAEAAAAAAgARAAAAAAIAEQAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAACABEAAAAAAgARAAAAAAMAEQAAAAADABEAAAAAAgARAAAAAAAAEQAAAAAAAA== version: 7 1,-2: ind: 1,-2 - tiles: DAAAAAADAAwAAAAAAAACAAAAAAAADAAAAAACAAwAAAAAAgACAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAADABsAAAAAAwAUAAAAAAEAFAAAAAACAAwAAAAAAQAMAAAAAAMAHAAAAAAAAAwAAAAAAQAMAAAAAAAAAgAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAwAMAAAAAAEADAAAAAADAAIAAAAAAAAMAAAAAAAADAAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAwAUAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAEAFAAAAAADAAIAAAAAAAAUAAAAAAAAFAAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAADABQAAAAAAwACAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAIAFAAAAAABABQAAAAAAQAUAAAAAAMAFAAAAAACABQAAAAAAAAUAAAAAAIAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAABABQAAAAAAQAUAAAAAAEAFAAAAAABABQAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAEAFAAAAAADABQAAAAAAAAUAAAAAAEAFAAAAAACABQAAAAAAAAUAAAAAAAAFAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAQAUAAAAAAEAFAAAAAABABQAAAAAAAAUAAAAAAIAFAAAAAACABQAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAEAFAAAAAACABQAAAAAAwAUAAAAAAMAFAAAAAAAABQAAAAAAwAUAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAAAAAIAAAAAAAAUAAAAAAIAFAAAAAAAABQAAAAAAAAUAAAAAAMAFAAAAAAAABQAAAAAAQAUAAAAAAEAFAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAAFAAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAADABQAAAAAAwAUAAAAAAMAFAAAAAADABQAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB0AAAAAAAApAAAAAAAABQAAAAACAAUAAAAAAwAUAAAAAAMAFAAAAAAAABQAAAAAAAAUAAAAAAEAFAAAAAABAAIAAAAAAAAUAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAdAAAAAAAAKQAAAAAAAA== + tiles: DAAAAAAAAAwAAAAAAQACAAAAAAAADAAAAAAAAAwAAAAAAgACAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAAIAAAAAAAAUAAAAAAEAFAAAAAACABsAAAAAAgAUAAAAAAAAFAAAAAADAAwAAAAAAQAMAAAAAAIAHAAAAAADAAwAAAAAAAAMAAAAAAEAAgAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAgACAAAAAAAAFAAAAAABABQAAAAAAwAMAAAAAAAADAAAAAAAAAIAAAAAAAAMAAAAAAMADAAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAwAUAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAABAAIAAAAAAAAUAAAAAAAAFAAAAAACAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAADABQAAAAAAgACAAAAAAAAFAAAAAAAABQAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAQAUAAAAAAIAFAAAAAABABQAAAAAAQAUAAAAAAEAFAAAAAACABQAAAAAAQAUAAAAAAMAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAIAAgAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAADABQAAAAAAQAUAAAAAAAAFAAAAAABABQAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAIAFAAAAAABABQAAAAAAwAUAAAAAAAAFAAAAAACABQAAAAAAwAUAAAAAAIAFAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAADABQAAAAAAwACAAAAAAAAFAAAAAADABQAAAAAAQAUAAAAAAIAFAAAAAABABQAAAAAAQAUAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAwAUAAAAAAAAAgAAAAAAABQAAAAAAwAUAAAAAAMAFAAAAAABABQAAAAAAgAUAAAAAAMAFAAAAAADABQAAAAAAAAUAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAADAAIAAAAAAAAUAAAAAAAAFAAAAAADABQAAAAAAwAUAAAAAAEAFAAAAAACABQAAAAAAAAUAAAAAAIAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAABABQAAAAAAQACAAAAAAAAFAAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAABABQAAAAAAQAUAAAAAAMAFAAAAAAAABQAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB0AAAAAAAApAAAAAAEABQAAAAACAAUAAAAAAwAUAAAAAAMAFAAAAAAAABQAAAAAAwAUAAAAAAAAFAAAAAACAAIAAAAAAAAUAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAdAAAAAAIAKQAAAAACAA== version: 7 0,-2: ind: 0,-2 - tiles: EQAAAAABABEAAAAAAAACAAAAAAAADgAAAAAAAAIAAAAAAAAeAAAAAAAAHgAAAAAAAAIAAAAAAAAeAAAAAAAAHgAAAAAAAAIAAAAAAAAOAAAAAAAAAgAAAAAAAAwAAAAAAAAMAAAAAAIADAAAAAABABEAAAAAAQARAAAAAAEAAgAAAAAAAA4AAAAAAAACAAAAAAAAHgAAAAAAAB4AAAAAAAACAAAAAAAAHgAAAAAAAB4AAAAAAAACAAAAAAAADgAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAABAAwAAAAAAwARAAAAAAIAEQAAAAABAAIAAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAAeAAAAAAAAAgAAAAAAAB4AAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAACAAAAAAAADAAAAAAAAAwAAAAAAQAMAAAAAAMAEQAAAAABABEAAAAAAQACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAEAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACAAIAAAAAAAAUAAAAAAIAFAAAAAACABQAAAAAAAAUAAAAAAEAFAAAAAABABQAAAAAAwAUAAAAAAAAFAAAAAAAABQAAAAAAQAUAAAAAAIAFAAAAAADABQAAAAAAwAUAAAAAAAAEQAAAAABABEAAAAAAAAUAAAAAAEAFAAAAAACABQAAAAAAQAUAAAAAAEAFAAAAAAAABQAAAAAAQAUAAAAAAIAFAAAAAACABQAAAAAAAAUAAAAAAEAFAAAAAADABQAAAAAAQAUAAAAAAAAFAAAAAADABEAAAAAAgARAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAgAUAAAAAAEAFAAAAAADABQAAAAAAwARAAAAAAAAEQAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAAAABQAAAAAAQACAAAAAAAADAAAAAAAAAwAAAAAAwAMAAAAAAMADAAAAAADAAIAAAAAAAAUAAAAAAIAFAAAAAADABQAAAAAAAAUAAAAAAAAEQAAAAAAABEAAAAAAwACAAAAAAAAFAAAAAACABQAAAAAAAAUAAAAAAEAAgAAAAAAAAwAAAAAAgAMAAAAAAMADAAAAAABAAwAAAAAAgAcAAAAAAIAFAAAAAACABQAAAAAAAAUAAAAAAMAFAAAAAADABEAAAAAAAARAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAIAAAAAAAAMAAAAAAIADAAAAAAAAAwAAAAAAQAMAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAKAAAAAAEACgAAAAADAAoAAAAAAAAKAAAAAAAAAQAAAAABAAEAAAAAAwADAAAAAAAAAwAAAAAAAAYAAAAAAgAGAAAAAAEABgAAAAAAAAYAAAAAAwAGAAAAAAAABgAAAAABAAYAAAAAAQADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAA== + tiles: EQAAAAABABEAAAAAAAACAAAAAAAADgAAAAAAAAIAAAAAAAAeAAAAAAAAHgAAAAAAAAIAAAAAAAAeAAAAAAAAHgAAAAAAAAIAAAAAAAAOAAAAAAAAAgAAAAAAAAwAAAAAAAAMAAAAAAMADAAAAAADABEAAAAAAAARAAAAAAIAAgAAAAAAAA4AAAAAAAACAAAAAAAAHgAAAAAAAB4AAAAAAAACAAAAAAAAHgAAAAAAAB4AAAAAAAACAAAAAAAADgAAAAAAAAIAAAAAAAAMAAAAAAEADAAAAAAAAAwAAAAAAwARAAAAAAMAEQAAAAABAAIAAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAAeAAAAAAAAAgAAAAAAAB4AAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAACAAAAAAAADAAAAAADAAwAAAAAAAAMAAAAAAAAEQAAAAAAABEAAAAAAgACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAAAAAIAAAAAAAAUAAAAAAIAFAAAAAACABQAAAAAAgAUAAAAAAEAFAAAAAABABQAAAAAAgAUAAAAAAMAFAAAAAADABQAAAAAAQAUAAAAAAAAFAAAAAAAABQAAAAAAQAUAAAAAAAAEQAAAAABABEAAAAAAgAUAAAAAAEAFAAAAAAAABQAAAAAAQAUAAAAAAEAFAAAAAAAABQAAAAAAQAUAAAAAAEAFAAAAAABABQAAAAAAAAUAAAAAAEAFAAAAAACABQAAAAAAAAUAAAAAAAAFAAAAAAAABEAAAAAAgARAAAAAAAAAgAAAAAAABQAAAAAAwAUAAAAAAIAFAAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAEAFAAAAAAAABQAAAAAAQARAAAAAAMAEQAAAAACAAIAAAAAAAAUAAAAAAMAFAAAAAAAABQAAAAAAAACAAAAAAAADAAAAAACAAwAAAAAAgAMAAAAAAAADAAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAABABQAAAAAAgAUAAAAAAIAEQAAAAABABEAAAAAAwACAAAAAAAAFAAAAAABABQAAAAAAwAUAAAAAAMAAgAAAAAAAAwAAAAAAQAMAAAAAAEADAAAAAADAAwAAAAAAgAcAAAAAAMAFAAAAAADABQAAAAAAAAUAAAAAAAAFAAAAAAAABEAAAAAAgARAAAAAAMAAgAAAAAAABQAAAAAAAAUAAAAAAIAFAAAAAABAAIAAAAAAAAMAAAAAAEADAAAAAAAAAwAAAAAAQAMAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAKAAAAAAEACgAAAAACAAoAAAAAAAAKAAAAAAMAAQAAAAADAAEAAAAAAwADAAAAAAAAAwAAAAAAAAYAAAAAAwAGAAAAAAEABgAAAAABAAYAAAAAAwAGAAAAAAIABgAAAAACAAYAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAA== version: 7 -1,-2: ind: -1,-2 - tiles: HwAAAAAAAB8AAAAAAQAfAAAAAAEAHwAAAAACAB8AAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAABAAIAAAAAAAAUAAAAAAEAFAAAAAABABQAAAAAAQAUAAAAAAIAFAAAAAADABQAAAAAAAAUAAAAAAMAAgAAAAAAABEAAAAAAQAfAAAAAAAAHwAAAAACAAIAAAAAAAAfAAAAAAEAHwAAAAACAB8AAAAAAwACAAAAAAAAFAAAAAAAABQAAAAAAgAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAMAFAAAAAAAABQAAAAAAwARAAAAAAMAHwAAAAABAB8AAAAAAQAfAAAAAAIAHwAAAAABAB8AAAAAAAAfAAAAAAMAFAAAAAACABQAAAAAAQAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAIAFAAAAAADABQAAAAAAwACAAAAAAAAEQAAAAABAB8AAAAAAQAfAAAAAAEAHwAAAAAAAB8AAAAAAAAfAAAAAAMAHwAAAAACAAIAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAUAAAAAAMAIgAAAAACACIAAAAAAgAiAAAAAAEAAgAAAAAAABEAAAAAAQAfAAAAAAIAHwAAAAAAAAIAAAAAAAAfAAAAAAIAHwAAAAACAB8AAAAAAAACAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAFAAAAAADACIAAAAAAQAiAAAAAAAAIgAAAAABAAIAAAAAAAARAAAAAAEAHwAAAAAAAB8AAAAAAQACAAAAAAAAHwAAAAAAAB8AAAAAAwAfAAAAAAMAAgAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAABQAAAAAAwAUAAAAAAEAFAAAAAADABQAAAAAAwACAAAAAAAAEQAAAAAAAB8AAAAAAQAfAAAAAAAAAgAAAAAAAAIAAAAAAAAfAAAAAAAAHwAAAAAAAAIAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAAgAAAAAAABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAACEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAACAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAEQAAAAAAABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAAVAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAAgAAAAAAACAAAAAAAQAgAAAAAAEAIAAAAAADACAAAAAAAQACAAAAAAAAFgAAAAACABYAAAAABQAWAAAAAAEAFgAAAAACAAIAAAAAAAAjAAAAAAAAIwAAAAAJACMAAAAAAAACAAAAAAAAEQAAAAACAAIAAAAAAAAgAAAAAAMAIAAAAAAAACAAAAAAAwAgAAAAAAEAAgAAAAAAABYAAAAABQAWAAAAAAEAFgAAAAACABYAAAAAAQACAAAAAAAAIwAAAAAAACMAAAAAAAAjAAAAAAAAAgAAAAAAABEAAAAAAgACAAAAAAAABgAAAAAAAAMAAAAAAAAGAAAAAAMABgAAAAADAAIAAAAAAAAWAAAAAAEAFgAAAAABABYAAAAAAgAWAAAAAAIAAgAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAAIAAAAAAAARAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAACAA== + tiles: HwAAAAADAB8AAAAAAgAfAAAAAAAAHwAAAAAAAB8AAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAADAAIAAAAAAAAUAAAAAAIAFAAAAAACABQAAAAAAwAUAAAAAAAAFAAAAAADABQAAAAAAwAUAAAAAAEAAgAAAAAAABEAAAAAAQAfAAAAAAIAHwAAAAABAAIAAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAQACAAAAAAAAFAAAAAADABQAAAAAAQAUAAAAAAEAFAAAAAABABQAAAAAAgAUAAAAAAMAFAAAAAADABQAAAAAAAARAAAAAAEAHwAAAAABAB8AAAAAAgAfAAAAAAIAHwAAAAABAB8AAAAAAQAfAAAAAAIAFAAAAAAAABQAAAAAAwAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAMAFAAAAAAAABQAAAAAAAACAAAAAAAAEQAAAAAAAB8AAAAAAwAfAAAAAAIAHwAAAAADAB8AAAAAAwAfAAAAAAIAHwAAAAABAAIAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAUAAAAAAAAIgAAAAAAACIAAAAAAQAiAAAAAAIAAgAAAAAAABEAAAAAAwAfAAAAAAAAHwAAAAAAAAIAAAAAAAAfAAAAAAAAHwAAAAABAB8AAAAAAAACAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAFAAAAAACACIAAAAAAgAiAAAAAAAAIgAAAAABAAIAAAAAAAARAAAAAAMAHwAAAAADAB8AAAAAAgACAAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAAAAgAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAABQAAAAAAAAUAAAAAAMAFAAAAAADABQAAAAAAgACAAAAAAAAEQAAAAAAAB8AAAAAAgAfAAAAAAMAAgAAAAAAAAIAAAAAAAAfAAAAAAIAHwAAAAADAAIAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAAgAAAAAAABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAACEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAACAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAEQAAAAABABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAVAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAAgAAAAAAACAAAAAAAgAgAAAAAAAAIAAAAAAAACAAAAAAAgACAAAAAAAAFgAAAAACABYAAAAABQAWAAAAAAUAFgAAAAADAAIAAAAAAAAjAAAAAAAAIwAAAAAAACMAAAAAAAACAAAAAAAAEQAAAAABAAIAAAAAAAAgAAAAAAEAIAAAAAADACAAAAAAAAAgAAAAAAIAAgAAAAAAABYAAAAAAAAWAAAAAAMAFgAAAAAFABYAAAAAAgACAAAAAAAAIwAAAAAAACMAAAAAAAAjAAAAAAAAAgAAAAAAABEAAAAAAQACAAAAAAAABgAAAAAAAAMAAAAAAAAGAAAAAAMABgAAAAACAAIAAAAAAAAWAAAAAAAAFgAAAAACABYAAAAABQAWAAAAAAUAAgAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAAIAAAAAAAARAAAAAAIAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAAAAA== version: 7 -2,-2: ind: -2,-2 - tiles: HwAAAAAAAB8AAAAAAwAfAAAAAAIAHwAAAAADAB8AAAAAAwAfAAAAAAIAHwAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAADAB8AAAAAAAAfAAAAAAEAHwAAAAABAB8AAAAAAgAfAAAAAAIAHwAAAAABAAIAAAAAAAAfAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB8AAAAAAQAfAAAAAAEAHwAAAAACAAIAAAAAAAAfAAAAAAIAHwAAAAADAB8AAAAAAwAfAAAAAAIAAgAAAAAAAB8AAAAAAgAfAAAAAAEAHwAAAAADAAIAAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAgAfAAAAAAEAHwAAAAABAB8AAAAAAwAfAAAAAAEAJQAAAAAAACUAAAAAAAAlAAAAAAAAHwAAAAADAB8AAAAAAgAfAAAAAAEAHwAAAAABAB8AAAAAAwAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAAAfAAAAAAEAHwAAAAABACUAAAAAAAAlAAAAAAAAJQAAAAAAAB8AAAAAAwAfAAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAEAHwAAAAADAB8AAAAAAwAfAAAAAAEAHwAAAAAAAB8AAAAAAAAfAAAAAAIAHwAAAAAAAB8AAAAAAgAlAAAAAAAAJQAAAAAAACUAAAAAAAAfAAAAAAAAAgAAAAAAAB8AAAAAAAAfAAAAAAIAHwAAAAACAAIAAAAAAAAfAAAAAAMAHwAAAAADAB8AAAAAAwAfAAAAAAIAHwAAAAABAB8AAAAAAwAfAAAAAAMAHwAAAAACAB8AAAAAAQAfAAAAAAEAHwAAAAABAAIAAAAAAAAfAAAAAAEAHwAAAAAAAB8AAAAAAQACAAAAAAAAHwAAAAACAB8AAAAAAgACAAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAIAAgAAAAAAABIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB8AAAAAAgAfAAAAAAMAAgAAAAAAAB8AAAAAAQAfAAAAAAEAHwAAAAABAAIAAAAAAAASAAAAAAEAEgAAAAACABIAAAAAAAASAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEgAAAAABABIAAAAAAAASAAAAAAIAEgAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAEgAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAASAAAAAAMAEgAAAAACABIAAAAAAQASAAAAAAAAAgAAAAAAABIAAAAAAAASAAAAAAMAEgAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEgAAAAADABIAAAAAAQASAAAAAAIAEgAAAAADAAIAAAAAAAASAAAAAAEAEgAAAAABABIAAAAAAgAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAYAAAAAAgAGAAAAAAIABgAAAAADABIAAAAAAwASAAAAAAAAEgAAAAAAABIAAAAAAAACAAAAAAAAEgAAAAABABIAAAAAAAASAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAFQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAYAAAAAAQASAAAAAAAAEgAAAAABABIAAAAAAQASAAAAAAEAAgAAAAAAAAIAAAAAAAASAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAGAAAAAAIAAwAAAAAAAAQAAAAAAAAEAAAAAAAAEgAAAAADABIAAAAAAgASAAAAAAMAEgAAAAABABIAAAAAAgASAAAAAAIAEgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABgAAAAAAAAMAAAAAAAAEAAAAAAAAAwAAAAAAAA== + tiles: HwAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAADAB8AAAAAAwAfAAAAAAAAHwAAAAABAB8AAAAAAwAfAAAAAAIAHwAAAAADAB8AAAAAAAAfAAAAAAMAHwAAAAAAAB8AAAAAAwAfAAAAAAAAHwAAAAACAAIAAAAAAAAfAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB8AAAAAAwAfAAAAAAMAHwAAAAAAAAIAAAAAAAAfAAAAAAAAHwAAAAADAB8AAAAAAAAfAAAAAAEAAgAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAABAAIAAAAAAAAfAAAAAAAAHwAAAAACAB8AAAAAAAAfAAAAAAMAHwAAAAACAB8AAAAAAwAfAAAAAAIAJQAAAAAAACUAAAAAAAAlAAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAAAHwAAAAACAB8AAAAAAQAfAAAAAAMAHwAAAAACAB8AAAAAAQAfAAAAAAIAHwAAAAACAB8AAAAAAgAfAAAAAAIAHwAAAAABACUAAAAAAAAlAAAAAAAAJQAAAAAAAB8AAAAAAAAfAAAAAAIAHwAAAAADAB8AAAAAAgAfAAAAAAEAHwAAAAABAB8AAAAAAgAfAAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAEAHwAAAAACAB8AAAAAAQAlAAAAAAAAJQAAAAAAACUAAAAAAAAfAAAAAAEAAgAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAAAAAIAAAAAAAAfAAAAAAAAHwAAAAADAB8AAAAAAwAfAAAAAAIAHwAAAAACAB8AAAAAAwAfAAAAAAIAHwAAAAACAB8AAAAAAAAfAAAAAAIAHwAAAAACAAIAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAwACAAAAAAAAHwAAAAADAB8AAAAAAQACAAAAAAAAHwAAAAADAB8AAAAAAgAfAAAAAAMAAgAAAAAAABIAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB8AAAAAAQAfAAAAAAMAAgAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAADAAIAAAAAAAASAAAAAAMAEgAAAAAAABIAAAAAAQASAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEgAAAAABABIAAAAAAgASAAAAAAMAEgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAEgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAASAAAAAAIAEgAAAAADABIAAAAAAQASAAAAAAIAAgAAAAAAABIAAAAAAwASAAAAAAEAEgAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEgAAAAABABIAAAAAAwASAAAAAAEAEgAAAAABAAIAAAAAAAASAAAAAAEAEgAAAAAAABIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAYAAAAAAwAGAAAAAAIABgAAAAAAABIAAAAAAwASAAAAAAIAEgAAAAABABIAAAAAAAACAAAAAAAAEgAAAAACABIAAAAAAgASAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAFQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAYAAAAAAgASAAAAAAMAEgAAAAACABIAAAAAAAASAAAAAAIAAgAAAAAAAAIAAAAAAAASAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAGAAAAAAIAAwAAAAAAAAQAAAAAAAAEAAAAAAAAEgAAAAABABIAAAAAAgASAAAAAAIAEgAAAAAAABIAAAAAAgASAAAAAAEAEgAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABgAAAAADAAMAAAAAAAAEAAAAAAAAAwAAAAAAAA== version: 7 -1,-3: ind: -1,-3 - tiles: FAAAAAACAAIAAAAAAAAfAAAAAAMAHwAAAAACAB8AAAAAAQAfAAAAAAAAAgAAAAAAABAAAAAAAwAlAAAAAAAAEAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABQAAAAAAQACAAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAAAHwAAAAABAAIAAAAAAAAQAAAAAAIAJQAAAAAAABAAAAAAAQAbAAAAAAMAEQAAAAABABEAAAAAAAARAAAAAAIAGwAAAAABABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEAAAAAABACUAAAAAAAAQAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAACAAIAAAAAAAARAAAAAAMAEAAAAAAAABAAAAAAAAAQAAAAAAEAEAAAAAAAABAAAAAAAQAQAAAAAAAAGwAAAAAAABAAAAAAAQAlAAAAAAAAEAAAAAACAAIAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAQAAAAAAAAEQAAAAACAAIAAAAAAAAQAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAQAAAAAAIAJQAAAAAAABAAAAAAAgARAAAAAAIAGgAAAAAAABoAAAAAAAAaAAAAAAAAEAAAAAADABEAAAAAAgAfAAAAAAIAHwAAAAACAB8AAAAAAgAfAAAAAAIAHwAAAAADAB8AAAAAAgACAAAAAAAAEAAAAAADABAAAAAAAwAQAAAAAAEAAgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABAAAAAAAAARAAAAAAMAIgAAAAABACIAAAAAAwAiAAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAEAAgAAAAAAABAAAAAAAQAQAAAAAAEAEAAAAAACAAIAAAAAAAAQAAAAAAEAEAAAAAACABAAAAAAAAACAAAAAAAAEQAAAAADACIAAAAAAgAiAAAAAAEAIgAAAAACAB8AAAAAAwAfAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQAiAAAAAAMAIgAAAAAAACIAAAAAAwAfAAAAAAAAHwAAAAADAAIAAAAAAAASAAAAAAAAEgAAAAABABIAAAAAAgASAAAAAAEAEgAAAAADABIAAAAAAgACAAAAAAAAEgAAAAAAABIAAAAAAgARAAAAAAIAHwAAAAACAB8AAAAAAQAfAAAAAAIAHwAAAAAAAB8AAAAAAAAfAAAAAAMAEgAAAAABABIAAAAAAQASAAAAAAAAEgAAAAAAABIAAAAAAQASAAAAAAEAAgAAAAAAABIAAAAAAgASAAAAAAEAEgAAAAACAB8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABIAAAAAAAASAAAAAAAAEgAAAAAAABIAAAAAAwASAAAAAAEAEgAAAAADAAIAAAAAAAASAAAAAAAAEgAAAAABABIAAAAAAwAfAAAAAAMAHwAAAAACAB8AAAAAAQAfAAAAAAEAHwAAAAAAABIAAAAAAgASAAAAAAIAEgAAAAACABIAAAAAAAASAAAAAAEAEgAAAAABABIAAAAAAAASAAAAAAEAEgAAAAADABIAAAAAAgASAAAAAAMAHwAAAAACAB8AAAAAAgAfAAAAAAMAHwAAAAAAAB8AAAAAAgASAAAAAAEAEgAAAAAAABIAAAAAAgASAAAAAAEAEgAAAAADABIAAAAAAgASAAAAAAAAEgAAAAADABIAAAAAAwASAAAAAAIAEgAAAAADACYAAAAAAAAmAAAAAAAAHwAAAAADAB8AAAAAAgAfAAAAAAEAAgAAAAAAABIAAAAAAAASAAAAAAEAEgAAAAAAABIAAAAAAQASAAAAAAIAEgAAAAADAAIAAAAAAAASAAAAAAEAEgAAAAADABIAAAAAAwAmAAAAAAAAJgAAAAAAAB8AAAAAAAAfAAAAAAMAHwAAAAADAAIAAAAAAAASAAAAAAMAEgAAAAADABIAAAAAAQASAAAAAAIAEgAAAAADABIAAAAAAwACAAAAAAAAEgAAAAAAABIAAAAAAQASAAAAAAIAHwAAAAABAB8AAAAAAgAfAAAAAAEAHwAAAAADAB8AAAAAAgASAAAAAAEAEgAAAAADABIAAAAAAAASAAAAAAEAEgAAAAAAABIAAAAAAAASAAAAAAIAAgAAAAAAABIAAAAAAgASAAAAAAIAEQAAAAACAA== + tiles: FAAAAAACAAIAAAAAAAAfAAAAAAMAHwAAAAADAB8AAAAAAgAfAAAAAAEAAgAAAAAAABAAAAAAAQAlAAAAAAAAEAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABQAAAAAAgACAAAAAAAAHwAAAAABAB8AAAAAAQAfAAAAAAIAHwAAAAABAAIAAAAAAAAQAAAAAAMAJQAAAAAAABAAAAAAAwAbAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAMAGwAAAAAAABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEAAAAAAAACUAAAAAAAAQAAAAAAIAAgAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAACAAIAAAAAAAARAAAAAAAAEAAAAAACABAAAAAAAwAQAAAAAAAAEAAAAAACABAAAAAAAwAQAAAAAAIAGwAAAAADABAAAAAAAAAlAAAAAAAAEAAAAAAAAAIAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAQAAAAAAEAEQAAAAABAAIAAAAAAAAQAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAQAAAAAAMAJQAAAAAAABAAAAAAAgARAAAAAAIAGgAAAAAAABoAAAAAAAAaAAAAAAAAEAAAAAACABEAAAAAAAAfAAAAAAIAHwAAAAAAAB8AAAAAAgAfAAAAAAIAHwAAAAACAB8AAAAAAwACAAAAAAAAEAAAAAADABAAAAAAAwAQAAAAAAAAAgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABAAAAAAAQARAAAAAAAAIgAAAAADACIAAAAAAwAiAAAAAAIAHwAAAAADAB8AAAAAAAAfAAAAAAEAAgAAAAAAABAAAAAAAwAQAAAAAAEAEAAAAAACAAIAAAAAAAAQAAAAAAEAEAAAAAABABAAAAAAAAACAAAAAAAAEQAAAAABACIAAAAAAAAiAAAAAAIAIgAAAAABAB8AAAAAAgAfAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgAiAAAAAAAAIgAAAAAAACIAAAAAAQAfAAAAAAEAHwAAAAACAAIAAAAAAAASAAAAAAAAEgAAAAAAABIAAAAAAwASAAAAAAMAEgAAAAADABIAAAAAAQACAAAAAAAAEgAAAAADABIAAAAAAAARAAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAgAfAAAAAAEAEgAAAAABABIAAAAAAwASAAAAAAEAEgAAAAAAABIAAAAAAgASAAAAAAEAAgAAAAAAABIAAAAAAAASAAAAAAEAEgAAAAADAB8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABIAAAAAAgASAAAAAAAAEgAAAAAAABIAAAAAAgASAAAAAAEAEgAAAAABAAIAAAAAAAASAAAAAAIAEgAAAAABABIAAAAAAQAfAAAAAAEAHwAAAAACAB8AAAAAAAAfAAAAAAIAHwAAAAAAABIAAAAAAgASAAAAAAEAEgAAAAAAABIAAAAAAwASAAAAAAEAEgAAAAACABIAAAAAAQASAAAAAAIAEgAAAAADABIAAAAAAQASAAAAAAEAHwAAAAACAB8AAAAAAQAfAAAAAAIAHwAAAAACAB8AAAAAAgASAAAAAAIAEgAAAAACABIAAAAAAwASAAAAAAMAEgAAAAABABIAAAAAAAASAAAAAAMAEgAAAAADABIAAAAAAgASAAAAAAEAEgAAAAACACYAAAAAAAAmAAAAAAAAHwAAAAADAB8AAAAAAgAfAAAAAAIAAgAAAAAAABIAAAAAAQASAAAAAAAAEgAAAAAAABIAAAAAAQASAAAAAAMAEgAAAAADAAIAAAAAAAASAAAAAAAAEgAAAAADABIAAAAAAwAmAAAAAAAAJgAAAAAAAB8AAAAAAgAfAAAAAAEAHwAAAAADAAIAAAAAAAASAAAAAAIAEgAAAAABABIAAAAAAQASAAAAAAAAEgAAAAACABIAAAAAAwACAAAAAAAAEgAAAAADABIAAAAAAAASAAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAAAHwAAAAADAB8AAAAAAQASAAAAAAEAEgAAAAABABIAAAAAAwASAAAAAAAAEgAAAAABABIAAAAAAQASAAAAAAMAAgAAAAAAABIAAAAAAgASAAAAAAAAEQAAAAAAAA== version: 7 0,-3: ind: 0,-3 - tiles: EQAAAAABABEAAAAAAwARAAAAAAAAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAAAABEAAAAAAAAZAAAAAAIAEQAAAAADABEAAAAAAAARAAAAAAIAEQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAADABEAAAAAAAARAAAAAAAAGQAAAAABABEAAAAAAAARAAAAAAIAEQAAAAABABEAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAwARAAAAAAEAEQAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAAAEQAAAAAAAAIAAAAAAAARAAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAMAHQAAAAACAB0AAAAAAAAdAAAAAAAAHQAAAAACABEAAAAAAQARAAAAAAEAEQAAAAADABEAAAAAAgARAAAAAAAAEQAAAAAAABEAAAAAAAACAAAAAAAAEQAAAAADAB0AAAAAAgAdAAAAAAEAHQAAAAABAB0AAAAAAgAdAAAAAAIAHQAAAAABAB0AAAAAAAARAAAAAAIAHQAAAAABAB0AAAAAAQARAAAAAAEAEQAAAAACABEAAAAAAAARAAAAAAAAAgAAAAAAABEAAAAAAQAdAAAAAAEAHQAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAAAAB0AAAAAAgAdAAAAAAMAEQAAAAADAB0AAAAAAgAdAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAAAEQAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAwAdAAAAAAMAHQAAAAACABEAAAAAAAARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAHQAAAAADAB0AAAAAAgARAAAAAAMAEQAAAAABAAIAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAABABEAAAAAAgARAAAAAAEAEQAAAAABABEAAAAAAAACAAAAAAAAEQAAAAADAB0AAAAAAQAdAAAAAAEAEQAAAAACABEAAAAAAQACAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAAARAAAAAAMAEQAAAAADABEAAAAAAwAdAAAAAAIAHQAAAAACABEAAAAAAAARAAAAAAMAAgAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAACAB0AAAAAAQAdAAAAAAIAHQAAAAADABEAAAAAAwARAAAAAAMAEQAAAAADAAIAAAAAAAARAAAAAAMAHQAAAAADAB0AAAAAAQARAAAAAAIAEQAAAAABAAIAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADAB0AAAAAAwAdAAAAAAEAEQAAAAABABEAAAAAAgACAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAIAHQAAAAADAB0AAAAAAQAdAAAAAAMAEQAAAAADABEAAAAAAAARAAAAAAMAAgAAAAAAABEAAAAAAQAdAAAAAAMAHQAAAAABABEAAAAAAQARAAAAAAEAAgAAAAAAABEAAAAAAgARAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAADABEAAAAAAgARAAAAAAMAEQAAAAACAAIAAAAAAAARAAAAAAIAHQAAAAADAB0AAAAAAgARAAAAAAAAEQAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAMAEQAAAAABABEAAAAAAwACAAAAAAAAEQAAAAADABEAAAAAAgARAAAAAAIAEQAAAAABABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAAeAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + tiles: EQAAAAACABEAAAAAAwARAAAAAAMAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAACABEAAAAAAgAZAAAAAAIAEQAAAAADABEAAAAAAwARAAAAAAEAEQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAQARAAAAAAEAGQAAAAABABEAAAAAAgARAAAAAAEAEQAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAQARAAAAAAMAEQAAAAADAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAIAEQAAAAACAAIAAAAAAAARAAAAAAEAHQAAAAACAB0AAAAAAgAdAAAAAAMAHQAAAAABAB0AAAAAAAAdAAAAAAEAHQAAAAAAABEAAAAAAQARAAAAAAIAEQAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAADABEAAAAAAgACAAAAAAAAEQAAAAACAB0AAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAAAdAAAAAAIAHQAAAAACAB0AAAAAAgARAAAAAAMAHQAAAAAAAB0AAAAAAAARAAAAAAEAEQAAAAAAABEAAAAAAwARAAAAAAIAAgAAAAAAABEAAAAAAwAdAAAAAAAAHQAAAAADAB0AAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAwAdAAAAAAMAEQAAAAABAB0AAAAAAAAdAAAAAAAAEQAAAAADABEAAAAAAAARAAAAAAEAEQAAAAABAAIAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAQARAAAAAAAAEQAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAAAABEAAAAAAQAdAAAAAAMAHQAAAAAAABEAAAAAAgARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAHQAAAAAAAB0AAAAAAgARAAAAAAIAEQAAAAABAAIAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAABABEAAAAAAwARAAAAAAEAEQAAAAADABEAAAAAAAACAAAAAAAAEQAAAAADAB0AAAAAAwAdAAAAAAIAEQAAAAABABEAAAAAAgACAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAIAEQAAAAADABEAAAAAAwARAAAAAAAAEQAAAAABABEAAAAAAQARAAAAAAAAEQAAAAAAABEAAAAAAAAdAAAAAAAAHQAAAAACABEAAAAAAwARAAAAAAMAAgAAAAAAABEAAAAAAQARAAAAAAIAEQAAAAADAB0AAAAAAAAdAAAAAAAAHQAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAABAAIAAAAAAAARAAAAAAMAHQAAAAADAB0AAAAAAQARAAAAAAIAEQAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAACAAIAAAAAAAACAAAAAAAAEQAAAAADAB0AAAAAAgAdAAAAAAEAEQAAAAADABEAAAAAAgACAAAAAAAAEQAAAAABABEAAAAAAQARAAAAAAIAHQAAAAACAB0AAAAAAgAdAAAAAAMAEQAAAAADABEAAAAAAQARAAAAAAMAAgAAAAAAABEAAAAAAQAdAAAAAAMAHQAAAAAAABEAAAAAAwARAAAAAAMAAgAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAgARAAAAAAEAEQAAAAADABEAAAAAAwARAAAAAAMAEQAAAAAAAAIAAAAAAAARAAAAAAAAHQAAAAADAB0AAAAAAwARAAAAAAMAEQAAAAACAAIAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAQARAAAAAAEAEQAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAAAABEAAAAAAQACAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAAAEQAAAAABABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAAeAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== version: 7 -2,-3: ind: -2,-3 - tiles: JwAAAAAAACcAAAAAAAAnAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAACABQAAAAAAQAUAAAAAAEAAgAAAAAAABEAAAAAAwARAAAAAAEAEQAAAAABAAIAAAAAAAAUAAAAAAIAFAAAAAABACcAAAAAAAAnAAAAAAAAJwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAQACAAAAAAAAFAAAAAAAABQAAAAAAQAnAAAAAAAAJwAAAAAAACcAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAMAFAAAAAAAABQAAAAAAwAQAAAAAAIAEQAAAAACABEAAAAAAwARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAAgAAAAAAABQAAAAAAgAUAAAAAAAAFAAAAAADABQAAAAAAgAUAAAAAAIAAgAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAACABAAAAAAAwAQAAAAAAIAEAAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAAAABQAAAAAAQAUAAAAAAMAFAAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAABABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAAAAgAAAAAAAB8AAAAAAQAfAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB8AAAAAAwAfAAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAAAAgAAAAAAAAIAAAAAAAAfAAAAAAEAAgAAAAAAAAIAAAAAAAAfAAAAAAMAHwAAAAABAAwAAAAAAAAMAAAAAAIADAAAAAABAAIAAAAAAAAfAAAAAAMAHwAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAADAAIAAAAAAAAfAAAAAAIAHwAAAAAAAB8AAAAAAQACAAAAAAAAHwAAAAADAB8AAAAAAQAMAAAAAAIADAAAAAADAAwAAAAAAAACAAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAABAB8AAAAAAQAfAAAAAAIAHwAAAAABAB8AAAAAAgAfAAAAAAIAHwAAAAABAB8AAAAAAgAfAAAAAAEADAAAAAACAAwAAAAAAwAMAAAAAAEAAgAAAAAAAB8AAAAAAgAfAAAAAAIAHwAAAAADAB8AAAAAAQAfAAAAAAIAAgAAAAAAAB8AAAAAAAAfAAAAAAEAHwAAAAADAAIAAAAAAAAfAAAAAAMAHwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAMADAAAAAADAAwAAAAAAQACAAAAAAAAHwAAAAAAAB8AAAAAAAAQAAAAAAAAHwAAAAABAB8AAAAAAAACAAAAAAAAHwAAAAACAB8AAAAAAwAfAAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAIADAAAAAADAAwAAAAAAQAMAAAAAAAAHAAAAAAAAB8AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAAAHwAAAAAAAAwAAAAAAAAMAAAAAAEADAAAAAABAAIAAAAAAAAfAAAAAAAAHwAAAAADAB8AAAAAAAAfAAAAAAIAHwAAAAAAAAIAAAAAAAAfAAAAAAMAHwAAAAACACYAAAAAAAAmAAAAAAAAJgAAAAAAACYAAAAAAAACAAAAAAAAEAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHwAAAAABAB8AAAAAAQAmAAAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAAAHwAAAAABAB8AAAAAAQAfAAAAAAEAHwAAAAACAB8AAAAAAQAfAAAAAAIAHwAAAAADAB8AAAAAAgAfAAAAAAEAHwAAAAADAB8AAAAAAgAfAAAAAAAAHwAAAAABAB8AAAAAAgAfAAAAAAAAHwAAAAAAAA== + tiles: JwAAAAAAACcAAAAAAAAnAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAIAFAAAAAACABQAAAAAAQAUAAAAAAEAAgAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAADAAIAAAAAAAAUAAAAAAEAFAAAAAACACcAAAAAAAAnAAAAAAAAJwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAwAnAAAAAAAAJwAAAAAAACcAAAAAAAACAAAAAAAAFAAAAAACABQAAAAAAgAUAAAAAAIAFAAAAAAAABQAAAAAAgAQAAAAAAAAEQAAAAADABEAAAAAAAARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAAgAAAAAAABQAAAAAAgAUAAAAAAAAFAAAAAACABQAAAAAAwAUAAAAAAEAAgAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAAAABAAAAAAAgAQAAAAAAAAEAAAAAACACcAAAAAAAAnAAAAAAAAJwAAAAAAAAIAAAAAAAAUAAAAAAIAFAAAAAACABQAAAAAAgAUAAAAAAEAFAAAAAADAAIAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAMAAgAAAAAAAB8AAAAAAgAfAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB8AAAAAAwAfAAAAAAEAHwAAAAACAB8AAAAAAAAfAAAAAAIAAgAAAAAAAAIAAAAAAAAfAAAAAAAAAgAAAAAAAAIAAAAAAAAfAAAAAAMAHwAAAAADAAwAAAAAAwAMAAAAAAAADAAAAAADAAIAAAAAAAAfAAAAAAIAHwAAAAACAB8AAAAAAgAfAAAAAAAAHwAAAAADAAIAAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAgACAAAAAAAAHwAAAAABAB8AAAAAAgAMAAAAAAEADAAAAAACAAwAAAAAAgACAAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAABAB8AAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAAAfAAAAAAIAHwAAAAACAB8AAAAAAgAfAAAAAAIADAAAAAAAAAwAAAAAAgAMAAAAAAEAAgAAAAAAAB8AAAAAAgAfAAAAAAEAHwAAAAAAAB8AAAAAAgAfAAAAAAMAAgAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAAAAAIAAAAAAAAfAAAAAAEAHwAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAADAAwAAAAAAQACAAAAAAAAHwAAAAACAB8AAAAAAQAQAAAAAAMAHwAAAAABAB8AAAAAAQACAAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAIAHwAAAAADAB8AAAAAAwAfAAAAAAAADAAAAAADAAwAAAAAAgAMAAAAAAIAHAAAAAADAB8AAAAAAgAQAAAAAAAAEAAAAAAAABAAAAAAAwAfAAAAAAMAHwAAAAABAB8AAAAAAwAfAAAAAAMAHwAAAAADAB8AAAAAAAAfAAAAAAMAHwAAAAACAAwAAAAAAAAMAAAAAAEADAAAAAADAAIAAAAAAAAfAAAAAAIAHwAAAAADAB8AAAAAAAAfAAAAAAIAHwAAAAACAAIAAAAAAAAfAAAAAAAAHwAAAAABACYAAAAAAAAmAAAAAAAAJgAAAAAAACYAAAAAAAACAAAAAAAAEAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHwAAAAAAAB8AAAAAAgAmAAAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAADAB8AAAAAAQAfAAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAMAHwAAAAABAB8AAAAAAQAfAAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAMAHwAAAAACAA== version: 7 1,-3: ind: 1,-3 - tiles: AgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB0AAAAAAwARAAAAAAIAEQAAAAAAABEAAAAAAAARAAAAAAEAEQAAAAADAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAdAAAAAAEAEQAAAAACABEAAAAAAgARAAAAAAEAEQAAAAAAABEAAAAAAQAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHQAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAABABEAAAAAAgARAAAAAAIAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAQARAAAAAAEAEQAAAAAAAB0AAAAAAwARAAAAAAIAEQAAAAABABEAAAAAAQARAAAAAAEAEQAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAwAdAAAAAAMAEQAAAAABABEAAAAAAwAVAAAAAAAAFQAAAAAAABUAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAEAIgAAAAACACIAAAAAAwAiAAAAAAAAHQAAAAACABEAAAAAAgARAAAAAAEAFQAAAAAAABUAAAAAAAAVAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAARAAAAAAMAEQAAAAABACIAAAAAAgAiAAAAAAIAIgAAAAABAB0AAAAAAAARAAAAAAMAEQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAEQAAAAADABEAAAAAAAAiAAAAAAMAIgAAAAABACIAAAAAAAAdAAAAAAMAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAMAHQAAAAAAABEAAAAAAAACAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAB0AAAAAAgARAAAAAAEAAgAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAAACAAAAAAAAFAAAAAABABQAAAAAAAARAAAAAAEAEQAAAAACAAIAAAAAAAALAAAAAAAACwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAMAHAAAAAAAAAIAAAAAAAACAAAAAAAAHAAAAAABAAIAAAAAAAACAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAABABsAAAAAAQAUAAAAAAIAFAAAAAAAAA== + tiles: AgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB0AAAAAAwARAAAAAAMAEQAAAAADABEAAAAAAQARAAAAAAEAEQAAAAACAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAdAAAAAAIAEQAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAAAABEAAAAAAQAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHQAAAAACABEAAAAAAgARAAAAAAIAEQAAAAADABEAAAAAAwARAAAAAAIAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAABABEAAAAAAwARAAAAAAAAEQAAAAADAB0AAAAAAwARAAAAAAEAEQAAAAACABEAAAAAAAARAAAAAAMAEQAAAAADAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAgAdAAAAAAIAEQAAAAACABEAAAAAAwAVAAAAAAAAFQAAAAAAABUAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAEAIgAAAAACACIAAAAAAwAiAAAAAAEAHQAAAAACABEAAAAAAQARAAAAAAMAFQAAAAAAABUAAAAAAAAVAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAARAAAAAAEAEQAAAAABACIAAAAAAQAiAAAAAAIAIgAAAAACAB0AAAAAAAARAAAAAAAAEQAAAAACABUAAAAAAAAVAAAAAAAAFQAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAEQAAAAACABEAAAAAAQAiAAAAAAIAIgAAAAABACIAAAAAAgAdAAAAAAEAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAAAABEAAAAAAQARAAAAAAMAHQAAAAADABEAAAAAAQACAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAB0AAAAAAgARAAAAAAIAAgAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAwACAAAAAAAAFAAAAAAAABQAAAAAAgARAAAAAAEAEQAAAAABAAIAAAAAAAALAAAAAAAACwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAQAUAAAAAAIAHAAAAAADAAIAAAAAAAACAAAAAAAAHAAAAAABAAIAAAAAAAACAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAAIAAAAAAAAUAAAAAAIAFAAAAAADABsAAAAAAgAUAAAAAAMAFAAAAAABAA== version: 7 2,-2: ind: 2,-2 - tiles: FAAAAAADABQAAAAAAwAUAAAAAAEAFAAAAAADABQAAAAAAgAUAAAAAAMAFAAAAAADABsAAAAAAwAUAAAAAAIAFAAAAAADABQAAAAAAwAUAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAgAUAAAAAAIAFAAAAAACABQAAAAAAAAUAAAAAAMAFAAAAAABABQAAAAAAgACAAAAAAAAAgAAAAAAABsAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAwAUAAAAAAEAFAAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAFAAAAAAAABsAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAABQAAAAAAwAUAAAAAAAAFAAAAAADABQAAAAAAwACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABQAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAADABQAAAAAAwAUAAAAAAIAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAQAUAAAAAAMAFAAAAAABABoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAFAAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAABQAAAAAAwAUAAAAAAAAFAAAAAABABQAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABQAAAAAAAAbAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAADABQAAAAAAwAUAAAAAAIAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAUAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAbAAAAAAIAFAAAAAABAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAGwAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABsAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAABQAAAAAAAApAAAAAAAAAgAAAAAAAAIAAAAAAAAbAAAAAAAAGwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAbAAAAAAAAKQAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAA== + tiles: FAAAAAADABQAAAAAAAAUAAAAAAMAFAAAAAACABQAAAAAAQAUAAAAAAAAFAAAAAAAABsAAAAAAQAUAAAAAAMAFAAAAAAAABQAAAAAAwAUAAAAAAIAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAgAUAAAAAAEAFAAAAAADABQAAAAAAQAUAAAAAAEAFAAAAAACABQAAAAAAQACAAAAAAAAAgAAAAAAABsAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAwAUAAAAAAIAFAAAAAACAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAFAAAAAADABsAAAAAAwAUAAAAAAIAFAAAAAAAABQAAAAAAwAUAAAAAAEAAgAAAAAAABQAAAAAAwAUAAAAAAAAFAAAAAABABQAAAAAAQACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABQAAAAAAQACAAAAAAAAFAAAAAADABQAAAAAAQAUAAAAAAAAFAAAAAACAAIAAAAAAAAUAAAAAAIAFAAAAAABABQAAAAAAQAUAAAAAAMAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAMAFAAAAAABABQAAAAAAQACAAAAAAAAFAAAAAABABQAAAAAAAAUAAAAAAIAFAAAAAACABoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAFAAAAAADAAIAAAAAAAAUAAAAAAMAFAAAAAADABQAAAAAAQAUAAAAAAMAAgAAAAAAABQAAAAAAwAUAAAAAAAAFAAAAAAAABQAAAAAAQACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABQAAAAAAgAbAAAAAAIAFAAAAAADABQAAAAAAAAUAAAAAAEAFAAAAAABAAIAAAAAAAAUAAAAAAEAFAAAAAADABQAAAAAAwAUAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAUAAAAAAAAAgAAAAAAABQAAAAAAQAUAAAAAAIAFAAAAAABABQAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAwAbAAAAAAMAFAAAAAACAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAAAABQAAAAAAwAUAAAAAAEAFAAAAAABABQAAAAAAwAUAAAAAAEAFAAAAAADABQAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAQAUAAAAAAMAFAAAAAACABQAAAAAAgAUAAAAAAMAFAAAAAAAABQAAAAAAQAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAGwAAAAACABQAAAAAAgAUAAAAAAEAFAAAAAACABQAAAAAAgAUAAAAAAIAFAAAAAADABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAwACAAAAAAAAAgAAAAAAABQAAAAAAgAUAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAADABQAAAAAAwAUAAAAAAMAFAAAAAADABQAAAAAAwAUAAAAAAIAFAAAAAAAABQAAAAAAwAUAAAAAAIAAgAAAAAAABQAAAAAAwAUAAAAAAIAFAAAAAABABQAAAAAAQACAAAAAAAAFAAAAAABABQAAAAAAQAUAAAAAAMAFAAAAAABABQAAAAAAwAUAAAAAAIAFAAAAAABABQAAAAAAgAUAAAAAAEAFAAAAAAAABsAAAAAAAAUAAAAAAMAFAAAAAAAABQAAAAAAgAUAAAAAAIAFAAAAAACABQAAAAAAQAUAAAAAAEAAgAAAAAAABQAAAAAAAApAAAAAAAAAgAAAAAAAAIAAAAAAAAbAAAAAAIAGwAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAgAUAAAAAAMAFAAAAAAAABQAAAAAAAAbAAAAAAEAKQAAAAACAAIAAAAAAAAUAAAAAAIAFAAAAAADABQAAAAAAAAUAAAAAAAAFAAAAAACABQAAAAAAQAUAAAAAAIAAgAAAAAAABQAAAAAAQAUAAAAAAMAFAAAAAACABQAAAAAAgAUAAAAAAAAFAAAAAACAA== version: 7 2,-3: ind: 2,-3 - tiles: AgAAAAAAAA8AAAAAAAAUAAAAAAMAFAAAAAADAA8AAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAABQAAAAAAgAPAAAAAAAAFAAAAAADABQAAAAAAwAPAAAAAAAAFAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAA4AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAqAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAEAAgAAAAAAABQAAAAAAQAUAAAAAAMAAgAAAAAAABQAAAAAAwAUAAAAAAIAFAAAAAADABQAAAAAAgAUAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAACAAIAAAAAAAAUAAAAAAIAFAAAAAABABsAAAAAAAAUAAAAAAMAFAAAAAAAABQAAAAAAAAUAAAAAAMAFAAAAAACAAIAAAAAAAACAAAAAAAAKQAAAAAAAAIAAAAAAAAiAAAAAAAAEQAAAAADABEAAAAAAwACAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAAFAAAAAABACEAAAAAAAAhAAAAAAAAIQAAAAAAABQAAAAAAwACAAAAAAAAFAAAAAADABQAAAAAAQAUAAAAAAMAIgAAAAADABEAAAAAAAARAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAACABQAAAAAAwAUAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAIAFAAAAAACACIAAAAAAQARAAAAAAEAEQAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAABsAAAAAAgACAAAAAAAAAgAAAAAAABQAAAAAAgAUAAAAAAEAFAAAAAACABQAAAAAAQARAAAAAAEAEQAAAAABABEAAAAAAgARAAAAAAAAEQAAAAABABEAAAAAAgACAAAAAAAAFAAAAAADABQAAAAAAgAUAAAAAAAAFAAAAAACABQAAAAAAwAbAAAAAAEAFAAAAAACABQAAAAAAwAUAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAABABQAAAAAAwAUAAAAAAIAAgAAAAAAABQAAAAAAgAUAAAAAAAAFAAAAAADABQAAAAAAQAUAAAAAAMAFAAAAAADABQAAAAAAQAUAAAAAAMAFAAAAAADABQAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAEAFAAAAAADAAIAAAAAAAACAAAAAAAAKQAAAAADAAIAAAAAAAAUAAAAAAMAFAAAAAAAABQAAAAAAAAUAAAAAAIAFAAAAAAAABQAAAAAAgAUAAAAAAIAGwAAAAAAABQAAAAAAQAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAEAAgAAAAAAAA8AAAAAAAAPAAAAAAAAFAAAAAADABQAAAAAAgAUAAAAAAAAFAAAAAACABQAAAAAAAAUAAAAAAMAFAAAAAACABQAAAAAAgAUAAAAAAMAFAAAAAABABQAAAAAAgAUAAAAAAEAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + tiles: AgAAAAAAAA8AAAAAAAAUAAAAAAIAFAAAAAADAA8AAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAABQAAAAAAAAPAAAAAAAAFAAAAAADABQAAAAAAAAPAAAAAAAAFAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAA4AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAqAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAIAAgAAAAAAABQAAAAAAAAUAAAAAAMAAgAAAAAAABQAAAAAAQAUAAAAAAEAFAAAAAADABQAAAAAAAAUAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAABAAIAAAAAAAAUAAAAAAEAFAAAAAABABsAAAAAAQAUAAAAAAMAFAAAAAABABQAAAAAAAAUAAAAAAMAFAAAAAABAAIAAAAAAAACAAAAAAAAKQAAAAAAAAIAAAAAAAAiAAAAAAMAEQAAAAADABEAAAAAAwACAAAAAAAAFAAAAAABABQAAAAAAwACAAAAAAAAFAAAAAACACEAAAAAAAAhAAAAAAAAIQAAAAAAABQAAAAAAwACAAAAAAAAFAAAAAAAABQAAAAAAwAUAAAAAAMAIgAAAAADABEAAAAAAwARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAwAUAAAAAAIAFAAAAAABABQAAAAAAgAUAAAAAAIAAgAAAAAAABQAAAAAAwAUAAAAAAEAFAAAAAADACIAAAAAAgARAAAAAAAAEQAAAAAAABEAAAAAAgARAAAAAAAAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAABsAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAgAUAAAAAAEAFAAAAAABABQAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAgARAAAAAAIAEQAAAAABABEAAAAAAgACAAAAAAAAFAAAAAACABQAAAAAAgAUAAAAAAEAFAAAAAABABQAAAAAAwAbAAAAAAEAFAAAAAADABQAAAAAAQAUAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAEAFAAAAAABABQAAAAAAgAUAAAAAAIAAgAAAAAAABQAAAAAAQAUAAAAAAIAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAADABQAAAAAAQAUAAAAAAAAFAAAAAABABQAAAAAAgACAAAAAAAAFAAAAAAAABQAAAAAAgAUAAAAAAEAFAAAAAAAAAIAAAAAAAACAAAAAAAAKQAAAAAAAAIAAAAAAAAUAAAAAAIAFAAAAAABABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAwAUAAAAAAAAGwAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAADABQAAAAAAQAUAAAAAAMAAgAAAAAAAA8AAAAAAAAPAAAAAAAAFAAAAAAAABQAAAAAAgAUAAAAAAIAFAAAAAABABQAAAAAAQAUAAAAAAEAFAAAAAACABQAAAAAAQAUAAAAAAIAFAAAAAABABQAAAAAAwAUAAAAAAIAFAAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== version: 7 2,-1: ind: 2,-1 - tiles: KQAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAAAAB0AAAAAAAAUAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAACkAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAApAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAKQAAAAAAACkAAAAAAAApAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAACkAAAAAAAAdAAAAAAAAKQAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABAAAAAAAAApAAAAAAAAKQAAAAAAACkAAAAAAAAUAAAAAAAAFAAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAACAAAAAAAAFAAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGwAAAAAAABsAAAAAAAACAAAAAAAADAAAAAAAAAwAAAAAAAAUAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAHAAAAAAAABsAAAAAAAAbAAAAAAAAAgAAAAAAAAIAAAAAAAAcAAAAAAAAFAAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAHAAAAAAAAAwAAAAAAwAMAAAAAAIADAAAAAACABwAAAAAAAAMAAAAAAIADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAIAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAADAAAAAADAAwAAAAAAwAMAAAAAAAADAAAAAACAAwAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAcAAAAAAAADAAAAAADAAwAAAAAAwAMAAAAAAMAHAAAAAAAAAwAAAAAAQAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABwAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAQARAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAFAAAAAAAABQAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAwARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAgARAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAEAEQAAAAAAAA== + tiles: KQAAAAAAAAIAAAAAAAAUAAAAAAIAFAAAAAAAAB0AAAAAAAAUAAAAAAIAAgAAAAAAABQAAAAAAAAUAAAAAAIAAgAAAAAAABQAAAAAAAAUAAAAAAEAFAAAAAACABQAAAAAAwAUAAAAAAEAFAAAAAABACkAAAAAAQACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAIAFAAAAAADABQAAAAAAwAUAAAAAAIAFAAAAAACABQAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAApAAAAAAEAAgAAAAAAABQAAAAAAQAUAAAAAAAAFAAAAAABABQAAAAAAQACAAAAAAAAFAAAAAACABQAAAAAAQAUAAAAAAIAFAAAAAABABQAAAAAAgAUAAAAAAMAKQAAAAAAACkAAAAAAgApAAAAAAAAFAAAAAACAAIAAAAAAAACAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAgAUAAAAAAIAFAAAAAAAABQAAAAAAQAUAAAAAAEAFAAAAAACACkAAAAAAQAdAAAAAAIAKQAAAAADABQAAAAAAAAUAAAAAAIAAgAAAAAAABQAAAAAAgAUAAAAAAIAFAAAAAACABQAAAAAAgAUAAAAAAIAFAAAAAACABQAAAAAAwAUAAAAAAIAFAAAAAABABAAAAAAAwApAAAAAAEAKQAAAAACACkAAAAAAwAUAAAAAAAAFAAAAAABAAIAAAAAAAAUAAAAAAMAFAAAAAADABQAAAAAAQAUAAAAAAEAFAAAAAACABQAAAAAAQAUAAAAAAEAFAAAAAADABQAAAAAAQAUAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAADAAIAAAAAAAACAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAgACAAAAAAAAFAAAAAADAAIAAAAAAAAMAAAAAAMADAAAAAABABQAAAAAAQACAAAAAAAAFAAAAAADABQAAAAAAQAUAAAAAAMAFAAAAAADAAIAAAAAAAAMAAAAAAEADAAAAAACAAwAAAAAAAAMAAAAAAIAGwAAAAAAABsAAAAAAAACAAAAAAAADAAAAAACAAwAAAAAAQAUAAAAAAIAAgAAAAAAABQAAAAAAQAUAAAAAAMAFAAAAAADABQAAAAAAQACAAAAAAAADAAAAAADAAwAAAAAAQAMAAAAAAIAHAAAAAAAABsAAAAAAwAbAAAAAAAAAgAAAAAAAAIAAAAAAAAcAAAAAAEAFAAAAAAAAAIAAAAAAAAUAAAAAAIAFAAAAAABABQAAAAAAwAUAAAAAAEAHAAAAAABAAwAAAAAAQAMAAAAAAIADAAAAAACABwAAAAAAQAMAAAAAAAADAAAAAABAAwAAAAAAwAMAAAAAAAADAAAAAABAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAgAUAAAAAAMAFAAAAAABAAIAAAAAAAAcAAAAAAIAHAAAAAACABwAAAAAAwAcAAAAAAIADAAAAAAAAAwAAAAAAAAMAAAAAAEADAAAAAACAAwAAAAAAwAUAAAAAAMAFAAAAAADABQAAAAAAgAUAAAAAAMAFAAAAAACABQAAAAAAQAcAAAAAAMADAAAAAAAAAwAAAAAAAAMAAAAAAMAHAAAAAABAAwAAAAAAQAMAAAAAAEADAAAAAABAAwAAAAAAwAMAAAAAAAAFAAAAAAAABQAAAAAAwAUAAAAAAEAFAAAAAADABQAAAAAAAAUAAAAAAIAAgAAAAAAAAwAAAAAAgAMAAAAAAIADAAAAAAAABwAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAwACAAAAAAAAFAAAAAADABQAAAAAAQAUAAAAAAAAFAAAAAABAAIAAAAAAAAMAAAAAAAADAAAAAACAAwAAAAAAgAMAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAAAABEAAAAAAgARAAAAAAMAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIAFAAAAAACABQAAAAAAAARAAAAAAAAEQAAAAABABEAAAAAAQARAAAAAAEAEQAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAADABEAAAAAAQARAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAACAA== version: 7 2,0: ind: 2,0 - tiles: EQAAAAABABEAAAAAAQARAAAAAAMAEQAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAADABEAAAAAAgARAAAAAAMAEQAAAAACABEAAAAAAAARAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAIAEQAAAAADABEAAAAAAAARAAAAAAEAEQAAAAABABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAAAABEAAAAAAQACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAAAEQAAAAACABEAAAAAAwACAAAAAAAACwAAAAAAABEAAAAAAQARAAAAAAMACwAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAADABEAAAAAAwARAAAAAAEAAgAAAAAAAAsAAAAAAAARAAAAAAAAEQAAAAABAAsAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAABABEAAAAAAQARAAAAAAMAEQAAAAADAAIAAAAAAAALAAAAAAAAEQAAAAABABEAAAAAAQARAAAAAAEAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAgACAAAAAAAACwAAAAAAABEAAAAAAgALAAAAAAAACwAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAADAAAAAAAAAwAAAAAAgAcAAAAAAAADAAAAAAAAAwAAAAAAgAMAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAgAUAAAAAAMAHAAAAAAAAAwAAAAAAQAMAAAAAAIAHAAAAAADAAwAAAAAAQAMAAAAAAAADAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAABABwAAAAAAQAMAAAAAAIADAAAAAABABwAAAAAAwAMAAAAAAEADAAAAAAAAAwAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAABABQAAAAAAwACAAAAAAAADAAAAAACAAwAAAAAAAAcAAAAAAIADAAAAAADAAwAAAAAAgAMAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + tiles: EQAAAAACABEAAAAAAwARAAAAAAIAEQAAAAABABEAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAQARAAAAAAEAEQAAAAADABEAAAAAAQARAAAAAAEAEQAAAAACABEAAAAAAwARAAAAAAAAEQAAAAABABEAAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAgARAAAAAAAAEQAAAAABABEAAAAAAQARAAAAAAEAEQAAAAAAABEAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAwARAAAAAAAAEQAAAAADABEAAAAAAwACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAEAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAIAEQAAAAADABEAAAAAAwACAAAAAAAACwAAAAAAABEAAAAAAQARAAAAAAAACwAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAADABEAAAAAAwARAAAAAAMAAgAAAAAAAAsAAAAAAAARAAAAAAIAEQAAAAABAAsAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAABAAIAAAAAAAALAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAEAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAMAEQAAAAADABEAAAAAAAACAAAAAAAACwAAAAAAABEAAAAAAwALAAAAAAAACwAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAwACAAAAAAAADAAAAAAAAAwAAAAAAQAcAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAMAHAAAAAAAAAwAAAAAAQAMAAAAAAMAHAAAAAABAAwAAAAAAAAMAAAAAAAADAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAAAABwAAAAAAgAMAAAAAAEADAAAAAABABwAAAAAAQAMAAAAAAAADAAAAAADAAwAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAgACAAAAAAAADAAAAAAAAAwAAAAAAwAcAAAAAAMADAAAAAADAAwAAAAAAwAMAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== version: 7 2,1: ind: 2,1 - tiles: FAAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAABwAAAAAAAACAAAAAAAADAAAAAACAAwAAAAAAQAMAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAgAMAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAcAAAAAAAAHAAAAAABABwAAAAAAgAMAAAAAAMADAAAAAAAAAIAAAAAAAACAAAAAAAADAAAAAAAAAwAAAAAAgAMAAAAAAMAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADAAAAAADABwAAAAAAAACAAAAAAAAAgAAAAAAABwAAAAAAgACAAAAAAAAAgAAAAAAACwAAAAAAAAMAAAAAAIADAAAAAACAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAwAcAAAAAAIAAgAAAAAAABIAAAAAAwASAAAAAAEAAgAAAAAAAAIAAAAAAAAMAAAAAAIADAAAAAACAAwAAAAAAwAPAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAMAHAAAAAABAAIAAAAAAAASAAAAAAIAEgAAAAADAAIAAAAAAAACAAAAAAAADAAAAAAAAAwAAAAAAQAMAAAAAAEAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHAAAAAAAABwAAAAAAwACAAAAAAAACwAAAAAAAAsAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAQAMAAAAAAAADAAAAAABAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABwAAAAAAAAcAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAMADAAAAAAAAAwAAAAAAQACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAFQAAAAAAACsAAAAAAAArAAAAAAMAKwAAAAACABUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAA== + tiles: FAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAABwAAAAAAwACAAAAAAAADAAAAAABAAwAAAAAAwAMAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAQAMAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAcAAAAAAEAHAAAAAABABwAAAAAAgAMAAAAAAMADAAAAAACAAIAAAAAAAACAAAAAAAADAAAAAAAAAwAAAAAAwAMAAAAAAMAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADAAAAAACABwAAAAAAQACAAAAAAAAAgAAAAAAABwAAAAAAAACAAAAAAAAAgAAAAAAACwAAAAABgAMAAAAAAIADAAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAgAcAAAAAAIAAgAAAAAAABIAAAAAAQASAAAAAAMAAgAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAADAAwAAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAEAHAAAAAABAAIAAAAAAAASAAAAAAMAEgAAAAAAAAIAAAAAAAACAAAAAAAADAAAAAABAAwAAAAAAwAMAAAAAAEAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAHAAAAAAAABwAAAAAAwACAAAAAAAACwAAAAAAAAsAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAQAMAAAAAAIADAAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAABwAAAAAAwAcAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAMADAAAAAAAAAwAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAFQAAAAAAACsAAAAAAQArAAAAAAAAKwAAAAACABUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAA== version: 7 -3,-3: ind: -3,-3 - tiles: DwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAOAAAAAAAAAgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAADgAAAAAAAAIAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAACAAAAAAAAAgAAAAAAAC8AAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA4AAAAAAAACAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAAgAAAAAAAC8AAAAAAAAvAAAAAAAALwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAAIAAAAAAAAvAAAAAAAALwAAAAAAAC8AAAAAAAACAAAAAAAAAgAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAAIAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAAACAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAAgAAAAAAAAwAAAAAAQAMAAAAAAAADAAAAAACAAwAAAAAAAAPAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAAIAAAAAAAAuAAAAAAAALgAAAAAAABwAAAAAAgAMAAAAAAEADAAAAAABAAwAAAAAAwAMAAAAAAIAAgAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAACAAAAAAAADAAAAAADAAwAAAAAAQAMAAAAAAEADAAAAAABAAIAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAAgAAAAAAAAwAAAAAAgAMAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAADAAIAAAAAAAAMAAAAAAMACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAACAAAAAAAALgAAAAAAAC4AAAAAAAACAAAAAAAAHAAAAAADAAIAAAAAAAACAAAAAAAADAAAAAABAAsAAAAAAAALAAAAAAAACwAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAAgAAAAAAABIAAAAAAwASAAAAAAEAEgAAAAADABIAAAAAAQASAAAAAAEAAgAAAAAAAAwAAAAAAwALAAAAAAAACwAAAAAAAAsAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAAIAAAAAAAASAAAAAAMAEgAAAAAAABIAAAAAAAASAAAAAAAAEgAAAAACAAIAAAAAAAACAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAACAAAAAAAAEgAAAAABABIAAAAAAAASAAAAAAIAEgAAAAABABIAAAAAAgAfAAAAAAEAHwAAAAAAAA== + tiles: DwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAOAAAAAAAAAgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAADgAAAAAAAAIAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAACAAAAAAAAAgAAAAAAAC8AAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA4AAAAAAAACAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAAgAAAAAAAC8AAAAAAAAvAAAAAAAALwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAAIAAAAAAAAvAAAAAAAALwAAAAAAAC8AAAAAAAACAAAAAAAAAgAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAAIAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAAACAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAAgAAAAAAAAwAAAAAAAAMAAAAAAEADAAAAAADAAwAAAAAAgAPAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAABAAIAAAAAAAAuAAAAAAAALgAAAAAAABwAAAAAAQAMAAAAAAIADAAAAAADAAwAAAAAAAAMAAAAAAMAAgAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAACAAAAAAAADAAAAAADAAwAAAAAAwAMAAAAAAEADAAAAAAAAAIAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAAgAAAAAAAAwAAAAAAgAMAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAAIAAAAAAAAMAAAAAAMADAAAAAACAAIAAAAAAAAMAAAAAAEACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAwACAAAAAAAALgAAAAAAAC4AAAAAAAACAAAAAAAAHAAAAAABAAIAAAAAAAACAAAAAAAADAAAAAABAAsAAAAAAAALAAAAAAAACwAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAADABEAAAAAAgARAAAAAAAAAgAAAAAAABIAAAAAAwASAAAAAAEAEgAAAAACABIAAAAAAAASAAAAAAEAAgAAAAAAAAwAAAAAAQALAAAAAAAACwAAAAAAAAsAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAAARAAAAAAIAEQAAAAABAAIAAAAAAAASAAAAAAMAEgAAAAADABIAAAAAAwASAAAAAAAAEgAAAAABAAIAAAAAAAACAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAACABEAAAAAAgACAAAAAAAAEgAAAAACABIAAAAAAgASAAAAAAIAEgAAAAACABIAAAAAAQAfAAAAAAMAHwAAAAADAA== version: 7 -3,-2: ind: -3,-2 - tiles: CwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAACAAAAAAAAEgAAAAABABIAAAAAAgASAAAAAAEAEgAAAAABABIAAAAAAAAfAAAAAAAAHwAAAAABABAAAAAAAwAQAAAAAAEAEAAAAAABABEAAAAAAgARAAAAAAEAEQAAAAAAABEAAAAAAAARAAAAAAAAAgAAAAAAABIAAAAAAwASAAAAAAEAEgAAAAABABIAAAAAAgASAAAAAAAAAgAAAAAAAAIAAAAAAAAQAAAAAAMAEAAAAAABABAAAAAAAAARAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAIAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAfAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAQACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHwAAAAADABQAAAAAAgAUAAAAAAMAEQAAAAAAABEAAAAAAwACAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAIAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB8AAAAAAAAUAAAAAAEAFAAAAAADABEAAAAAAQARAAAAAAEAAgAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAfAAAAAAEAFAAAAAAAABQAAAAAAwARAAAAAAEAEQAAAAADABQAAAAAAwARAAAAAAEAEQAAAAABABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAQARAAAAAAEAEQAAAAABABEAAAAAAQARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAwAAAAAAAAMAAAAAAAAAIAAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAAAEQAAAAADAAIAAAAAAAARAAAAAAMAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAASAAAAAAMAMAAAAAAAADAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEgAAAAADADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAASAAAAAAMAMAAAAAAAADAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAgARAAAAAAMAEQAAAAACABEAAAAAAwACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAEgAAAAADADAAAAAAAAAwAAAAAAAAAgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAAARAAAAAAIAAgAAAAAAABEAAAAAAAARAAAAAAIAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABIAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAASAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAADABEAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAwACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAEgAAAAADAA== + tiles: CwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAADABEAAAAAAwACAAAAAAAAEgAAAAAAABIAAAAAAAASAAAAAAMAEgAAAAACABIAAAAAAgAfAAAAAAMAHwAAAAADABAAAAAAAQAQAAAAAAMAEAAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAADABEAAAAAAAARAAAAAAMAAgAAAAAAABIAAAAAAgASAAAAAAMAEgAAAAAAABIAAAAAAQASAAAAAAIAAgAAAAAAAAIAAAAAAAAQAAAAAAMAEAAAAAACABAAAAAAAwARAAAAAAEAEQAAAAABABEAAAAAAwARAAAAAAMAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAfAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAADABEAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHwAAAAADABQAAAAAAwAUAAAAAAIAEQAAAAADABEAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB8AAAAAAgAUAAAAAAAAFAAAAAAAABEAAAAAAgARAAAAAAIAAgAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAACAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAfAAAAAAAAFAAAAAADABQAAAAAAgARAAAAAAIAEQAAAAABABQAAAAAAwARAAAAAAEAEQAAAAAAABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAIAEQAAAAABABEAAAAAAgARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAwAAAAAAAAMAAAAAAAAAIAAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAIAEQAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAASAAAAAAAAMAAAAAAAADAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEgAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAADAAIAAAAAAAARAAAAAAEAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAASAAAAAAMAMAAAAAAAADAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAEgAAAAAAADAAAAAAAAAwAAAAAAAAAgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAAARAAAAAAMAAgAAAAAAABEAAAAAAwARAAAAAAMAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAIAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAASAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAAAABEAAAAAAgACAAAAAAAAEQAAAAAAABEAAAAAAQACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAEgAAAAADAA== version: 7 -3,-1: ind: -3,-1 - tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAABABEAAAAAAgACAAAAAAAAEQAAAAAAABEAAAAAAwACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAEgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAQARAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABIAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAAAEQAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAABAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAASAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAAAABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAEgAAAAADADAAAAAAAAAwAAAAAAAAMAAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAgARAAAAAAEAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABIAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAACABEAAAAAAQAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAASAAAAAAEAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAADABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAwARAAAAAAEAAgAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAABEAAAAAAgAwAAAAAAAAMAAAAAAAADAAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAAAAAIAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAQACAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAACAAAAAAAAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAIAAgAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQACAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAAAEQAAAAAAABEAAAAAAgARAAAAAAAAEQAAAAACAAIAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAQARAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAIAEQAAAAABABEAAAAAAAACAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAgARAAAAAAIAEQAAAAADABEAAAAAAQARAAAAAAEAEQAAAAAAABEAAAAAAAARAAAAAAEACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAQARAAAAAAAAEQAAAAADABEAAAAAAAARAAAAAAMAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAwARAAAAAAMAEQAAAAAAABEAAAAAAwARAAAAAAIAEQAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAADABEAAAAAAgARAAAAAAMAEQAAAAADAA== + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAwACAAAAAAAAEQAAAAABABEAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAEgAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAwARAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAMAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABIAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAACAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAASAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAEgAAAAADADAAAAAAAAAwAAAAAAAAMAAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAEAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABIAAAAAAgAwAAAAAAAAMAAAAAAAADAAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAMAEQAAAAACABEAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAASAAAAAAEAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAADABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAABABEAAAAAAQARAAAAAAEAAgAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAABEAAAAAAgAwAAAAAAAAMAAAAAAAADAAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAADAAIAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAwACAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAACAAAAAAAAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAAgAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgACAAAAAAAAEQAAAAABABEAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAAARAAAAAAIAEQAAAAABAAIAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAACABEAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAQACAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAEAEQAAAAACABEAAAAAAwARAAAAAAMAEQAAAAABABEAAAAAAgARAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAgARAAAAAAIAEQAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAwARAAAAAAIAEQAAAAADABEAAAAAAgARAAAAAAMAEQAAAAACABEAAAAAAgARAAAAAAEAEQAAAAABABEAAAAAAQARAAAAAAIAEQAAAAABABEAAAAAAQARAAAAAAAAEQAAAAAAAA== version: 7 -3,0: ind: -3,0 - tiles: EQAAAAAAABEAAAAAAwARAAAAAAIAEQAAAAADABEAAAAAAQARAAAAAAMAEQAAAAADABEAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAQARAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAIAEQAAAAACABEAAAAAAwARAAAAAAMAEQAAAAABABEAAAAAAAARAAAAAAMAEQAAAAADABEAAAAAAAARAAAAAAIAEQAAAAABABEAAAAAAwARAAAAAAEAEQAAAAABABEAAAAAAgARAAAAAAMAEQAAAAACABEAAAAAAQACAAAAAAAAEQAAAAABABEAAAAAAgACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAIAAgAAAAAAABQAAAAAAQAUAAAAAAEAAgAAAAAAABEAAAAAAgARAAAAAAEAAgAAAAAAAAIAAAAAAAARAAAAAAEAAgAAAAAAABEAAAAAAgARAAAAAAEAAgAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAIAEQAAAAACABEAAAAAAQARAAAAAAIAEQAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAABABEAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAgACAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAQARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAMAAgAAAAAAABEAAAAAAwARAAAAAAMAAgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAGgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + tiles: EQAAAAADABEAAAAAAAARAAAAAAIAEQAAAAABABEAAAAAAwARAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAEAEQAAAAABABEAAAAAAgARAAAAAAMAEQAAAAABABEAAAAAAwARAAAAAAEAEQAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAAAABEAAAAAAQARAAAAAAIAEQAAAAACABEAAAAAAAARAAAAAAEAEQAAAAABABEAAAAAAwARAAAAAAIAEQAAAAADABEAAAAAAQARAAAAAAMAEQAAAAACABEAAAAAAQACAAAAAAAAEQAAAAACABEAAAAAAQACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAIAAgAAAAAAABQAAAAAAwAUAAAAAAEAAgAAAAAAABEAAAAAAgARAAAAAAIAAgAAAAAAAAIAAAAAAAARAAAAAAMAAgAAAAAAABEAAAAAAgARAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAACABEAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAwARAAAAAAEAEQAAAAACAAIAAAAAAAARAAAAAAAAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAABABEAAAAAAgARAAAAAAEAEQAAAAAAABEAAAAAAwACAAAAAAAAEQAAAAACABEAAAAAAQACAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAIAAgAAAAAAABEAAAAAAwARAAAAAAIAAgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAGgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== version: 7 -3,1: ind: -3,1 @@ -215,103 +218,103 @@ entities: version: 7 0,-4: ind: 0,-4 - tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAwACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAAAABEAAAAAAQARAAAAAAMAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAARAAAAAAIAEQAAAAAAABEAAAAAAwARAAAAAAEAEQAAAAADAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAEQAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAADABEAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAABABEAAAAAAwARAAAAAAEAAgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAARAAAAAAAAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAQAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAMgAAAAAAADIAAAAAAAAyAAAAAAAAMgAAAAAAADIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADIAAAAAAAAyAAAAAAAAMgAAAAAAADIAAAAAAAAyAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAAAAAIAAAAAAAAIAAAAAAEACAAAAAAAAAIAAAAAAAAyAAAAAAAAMgAAAAAAADIAAAAAAAAyAAAAAAAAMgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAwACAAAAAAAACAAAAAADAAgAAAAAAwACAAAAAAAAMgAAAAAAADIAAAAAAAAyAAAAAAAAMgAAAAAAADIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAEAAgAAAAAAAAgAAAAAAgAIAAAAAAMAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACAAIAAAAAAAAIAAAAAAMACAAAAAABAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAAAABEAAAAAAAARAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAADABEAAAAAAAARAAAAAAAAEQAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAgARAAAAAAAAEQAAAAAAABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAgACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAABEAAAAAAwARAAAAAAIAEQAAAAAAABEAAAAAAgARAAAAAAEAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAwARAAAAAAAAEQAAAAACAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAEQAAAAACABEAAAAAAQARAAAAAAIAEQAAAAABABEAAAAAAwACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAAARAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAARAAAAAAEAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAMgAAAAADADIAAAAAAQAyAAAAAAMAMgAAAAAAADIAAAAAAgAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADIAAAAAAAAyAAAAAAAAMgAAAAADADIAAAAAAQAyAAAAAAEADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAABAAIAAAAAAAAIAAAAAAAACAAAAAACAAIAAAAAAAAyAAAAAAAAMgAAAAAAADIAAAAAAgAyAAAAAAEAMgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAwACAAAAAAAACAAAAAABAAgAAAAAAgACAAAAAAAAMgAAAAADADIAAAAAAgAyAAAAAAEAMgAAAAACADIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAIAAgAAAAAAAAgAAAAAAQAIAAAAAAEAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAADAAIAAAAAAAAIAAAAAAMACAAAAAABAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAABABEAAAAAAwARAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAgARAAAAAAMAEQAAAAABAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== version: 7 -1,-4: ind: -1,-4 - tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAACABEAAAAAAAARAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAMAEQAAAAACABEAAAAAAQACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAwARAAAAAAMAEQAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAAAABEAAAAAAwARAAAAAAEAAgAAAAAAAAIAAAAAAAAaAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAQARAAAAAAIAEQAAAAABABEAAAAAAgARAAAAAAIAEQAAAAAAABEAAAAAAwARAAAAAAAAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAADABEAAAAAAQARAAAAAAAAEQAAAAACABEAAAAAAgARAAAAAAMAEQAAAAAAABEAAAAAAQACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAQARAAAAAAEAEQAAAAACABEAAAAAAgARAAAAAAEAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAADABEAAAAAAgARAAAAAAMAEQAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABAAAAAAAAAQAAAAAAMAEAAAAAAAABAAAAAAAwAQAAAAAAMAEAAAAAADABAAAAAAAwACAAAAAAAAEQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAQAAAAAAMAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAQAAAAAAIAAgAAAAAAABEAAAAAAgAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAEAAAAAADACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAEAAAAAAAAAIAAAAAAAARAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABAAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAABAAAAAAAwACAAAAAAAAEQAAAAABABQAAAAAAQACAAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAIAHwAAAAAAAAIAAAAAAAAQAAAAAAEAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAQAAAAAAIAAgAAAAAAABEAAAAAAwAUAAAAAAIAAgAAAAAAAB8AAAAAAgAfAAAAAAIAHwAAAAAAAB8AAAAAAAACAAAAAAAAEAAAAAADACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAEAAAAAABAAIAAAAAAAARAAAAAAEAFAAAAAACAAIAAAAAAAAfAAAAAAEAHwAAAAAAAB8AAAAAAwAfAAAAAAIAGwAAAAABABAAAAAAAAAQAAAAAAIAEAAAAAABABAAAAAAAwAQAAAAAAIAEAAAAAABABAAAAAAAAACAAAAAAAAEQAAAAABAA== + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAACABEAAAAAAgARAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAMAEQAAAAAAABEAAAAAAgACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAAAABEAAAAAAQARAAAAAAIAEQAAAAAAABEAAAAAAgARAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAMAAgAAAAAAAAIAAAAAAAAaAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAAAEQAAAAADABEAAAAAAgARAAAAAAMAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAADABEAAAAAAQARAAAAAAMAEQAAAAAAABEAAAAAAwARAAAAAAAAEQAAAAADABEAAAAAAwACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAgARAAAAAAMAEQAAAAABABEAAAAAAgARAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAEQAAAAADABEAAAAAAgARAAAAAAIAEQAAAAADABEAAAAAAgARAAAAAAIAEQAAAAACABEAAAAAAwARAAAAAAEAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAEAEQAAAAAAABEAAAAAAwARAAAAAAIAEQAAAAADABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABAAAAAAAAAQAAAAAAEAEAAAAAABABAAAAAAAgAQAAAAAAEAEAAAAAACABAAAAAAAgACAAAAAAAAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAQAAAAAAEAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAQAAAAAAIAAgAAAAAAABEAAAAAAgAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAEAAAAAACACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAEAAAAAACAAIAAAAAAAARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABAAAAAAAgAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAABAAAAAAAQACAAAAAAAAEQAAAAADABQAAAAAAQACAAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAMAHwAAAAAAAAIAAAAAAAAQAAAAAAMAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAQAAAAAAIAAgAAAAAAABEAAAAAAQAUAAAAAAMAAgAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAADAB8AAAAAAwACAAAAAAAAEAAAAAACACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAEAAAAAADAAIAAAAAAAARAAAAAAAAFAAAAAABAAIAAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAAAfAAAAAAMAGwAAAAADABAAAAAAAgAQAAAAAAIAEAAAAAAAABAAAAAAAgAQAAAAAAAAEAAAAAAAABAAAAAAAwACAAAAAAAAEQAAAAADAA== version: 7 -2,-4: ind: -2,-4 - tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAQAAAAAAAAEAAAAAAAAAIAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAEAAAAAAAABAAAAAAAAACAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAEAKgAAAAAFAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABAAAAAAAAAQAAAAAAAAAgAAAAAAACoAAAAABwAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAACACoAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAALgAAAAAAAAIAAAAAAAAuAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAADABQAAAAAAwAuAAAAAAAALgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAACABQAAAAAAgAUAAAAAAEAFAAAAAACABQAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAgARAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAEAFAAAAAABABQAAAAAAgAUAAAAAAIAEAAAAAADABEAAAAAAgARAAAAAAIAEQAAAAADABAAAAAAAwAUAAAAAAAAFAAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAQAAAAAAIAEAAAAAACAAIAAAAAAAAqAAAAAAUADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAEAAAAAACABAAAAAAAAACAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABAAAAAAAAAQAAAAAAIAAgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAwAqAAAAAAAAKgAAAAAAACoAAAAADAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAALgAAAAAAAAIAAAAAAAAuAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAQAuAAAAAAAALgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAACABQAAAAAAAAUAAAAAAIAFAAAAAABABQAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAQARAAAAAAEAAgAAAAAAABQAAAAAAgAUAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAwAUAAAAAAEAFAAAAAAAABQAAAAAAwAUAAAAAAMAEAAAAAACABEAAAAAAQARAAAAAAMAEQAAAAAAABAAAAAAAwAUAAAAAAEAFAAAAAABAA== version: 7 -3,-4: ind: -3,-4 - tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAACAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAUAKgAAAAACACoAAAAAAAAqAAAAAAQAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAxAAAAAAAAMQAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAHACoAAAAAAAAqAAAAAAEAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAoAMQAAAAAAACoAAAAAAAAqAAAAAAsAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAgAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAABgAqAAAAAAAAKgAAAAAAACoAAAAADAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAgAqAAAAAAAAKgAAAAAHACoAAAAAAAAqAAAAAAAAKgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAABAAAAAAAAAQAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAQAAAAAAAAEAAAAAAAAAIAAAAAAAACAAAAAAAAKgAAAAAKACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAGACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEAAAAAAAABAAAAAAAAACAAAAAAAAGgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAALgAAAAAAAAIAAAAAAAACAAAAAAAALgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAC4AAAAAAAACAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAABwAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAsAKgAAAAAAACoAAAAAAAAxAAAAAAAAMQAAAAAAACoAAAAAAAAqAAAAAAQAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAoAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAMQAAAAAAACoAAAAACwAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAoAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAFACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAABwAqAAAAAAAAKgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAABAAAAAAAgAQAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAQAAAAAAEAEAAAAAADAAIAAAAAAAACAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAEAKgAAAAAAACoAAAAAAAAqAAAAAAsAKgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEAAAAAACABAAAAAAAQACAAAAAAAAGgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAALgAAAAAAAAIAAAAAAAACAAAAAAAALgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAC4AAAAAAAACAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== version: 7 -4,-2: ind: -4,-2 - tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAQARAAAAAAAAEQAAAAABABEAAAAAAQACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAMAEQAAAAACABEAAAAAAgARAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAACABEAAAAAAAARAAAAAAEAEQAAAAADAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAaAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAABABEAAAAAAAARAAAAAAIAEQAAAAAAABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAaAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAGQAAAAACABkAAAAAAwARAAAAAAIAEQAAAAADABEAAAAAAwARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABoAAAAAAAAaAAAAAAAAAgAAAAAAABkAAAAAAAAZAAAAAAEAEQAAAAACABEAAAAAAwARAAAAAAMAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAZAAAAAAEAGQAAAAACABEAAAAAAgARAAAAAAEAEQAAAAABABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAGgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAAAEQAAAAACABEAAAAAAgARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAACQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAQARAAAAAAMAEQAAAAABABEAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAMAEQAAAAADABEAAAAAAwARAAAAAAEAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAABABEAAAAAAQARAAAAAAMAEQAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAaAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAaAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAGQAAAAACABkAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAwARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABoAAAAAAAAaAAAAAAAAAgAAAAAAABkAAAAAAwAZAAAAAAIAEQAAAAABABEAAAAAAAARAAAAAAEAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAZAAAAAAAAGQAAAAADABEAAAAAAgARAAAAAAEAEQAAAAABABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAGgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAgARAAAAAAEAEQAAAAAAABEAAAAAAgARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== version: 7 -4,-3: ind: -4,-3 - tiles: KgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAABwAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAsAKgAAAAADACoAAAAAAAAqAAAAAAYAKgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAACoAAAAADAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAUAKgAAAAAGACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAAgAAAAAAAAcAAAAAAQAHAAAAAAMABwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAACgAqAAAAAAwAKgAAAAAEACoAAAAABwAqAAAAAAAAKgAAAAAGAAIAAAAAAAAHAAAAAAIADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAACgACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAAIAAAAAAAAMAAAAAAEADAAAAAACAAwAAAAAAQAMAAAAAAMADAAAAAADACwAAAAABAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAACAAAAAAAADAAAAAADAAwAAAAAAQAMAAAAAAAADAAAAAABAAwAAAAAAAAMAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAcAAgAAAAAAAAwAAAAAAQAMAAAAAAEADAAAAAADAAwAAAAAAQAMAAAAAAEADAAAAAABAAIAAAAAAAACAAAAAAAADwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAABAAwAAAAAAwAMAAAAAAAADAAAAAACAAwAAAAAAwACAAAAAAAAAgAAAAAAAA8AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAACAAAAAAAADAAAAAACAAwAAAAAAQAMAAAAAAEADAAAAAACACwAAAAABgAMAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAABgAqAAAAAAEAAgAAAAAAAAwAAAAAAwAMAAAAAAEADAAAAAAAAAwAAAAAAwAMAAAAAAAADAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAAIAAAAAAAAMAAAAAAIADAAAAAADAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAIAKgAAAAAAACoAAAAAAAACAAAAAAAADAAAAAACAAwAAAAAAAAMAAAAAAEADAAAAAAAAAwAAAAAAQAMAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAAgAAAAAAAAwAAAAAAwAMAAAAAAEADAAAAAACAAwAAAAAAgAMAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + tiles: KgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAALACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAgAqAAAAAAUAKgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAACoAAAAAAgAqAAAAAAAAKgAAAAABACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAUAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAADACoAAAAABAACAAAAAAAAAgAAAAAAAAIAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAcAKgAAAAAAACoAAAAAAAAqAAAAAAAAAgAAAAAAAAcAAAAAAwAHAAAAAAAABwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAAIAAAAAAAAHAAAAAAIADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAACoAAAAADAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAMAKgAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAwAMAAAAAAIADAAAAAAAACwAAAAABQACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAMAKgAAAAAKACoAAAAAAAACAAAAAAAADAAAAAACAAwAAAAAAgAMAAAAAAEADAAAAAACAAwAAAAAAQAMAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAAgAAAAAAAAwAAAAAAAAMAAAAAAMADAAAAAAAAAwAAAAAAgAMAAAAAAIADAAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAABAAwAAAAAAAAMAAAAAAIADAAAAAAAAAwAAAAAAgACAAAAAAAAAgAAAAAAAA8AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAIACoAAAAAAAACAAAAAAAADAAAAAABAAwAAAAAAgAMAAAAAAIADAAAAAADACwAAAAABQAMAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAFACoAAAAACwAqAAAAAAAAAgAAAAAAAAwAAAAAAgAMAAAAAAIADAAAAAABAAwAAAAAAQAMAAAAAAIADAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAAIAAAAAAAAMAAAAAAEADAAAAAAAAAwAAAAAAgAMAAAAAAIADAAAAAADAAwAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAACAAAAAAAADAAAAAADAAwAAAAAAwAMAAAAAAMADAAAAAACAAwAAAAAAAAMAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAAgAAAAAAAAwAAAAAAwAMAAAAAAAADAAAAAADAAwAAAAAAQAMAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== version: 7 2,2: ind: 2,2 - tiles: FQAAAAAAACsAAAAAAwArAAAAAAMAKwAAAAABABUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABUAAAAAAAArAAAAAAIAKwAAAAABACsAAAAAAQAVAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAVAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAACsAAAAAAAArAAAAAAIAKwAAAAABACsAAAAAAwArAAAAAAIAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAQAAAAAAEAEAAAAAAAABAAAAAAAwACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAKwAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAEAAAAAABABAAAAAAAAAQAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAACsAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABAAAAAAAAAQAAAAAAMAEAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAArAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAQAAAAAAEAEAAAAAADABAAAAAAAQACAAAAAAAAMQAAAAAAADEAAAAAAAArAAAAAAEAKwAAAAADACsAAAAAAwArAAAAAAIAKwAAAAADAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAABUAAAAAAAAVAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABAAAAAAAAAQAAAAAAMAEAAAAAABAAIAAAAAAAAxAAAAAAAAMQAAAAAAABsAAAAAAwAbAAAAAAMAGwAAAAACABsAAAAAAQAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAQAAAAAAAAEAAAAAACABAAAAAAAwACAAAAAAAAMQAAAAAAADEAAAAAAAAbAAAAAAAAGwAAAAACABsAAAAAAgAbAAAAAAEAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA== + tiles: FQAAAAAAACsAAAAAAAArAAAAAAEAKwAAAAABABUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABUAAAAAAAArAAAAAAAAKwAAAAABACsAAAAAAAAVAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAVAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAACsAAAAAAQArAAAAAAIAKwAAAAADACsAAAAAAwArAAAAAAEAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAQAAAAAAIAEAAAAAADABAAAAAAAgACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAKwAAAAACAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAIADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAACsAAAAAAgACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABAAAAAAAgAQAAAAAAIAEAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAArAAAAAAEAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAQAAAAAAAAEAAAAAABABAAAAAAAQACAAAAAAAAMQAAAAAAADEAAAAAAAArAAAAAAMAKwAAAAACACsAAAAAAwArAAAAAAAAKwAAAAADAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAEAAAAAAAABAAAAAAAgAQAAAAAAEAAgAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAABUAAAAAAAAVAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABAAAAAAAgAQAAAAAAMAEAAAAAACAAIAAAAAAAAxAAAAAAAAMQAAAAAAABsAAAAAAgAbAAAAAAMAGwAAAAACABsAAAAAAQAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAQAAAAAAEAEAAAAAABABAAAAAAAwACAAAAAAAAMQAAAAAAADEAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAQAbAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA== version: 7 1,2: ind: 1,2 - tiles: HQAAAAAAAB0AAAAAAwARAAAAAAAAEQAAAAABABkAAAAAAQARAAAAAAMAEQAAAAADAB0AAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAMAEQAAAAAAABEAAAAAAwACAAAAAAAAFQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAADABEAAAAAAgAZAAAAAAEAEQAAAAACABEAAAAAAgARAAAAAAMAEQAAAAACABEAAAAAAwARAAAAAAMAEQAAAAAAABEAAAAAAAARAAAAAAIAAgAAAAAAABUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAACABEAAAAAAQARAAAAAAEAEQAAAAACABEAAAAAAwARAAAAAAAAEQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAZAAAAAAAAAgAAAAAAABkAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFQAAAAAAAAIAAAAAAAAQAAAAAAAAHQAAAAAAABAAAAAAAAACAAAAAAAANwAAAAAAADcAAAAAAAARAAAAAAAAEQAAAAADABEAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAgARAAAAAAEAAgAAAAAAACsAAAAAAAACAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAgAAAAAAADcAAAAAAAA3AAAAAAAAEQAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAEAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAZAAAAAAAAAgAAAAAAAAIAAAAAAAA3AAAAAAAANwAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAgARAAAAAAMAEQAAAAABABEAAAAAAQACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAQACAAAAAAAANwAAAAAAADcAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAABABEAAAAAAwARAAAAAAMAAgAAAAAAAAIAAAAAAAAUAAAAAAEAEQAAAAACABEAAAAAAwARAAAAAAAAAgAAAAAAADcAAAAAAAA3AAAAAAAAEQAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAIAEQAAAAABAAIAAAAAAAArAAAAAAMAAgAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAZAAAAAAAAAgAAAAAAABkAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAwARAAAAAAIAGwAAAAAAABsAAAAAAgAbAAAAAAAAGwAAAAACABsAAAAAAwAbAAAAAAEAGwAAAAAAABsAAAAAAQAbAAAAAAMAGwAAAAACABsAAAAAAgAUAAAAAAAAEQAAAAACABEAAAAAAgARAAAAAAEAEQAAAAADABsAAAAAAgAbAAAAAAMAGwAAAAAAABsAAAAAAgAbAAAAAAEAGwAAAAABABsAAAAAAgAbAAAAAAAAGwAAAAABABsAAAAAAQAbAAAAAAEAEQAAAAABABEAAAAAAQARAAAAAAAAEQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAAAGgAAAAAAABQAAAAAAQAUAAAAAAAAFAAAAAACABQAAAAAAgAUAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAAAABoAAAAAAAAUAAAAAAEAFAAAAAAAABQAAAAAAAAUAAAAAAEAFAAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA== + tiles: HQAAAAAAAB0AAAAAAgARAAAAAAEAEQAAAAACABkAAAAAAAARAAAAAAEAEQAAAAACAB0AAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAAAEQAAAAABABEAAAAAAwACAAAAAAAAFQAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAACABEAAAAAAQAZAAAAAAIAEQAAAAABABEAAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAEAEQAAAAAAABEAAAAAAAARAAAAAAAAAgAAAAAAABUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAABABEAAAAAAAARAAAAAAIAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABAAAAAAAAAQAAAAAAIAEAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAZAAAAAAAAAgAAAAAAABkAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFQAAAAAAAAIAAAAAAAAQAAAAAAAAHQAAAAADABAAAAAAAgACAAAAAAAANwAAAAABADcAAAAAAQARAAAAAAEAEQAAAAACABEAAAAAAQARAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAEAAgAAAAAAACsAAAAAAAACAAAAAAAAEAAAAAADABAAAAAAAQAQAAAAAAAAAgAAAAAAADcAAAAAAgA3AAAAAAMAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAEAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAZAAAAAAIAAgAAAAAAAAIAAAAAAAA3AAAAAAIANwAAAAABABEAAAAAAQARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAABABEAAAAAAwACAAAAAAAANwAAAAACADcAAAAAAAARAAAAAAEAEQAAAAAAABEAAAAAAwARAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAIAEQAAAAABABEAAAAAAQARAAAAAAIAAgAAAAAAADcAAAAAAgA3AAAAAAMAEQAAAAACABEAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAgARAAAAAAAAEQAAAAACAAIAAAAAAAArAAAAAAEAAgAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAZAAAAAAIAAgAAAAAAABkAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAABABEAAAAAAQARAAAAAAEAGwAAAAAAABsAAAAAAQAbAAAAAAAAGwAAAAACABsAAAAAAgAbAAAAAAEAGwAAAAACABsAAAAAAQAbAAAAAAMAGwAAAAAAABsAAAAAAQAUAAAAAAMAEQAAAAAAABEAAAAAAQARAAAAAAIAEQAAAAADABsAAAAAAwAbAAAAAAIAGwAAAAACABsAAAAAAgAbAAAAAAMAGwAAAAAAABsAAAAAAQAbAAAAAAMAGwAAAAAAABsAAAAAAAAbAAAAAAMAEQAAAAADABEAAAAAAAARAAAAAAAAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAEAEQAAAAACABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAQARAAAAAAEAGgAAAAAAABQAAAAAAwAUAAAAAAIAFAAAAAAAABQAAAAAAgAUAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAADABoAAAAAAAAUAAAAAAEAFAAAAAABABQAAAAAAQAUAAAAAAAAFAAAAAADAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA== version: 7 0,2: ind: 0,2 - tiles: EQAAAAABABEAAAAAAwARAAAAAAEAEQAAAAACABEAAAAAAQARAAAAAAIAHQAAAAACABEAAAAAAwARAAAAAAIAGQAAAAADABEAAAAAAgARAAAAAAEAHQAAAAADAB0AAAAAAAAdAAAAAAIAHQAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAABABEAAAAAAAARAAAAAAAAEQAAAAACAB0AAAAAAQARAAAAAAEAEQAAAAACABkAAAAAAQARAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAAAEQAAAAABABEAAAAAAQARAAAAAAAAEQAAAAADABEAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAwAdAAAAAAMAEQAAAAADABEAAAAAAgACAAAAAAAAEQAAAAADABEAAAAAAAARAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAEQAAAAADABEAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAwARAAAAAAIAHQAAAAABABEAAAAAAAARAAAAAAAAAgAAAAAAAAsAAAAAAAARAAAAAAMADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAADABEAAAAAAAARAAAAAAIAEQAAAAAAAB0AAAAAAwARAAAAAAAAEQAAAAADAAIAAAAAAAALAAAAAAAADAAAAAADAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAARAAAAAAIAEQAAAAABABEAAAAAAQACAAAAAAAAEQAAAAACABEAAAAAAgARAAAAAAAAEQAAAAABABEAAAAAAwACAAAAAAAACwAAAAAAAAwAAAAAAQAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAMAAgAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAgAUAAAAAAEAFAAAAAAAABQAAAAAAAARAAAAAAIAEQAAAAADAAIAAAAAAAAMAAAAAAEADAAAAAABAAwAAAAAAQACAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAACAAIAAAAAAAAUAAAAAAIAFAAAAAADABQAAAAAAQAUAAAAAAAAEQAAAAABABEAAAAAAQACAAAAAAAADAAAAAADAAwAAAAAAgAMAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAAAABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAEAAgAAAAAAAAwAAAAAAQAMAAAAAAEADAAAAAADABwAAAAAAgARAAAAAAAAEQAAAAADABEAAAAAAgARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAADAAIAAAAAAAAMAAAAAAMADAAAAAABAAwAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAAAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAQACAAAAAAAADAAAAAADAAwAAAAAAQAMAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAEAEQAAAAABABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAHAAAAAABAAIAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAACABEAAAAAAwARAAAAAAEAEQAAAAADAAIAAAAAAAAMAAAAAAAADAAAAAABAAwAAAAAAwACAAAAAAAAEQAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAACABEAAAAAAgARAAAAAAAAEQAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAABABEAAAAAAgACAAAAAAAADAAAAAABAAwAAAAAAQAMAAAAAAEAAgAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAAgAAAAAAAA== + tiles: EQAAAAAAABEAAAAAAwARAAAAAAIAEQAAAAACABEAAAAAAAARAAAAAAMAHQAAAAADABEAAAAAAQARAAAAAAMAGQAAAAADABEAAAAAAQARAAAAAAEAHQAAAAACAB0AAAAAAwAdAAAAAAAAHQAAAAACABEAAAAAAgARAAAAAAIAEQAAAAABABEAAAAAAQARAAAAAAMAEQAAAAAAAB0AAAAAAwARAAAAAAAAEQAAAAAAABkAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAADABEAAAAAAQARAAAAAAAAEQAAAAABABEAAAAAAgACAAAAAAAAEQAAAAACABEAAAAAAAAdAAAAAAEAEQAAAAADABEAAAAAAQACAAAAAAAAEQAAAAACABEAAAAAAQARAAAAAAIADAAAAAABAAwAAAAAAwAMAAAAAAAAEQAAAAACABEAAAAAAQARAAAAAAEAEQAAAAADABEAAAAAAQARAAAAAAIAHQAAAAAAABEAAAAAAgARAAAAAAEAAgAAAAAAAAsAAAAAAAARAAAAAAIADAAAAAABAAwAAAAAAgAMAAAAAAMADAAAAAACABEAAAAAAQARAAAAAAEAEQAAAAAAABEAAAAAAwARAAAAAAEAEQAAAAABAB0AAAAAAwARAAAAAAEAEQAAAAACAAIAAAAAAAALAAAAAAAADAAAAAABAAwAAAAAAQAMAAAAAAAADAAAAAABAAwAAAAAAAARAAAAAAMAEQAAAAADABEAAAAAAgACAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAEAEQAAAAABABEAAAAAAQACAAAAAAAACwAAAAAAAAwAAAAAAAAMAAAAAAIADAAAAAAAAAwAAAAAAAAMAAAAAAIAEQAAAAABABEAAAAAAwARAAAAAAEAAgAAAAAAABEAAAAAAwARAAAAAAEAEQAAAAABABEAAAAAAwARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAwAUAAAAAAEAFAAAAAAAABQAAAAAAAARAAAAAAAAEQAAAAACAAIAAAAAAAAMAAAAAAMADAAAAAADAAwAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAMAEQAAAAACAAIAAAAAAAAUAAAAAAMAFAAAAAABABQAAAAAAQAUAAAAAAEAEQAAAAAAABEAAAAAAgACAAAAAAAADAAAAAACAAwAAAAAAAAMAAAAAAIAAgAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAABABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAEAAgAAAAAAAAwAAAAAAQAMAAAAAAIADAAAAAAAABwAAAAAAgARAAAAAAMAEQAAAAAAABEAAAAAAQARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAADAAIAAAAAAAAMAAAAAAEADAAAAAACAAwAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAAACAAAAAAAADAAAAAACAAwAAAAAAAAMAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAEAEQAAAAAAABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAHAAAAAABAAIAAAAAAAARAAAAAAMAEQAAAAADABEAAAAAAQARAAAAAAMAEQAAAAABABEAAAAAAQARAAAAAAMAEQAAAAADABEAAAAAAAARAAAAAAMAEQAAAAAAAAIAAAAAAAAMAAAAAAMADAAAAAACAAwAAAAAAQACAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAADABEAAAAAAgARAAAAAAMAEQAAAAADABEAAAAAAwARAAAAAAMAEQAAAAACABEAAAAAAgACAAAAAAAADAAAAAABAAwAAAAAAwAMAAAAAAIAAgAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAACAAIAAAAAAAACAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAAgAAAAAAAA== version: 7 3,0: ind: 3,0 - tiles: EQAAAAACABEAAAAAAQARAAAAAAMAEQAAAAABABEAAAAAAgARAAAAAAMAEQAAAAACABEAAAAAAAARAAAAAAMAEQAAAAADAAYAAAAAAgARAAAAAAIAEQAAAAADABEAAAAAAwARAAAAAAMAAgAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAABABEAAAAAAwARAAAAAAEAEQAAAAACABEAAAAAAQARAAAAAAEAEQAAAAACABEAAAAAAQAGAAAAAAEAEQAAAAAAABEAAAAAAAARAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAEAEQAAAAADABEAAAAAAgARAAAAAAMAEQAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAwALAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAEACwAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAEAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACAAsAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAAAAAIAAAAAAAACAAAAAAAACwAAAAAAABEAAAAAAQALAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAGgAAAAAAAB4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAABoAAAAAAAAeAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAaAAAAAAAAHgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAADABQAAAAAAwAUAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAwApAAAAAAMAKQAAAAAAABQAAAAAAwACAAAAAAAAAgAAAAAAAB4AAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAAB4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAEAKQAAAAAAACkAAAAAAwAUAAAAAAIAAgAAAAAAAAIAAAAAAAAzAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAIAEAAAAAABABAAAAAAAAAzAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAACACkAAAAAAAApAAAAAAAAFAAAAAABAAIAAAAAAAACAAAAAAAAMwAAAAAAABAAAAAAAwAzAAAAAAAAAgAAAAAAAAIAAAAAAAAzAAAAAAAAMwAAAAAAABQAAAAAAwAUAAAAAAMAFAAAAAADABQAAAAAAwApAAAAAAIAKQAAAAADABQAAAAAAgACAAAAAAAAAgAAAAAAAA== + tiles: EQAAAAADABEAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAAARAAAAAAIAEQAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAAAAAYAAAAAAAARAAAAAAIAEQAAAAABABEAAAAAAAARAAAAAAIAAgAAAAAAABEAAAAAAQARAAAAAAIAEQAAAAABABEAAAAAAgARAAAAAAMAEQAAAAADABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAgAGAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAAAEQAAAAACABEAAAAAAQARAAAAAAEAEQAAAAABABEAAAAAAgARAAAAAAIAEQAAAAADAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAAALAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAEAEQAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAACABEAAAAAAQACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAMACwAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAwARAAAAAAIAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAADAAsAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAEAEQAAAAAAAAIAAAAAAAACAAAAAAAACwAAAAAAABEAAAAAAgALAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAGgAAAAAAAB4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAABoAAAAAAAAeAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAaAAAAAAAAHgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAGgAAAAAAAB4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAABoAAAAAAAAeAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAOAAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADgAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAA4AAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAABEAAAAAAgAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAACAAAAAAAAAgAAAAAAAA== version: 7 3,-1: ind: 3,-1 - tiles: FAAAAAAAAAIAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAOAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAADgAAAAAAADEAAAAAAAAUAAAAAAAAAgAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA4AAAAAAAAxAAAAAAAAFAAAAAAAAAIAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAAARAAAAAAEAEQAAAAAAAAIAAAAAAAAOAAAAAAAAMQAAAAAAABQAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAACABEAAAAAAwACAAAAAAAADgAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAAARAAAAAAAAAgAAAAAAAA4AAAAAAAAxAAAAAAAADAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAEAEQAAAAABAAIAAAAAAAAOAAAAAAAAMQAAAAAAAAwAAAAAAAACAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAHAAAAAAAABIAAAAAAAASAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAEAEQAAAAAAABEAAAAAAwACAAAAAAAADgAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAASAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAMAAgAAAAAAAAIAAAAAAAAxAAAAAAAANgAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAwARAAAAAAAAEQAAAAADABEAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAIAAgAAAAAAAAIAAAAAAAA2AAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAAARAAAAAAIAEQAAAAAAABEAAAAAAQARAAAAAAIAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAEAEQAAAAAAABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHAAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAAAEQAAAAADABEAAAAAAQAGAAAAAAIAEQAAAAADABEAAAAAAQARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAAAABEAAAAAAgARAAAAAAEABgAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAACABEAAAAAAgACAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAEAEQAAAAABABEAAAAAAQARAAAAAAIAEQAAAAADABEAAAAAAwARAAAAAAAAEQAAAAABAAYAAAAAAQARAAAAAAIAEQAAAAABABEAAAAAAQARAAAAAAIAAgAAAAAAAA== + tiles: FAAAAAADAAIAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAOAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAADgAAAAAAADEAAAAAAAAUAAAAAAAAAgAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA4AAAAAAAAxAAAAAAAAFAAAAAADAAIAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAACAAIAAAAAAAAOAAAAAAAAMQAAAAAAABQAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAEAEQAAAAABABEAAAAAAgACAAAAAAAADgAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAABABEAAAAAAwARAAAAAAEAAgAAAAAAAA4AAAAAAAAxAAAAAAAADAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAQARAAAAAAEAEQAAAAABAAIAAAAAAAAOAAAAAAAAMQAAAAAAAAwAAAAAAwACAAAAAAAADAAAAAABAAwAAAAAAAAMAAAAAAAAHAAAAAADABIAAAAAAAASAAAAAAIAAgAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAAAABEAAAAAAQACAAAAAAAADgAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAQAMAAAAAAIADAAAAAADAAwAAAAAAQASAAAAAAMAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAADABEAAAAAAwARAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAANgAAAAAAAAwAAAAAAQAMAAAAAAAADAAAAAADAAwAAAAAAQAMAAAAAAIAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAAAABEAAAAAAgACAAAAAAAAAgAAAAAAAAwAAAAAAQAMAAAAAAAADAAAAAADAAwAAAAAAAAMAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAADABEAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAQARAAAAAAMAAgAAAAAAAAIAAAAAAAA2AAAAAAAADAAAAAAAAAwAAAAAAwAMAAAAAAIAAgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAQAMAAAAAAIADAAAAAABAAIAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAwARAAAAAAAAEQAAAAABABEAAAAAAQARAAAAAAAAEQAAAAADABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHAAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAQAGAAAAAAMAEQAAAAAAABEAAAAAAQARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAMAAgAAAAAAABEAAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAwARAAAAAAEABgAAAAACABEAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAwACAAAAAAAAEQAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAEAEQAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAAAAAYAAAAAAgARAAAAAAAAEQAAAAACABEAAAAAAgARAAAAAAIAAgAAAAAAAA== version: 7 3,-2: ind: 3,-2 - tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAABQAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAUAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAAFAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAMQAAAAAAABQAAAAAAAACAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAAFAAAAAAAAAIAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAOAAAAAAAAMQAAAAAAAA== + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAABQAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAUAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAAFAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAMQAAAAAAABQAAAAAAwACAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAAFAAAAAADAAIAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAOAAAAAAAAMQAAAAAAAA== version: 7 3,-3: ind: 3,-3 - tiles: DgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAACACoAAAAAAAAqAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAcAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAqAAAAAAAAKgAAAAALACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAQAqAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAADACoAAAAAAAAqAAAAAAEAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAABgAqAAAAAAAAKgAAAAAGACoAAAAAAAAqAAAAAAIAKgAAAAAAACoAAAAAAAAqAAAAAAoAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAAIAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAACoAAAAADAAqAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAEAFAAAAAABABQAAAAAAQAUAAAAAAIAFAAAAAAAABQAAAAAAQAUAAAAAAEAFAAAAAACABQAAAAAAAAUAAAAAAAAFAAAAAAAAAIAAAAAAAAqAAAAAAAAKgAAAAAAABQAAAAAAgAUAAAAAAEAFAAAAAACABQAAAAAAAAUAAAAAAEAFAAAAAACABQAAAAAAAAUAAAAAAEAFAAAAAADABQAAAAAAgAUAAAAAAMAFAAAAAABABQAAAAAAAACAAAAAAAAKgAAAAAAACoAAAAAAAAUAAAAAAEAFAAAAAACABQAAAAAAAAUAAAAAAEAFAAAAAACABQAAAAAAQAUAAAAAAAAFAAAAAADABQAAAAAAgAUAAAAAAAAFAAAAAACABQAAAAAAgAUAAAAAAMAAgAAAAAAACoAAAAAAAAqAAAAAAAAFAAAAAABABQAAAAAAAAUAAAAAAMAFAAAAAABABQAAAAAAAAUAAAAAAMAFAAAAAACABQAAAAAAAAUAAAAAAEAFAAAAAADABQAAAAAAgAUAAAAAAIAFAAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAHAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAACQAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAFAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAACQAqAAAAAAAAKgAAAAAMACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAcAKgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAAIAAAAAAAAqAAAAAAoAKgAAAAAAACoAAAAABQAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAUAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAACoAAAAACQAqAAAAAAAAFAAAAAADABQAAAAAAgAUAAAAAAAAFAAAAAAAABQAAAAAAQAUAAAAAAAAFAAAAAACABQAAAAAAQAUAAAAAAMAFAAAAAADABQAAAAAAQAUAAAAAAMAFAAAAAAAAAIAAAAAAAAqAAAAAAAAKgAAAAAAABQAAAAAAgAUAAAAAAAAFAAAAAADABQAAAAAAAAUAAAAAAMAFAAAAAABABQAAAAAAgAUAAAAAAMAFAAAAAACABQAAAAAAQAUAAAAAAMAFAAAAAADABQAAAAAAQACAAAAAAAAKgAAAAAAACoAAAAAAAAUAAAAAAMAFAAAAAABABQAAAAAAQAUAAAAAAIAFAAAAAACABQAAAAAAwAUAAAAAAMAFAAAAAADABQAAAAAAQAUAAAAAAIAFAAAAAAAABQAAAAAAgAUAAAAAAAAAgAAAAAAACoAAAAAAAAqAAAAAAAAFAAAAAACABQAAAAAAwAUAAAAAAEAFAAAAAADABQAAAAAAwAUAAAAAAEAFAAAAAADABQAAAAAAQAUAAAAAAAAFAAAAAABABQAAAAAAwAUAAAAAAIAFAAAAAABAAIAAAAAAAACAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA== version: 7 -1,2: ind: -1,2 - tiles: DAAAAAAAABwAAAAAAwAMAAAAAAEADAAAAAADAAwAAAAAAwACAAAAAAAADAAAAAACAAwAAAAAAQAMAAAAAAMADAAAAAADAAwAAAAAAgAMAAAAAAEADAAAAAABAAIAAAAAAAARAAAAAAMAEQAAAAADAAIAAAAAAAACAAAAAAAADAAAAAADAAwAAAAAAAAMAAAAAAIAAgAAAAAAAAwAAAAAAQAMAAAAAAMADAAAAAADAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAQAPAAAAAAAAAgAAAAAAAAIAAAAAAAAcAAAAAAIAAgAAAAAAAAIAAAAAAAAMAAAAAAIADAAAAAACAAwAAAAAAQAMAAAAAAAADAAAAAABAAwAAAAAAQAMAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAMADwAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAABAAwAAAAAAwAMAAAAAAAADAAAAAACAAwAAAAAAgAMAAAAAAMADAAAAAABAAwAAAAAAQAMAAAAAAEADAAAAAACAAIAAAAAAAARAAAAAAEAEQAAAAABAA8AAAAAAAACAAAAAAAADAAAAAADAAwAAAAAAgAMAAAAAAMADAAAAAADAAwAAAAAAAAMAAAAAAIADAAAAAAAAAwAAAAAAwAMAAAAAAMADAAAAAADAAwAAAAAAwARAAAAAAEAEQAAAAADABEAAAAAAgAPAAAAAAAADwAAAAAAAAwAAAAAAQAMAAAAAAEADAAAAAADAAwAAAAAAgAMAAAAAAMADAAAAAAAAAwAAAAAAwAMAAAAAAMADAAAAAACAAwAAAAAAgAMAAAAAAAAEQAAAAACABEAAAAAAQARAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAIADAAAAAADAAwAAAAAAwAMAAAAAAIADAAAAAABAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAwAMAAAAAAIADAAAAAABAAIAAAAAAAARAAAAAAMAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAQARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAVAAAAAAAAEQAAAAADACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAARAAAAAAMAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFQAAAAAAABEAAAAAAwAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAEQAAAAADABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAQARAAAAAAMAEQAAAAACABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAEAFAAAAAAAABQAAAAAAQAUAAAAAAIAAgAAAAAAAA== + tiles: DAAAAAABABwAAAAAAwAMAAAAAAEADAAAAAAAAAwAAAAAAQACAAAAAAAADAAAAAAAAAwAAAAAAQAMAAAAAAIADAAAAAADAAwAAAAAAAAMAAAAAAMADAAAAAABAAIAAAAAAAARAAAAAAMAEQAAAAABAAIAAAAAAAACAAAAAAAADAAAAAACAAwAAAAAAwAMAAAAAAEAAgAAAAAAAAwAAAAAAgAMAAAAAAMADAAAAAAAAAwAAAAAAgAMAAAAAAAADAAAAAAAAAwAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAcAAAAAAEAAgAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAACAAwAAAAAAAAMAAAAAAEADAAAAAABAAwAAAAAAQAMAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAIADwAAAAAAAAIAAAAAAAAMAAAAAAEADAAAAAADAAwAAAAAAAAMAAAAAAMADAAAAAABAAwAAAAAAQAMAAAAAAEADAAAAAADAAwAAAAAAgAMAAAAAAEADAAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAACAA8AAAAAAAACAAAAAAAADAAAAAABAAwAAAAAAQAMAAAAAAEADAAAAAABAAwAAAAAAgAMAAAAAAEADAAAAAABAAwAAAAAAAAMAAAAAAMADAAAAAAAAAwAAAAAAgARAAAAAAAAEQAAAAABABEAAAAAAwAPAAAAAAAADwAAAAAAAAwAAAAAAQAMAAAAAAIADAAAAAADAAwAAAAAAgAMAAAAAAAADAAAAAADAAwAAAAAAwAMAAAAAAIADAAAAAACAAwAAAAAAgAMAAAAAAMAEQAAAAAAABEAAAAAAgARAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAIADAAAAAACAAwAAAAAAgAMAAAAAAIADAAAAAADAAwAAAAAAQAMAAAAAAMADAAAAAADAAwAAAAAAQAMAAAAAAMADAAAAAADAAIAAAAAAAARAAAAAAIAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAwARAAAAAAIAEQAAAAAAABEAAAAAAQARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAVAAAAAAAAEQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAARAAAAAAMAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFQAAAAAAABEAAAAAAwAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAEQAAAAAAABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAADABEAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAABABQAAAAAAwAUAAAAAAEAFAAAAAADABQAAAAAAgAUAAAAAAIAAgAAAAAAAA== version: 7 -2,2: ind: -2,2 - tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAwAMAAAAAAEADAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAEAEQAAAAABABEAAAAAAAARAAAAAAMAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAABEAAAAAAwARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAARAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAEQAAAAAAABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAQAMAAAAAAIADAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAACABEAAAAAAAARAAAAAAIAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAABEAAAAAAgARAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAEQAAAAACABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAAAABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== version: 7 -3,2: ind: -3,2 - tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAaAAAAAAAADwAAAAAAAA8AAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAQAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAAAhAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAIAIQAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAACACEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAaAAAAAAAADwAAAAAAAA8AAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAgAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAwAhAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAIAIQAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAACACEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA== version: 7 2,-4: ind: 2,-4 - tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAIAFAAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABQAAAAAAQAUAAAAAAEAFAAAAAADABQAAAAAAQAUAAAAAAEAFAAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAUAAAAAAEAFAAAAAAAABQAAAAAAQAUAAAAAAAAFAAAAAACABQAAAAAAwACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAFAAAAAAAABQAAAAAAgAUAAAAAAIAFAAAAAAAABQAAAAAAwAUAAAAAAEAFAAAAAABAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABQAAAAAAQAUAAAAAAAAFAAAAAADABQAAAAAAAAUAAAAAAMAFAAAAAADABQAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAUAAAAAAMAFAAAAAABABQAAAAAAwAUAAAAAAAAFAAAAAADABQAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAFAAAAAAAABQAAAAAAgAUAAAAAAIAFAAAAAABABQAAAAAAQAUAAAAAAIAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAPAAAAAAAAFAAAAAAAABQAAAAAAwAPAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAADwAAAAAAABQAAAAAAQAUAAAAAAAADwAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAAgAAAAAAAA8AAAAAAAAUAAAAAAIAFAAAAAADAA8AAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAAPAAAAAAAAFAAAAAACABQAAAAAAQAPAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAACAAAAAAAADwAAAAAAABQAAAAAAwAUAAAAAAEADwAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAAaAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAA8AAAAAAAAUAAAAAAIAFAAAAAACAA8AAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAIAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABQAAAAAAgAUAAAAAAAAFAAAAAAAABQAAAAAAgAUAAAAAAAAFAAAAAABAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAUAAAAAAEAFAAAAAADABQAAAAAAgAUAAAAAAIAFAAAAAAAABQAAAAAAQACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAFAAAAAABABQAAAAAAAAUAAAAAAEAFAAAAAACABQAAAAAAwAUAAAAAAAAFAAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAADABQAAAAAAAAUAAAAAAMAFAAAAAABABQAAAAAAgACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAUAAAAAAEAFAAAAAACABQAAAAAAwAUAAAAAAAAFAAAAAADABQAAAAAAgACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAFAAAAAAAABQAAAAAAwAUAAAAAAIAFAAAAAABABQAAAAAAwAUAAAAAAEAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAPAAAAAAAAFAAAAAAAABQAAAAAAwAPAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAADwAAAAAAABQAAAAAAQAUAAAAAAAADwAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAAgAAAAAAAA8AAAAAAAAUAAAAAAMAFAAAAAACAA8AAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAAPAAAAAAAAFAAAAAADABQAAAAAAgAPAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAACAAAAAAAADwAAAAAAABQAAAAAAAAUAAAAAAAADwAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAAaAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAA8AAAAAAAAUAAAAAAMAFAAAAAABAA8AAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 1,-4: ind: 1,-4 - tiles: MQAAAAAAADEAAAAAAAAqAAAAAAEAKgAAAAAAACoAAAAACAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAKgAAAAAFACoAAAAAAAAqAAAAAAkAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAACoAAAAAAAAqAAAAAAQAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAUAKgAAAAAHAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAFACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAIACoAAAAAAwAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAFAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABQAAAAAAgAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAB4AAAAAAAAeAAAAAAAAAgAAAAAAADAAAAAAAAAwAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAeAAAAAAAAHgAAAAAAAAIAAAAAAAAwAAAAAAAAMAAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAHgAAAAAAAB4AAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAB4AAAAAAAAeAAAAAAAAAgAAAAAAADAAAAAAAAAwAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: MQAAAAAAADEAAAAAAAAqAAAAAAAAKgAAAAAKACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAACQAqAAAAAAgAKgAAAAAAACoAAAAAAAAqAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAIAKgAAAAAAACoAAAAAAQAqAAAAAAcAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAACoAAAAABAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAIAKgAAAAAAACoAAAAAAQAqAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAACwAqAAAAAAAAKgAAAAAGACoAAAAABQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAACAAqAAAAAAAAKgAAAAAAACoAAAAACgAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAFAAAAAADAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABQAAAAAAwAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAB4AAAAAAAAeAAAAAAAAAgAAAAAAADAAAAAAAAAwAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAeAAAAAAAAHgAAAAAAAAIAAAAAAAAwAAAAAAAAMAAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAHgAAAAAAAB4AAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAB4AAAAAAAAeAAAAAAAAAgAAAAAAADAAAAAAAAAwAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 -2,3: ind: -2,3 - tiles: DgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAKgAAAAAMADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAqAAAAAAsAKgAAAAAAACoAAAAABQAqAAAAAAMAKgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAACoAAAAACAAqAAAAAAsAKgAAAAAAACoAAAAABgAqAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAUADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: DgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAKgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAKgAAAAAMACoAAAAAAAAqAAAAAAYAKgAAAAAMACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAADAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAIACoAAAAAAAAqAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 -1,3: ind: -1,3 - tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAMAEQAAAAACABEAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAQARAAAAAAEAEQAAAAADABEAAAAAAgARAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAAAEQAAAAAAABEAAAAAAgARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAIAEQAAAAAAABEAAAAAAwACAAAAAAAADwAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAABABEAAAAAAAARAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAgAaAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAQARAAAAAAMAEQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAQARAAAAAAMAKgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAACoAAAAAAAAqAAAAAAsAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABoAAAAAAAACAAAAAAAAGgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAYAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAIAEQAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAACABEAAAAAAQARAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAEAEQAAAAAAABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAEAEQAAAAABABEAAAAAAgARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAIAEQAAAAABABEAAAAAAwACAAAAAAAADwAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAABABEAAAAAAAAaAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAAARAAAAAAEAEQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAMAKgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABoAAAAAAAACAAAAAAAAGgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAUAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 0,3: ind: 0,3 - tiles: EQAAAAABABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAIAEQAAAAADAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAABEAAAAAAwARAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAEAEQAAAAABAAIAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAQAUAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAARAAAAAAAAEQAAAAACAAIAAAAAAAARAAAAAAMAKQAAAAACABEAAAAAAQARAAAAAAMAEQAAAAACABEAAAAAAwARAAAAAAMAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAEQAAAAABABEAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAACAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAABEAAAAAAQARAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAARAAAAAAIAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAAaAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAA== + tiles: EQAAAAAAABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAAAEQAAAAADAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAABEAAAAAAAARAAAAAAMAAgAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAABAAIAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAgAUAAAAAAEADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAARAAAAAAIAEQAAAAABAAIAAAAAAAARAAAAAAMAKQAAAAACABEAAAAAAgARAAAAAAMAEQAAAAAAABEAAAAAAAARAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAEQAAAAABABEAAAAAAgACAAAAAAAAEQAAAAAAABEAAAAAAgARAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAACAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAABEAAAAAAwARAAAAAAIAAgAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAARAAAAAAMAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAAaAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAA== version: 7 1,3: ind: 1,3 - tiles: AgAAAAAAABEAAAAAAwARAAAAAAIAEQAAAAAAABoAAAAAAAAUAAAAAAAAFAAAAAABABQAAAAAAwAUAAAAAAAAFAAAAAACAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAABQAAAAAAAARAAAAAAAAEQAAAAABABEAAAAAAgAaAAAAAAAAFAAAAAADABQAAAAAAgAUAAAAAAIAFAAAAAAAABQAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAADAAIAAAAAAAACAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAACoAAAAAAAAqAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAqAAAAAAYAKgAAAAABAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAaAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAABoAAAAAAAAaAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAaAAAAAAAAGgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: AgAAAAAAABEAAAAAAwARAAAAAAIAEQAAAAADABoAAAAAAAAUAAAAAAMAFAAAAAACABQAAAAAAAAUAAAAAAMAFAAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAABQAAAAAAQARAAAAAAAAEQAAAAACABEAAAAAAwAaAAAAAAAAFAAAAAABABQAAAAAAwAUAAAAAAMAFAAAAAADABQAAAAAAQACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAABAAIAAAAAAAACAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAACoAAAAAAAAqAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAqAAAAAAAAKgAAAAAJAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAaAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAABoAAAAAAAAaAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAaAAAAAAAAGgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 2,3: ind: 2,3 - tiles: AgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABoAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAMAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAKgAAAAAIACoAAAAACAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: AgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAABoAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAsAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAACoAAAAABAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 3,2: ind: 3,2 - tiles: MQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: MQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 3,1: ind: 3,1 - tiles: MwAAAAAAABAAAAAAAAAzAAAAAAAAMwAAAAAAAAIAAAAAAAAzAAAAAAAAEAAAAAAAAAIAAAAAAAAUAAAAAAMAAgAAAAAAABQAAAAAAAApAAAAAAAAKQAAAAACABQAAAAAAgACAAAAAAAAAgAAAAAAADMAAAAAAAAQAAAAAAMAMwAAAAAAAAIAAAAAAAACAAAAAAAAMwAAAAAAADMAAAAAAAAUAAAAAAIAFAAAAAAAABQAAAAAAQAUAAAAAAAAKQAAAAACACkAAAAAAgAUAAAAAAAAAgAAAAAAAAIAAAAAAAAeAAAAAAAAEAAAAAACABAAAAAAAwAQAAAAAAAAEAAAAAABABAAAAAAAAAzAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAACACkAAAAAAgApAAAAAAAAFAAAAAADAAIAAAAAAAACAAAAAAAAMwAAAAAAABAAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAAQAAAAAAIAMwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAMAFAAAAAACABQAAAAAAwACAAAAAAAAAgAAAAAAADMAAAAAAAAQAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEAAAAAABADMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAzAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAEAEAAAAAACABAAAAAAAwAzAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAAIAAAAAAAACAAAAAAAAHgAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAHgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAA== + tiles: AgAAAAAAAAIAAAAAAAA4AAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAABEAAAAAAgAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAAgAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAAgAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADMAAAAAAAA6AAAAAAAAOgAAAAACAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAA6AAAAAAAAOgAAAAACADMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAzAAAAAAAAOgAAAAADADoAAAAAAAA6AAAAAAAAOgAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADoAAAAAAAA6AAAAAAAAOgAAAAAAADoAAAAAAQAzAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAMwAAAAAAADMAAAAAAAA6AAAAAAEAMwAAAAAAADMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAzAAAAAAAAMwAAAAAAADoAAAAAAAAzAAAAAAAAMwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAzAAAAAAAAMwAAAAAAADoAAAAAAgA6AAAAAAEAOgAAAAADADMAAAAAAAAzAAAAAAAAMwAAAAAAADoAAAAAAwA6AAAAAAEAOgAAAAADADMAAAAAAAAzAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAMwAAAAAAADMAAAAAAAA6AAAAAAAAOgAAAAACADoAAAAAAwAzAAAAAAAAMwAAAAAAADMAAAAAAAA6AAAAAAEAOgAAAAAAADoAAAAAAgAzAAAAAAAAMwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAaAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAA== version: 7 3,3: ind: 3,3 @@ -331,7 +334,7 @@ entities: version: 7 -4,0: ind: -4,0 - tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAEAEQAAAAABABEAAAAAAQARAAAAAAMAEQAAAAACABEAAAAAAwAlAAAAAAAAJQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAADABEAAAAAAgARAAAAAAIAEQAAAAADAAIAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAwARAAAAAAMAEQAAAAADABEAAAAAAgACAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAgARAAAAAAAAEQAAAAABABEAAAAAAQARAAAAAAEAAgAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAQAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAAgAAAAAAAAwAAAAAAQAMAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAAgAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAABwAAAAAAAAMAAAAAAIADAAAAAADAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAAIAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAACAAAAAAAADAAAAAAAAAwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAQAhAAAAAAAAIQAAAAAAACEAAAAAAAAMAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAAgAAAAAAAAwAAAAAAQAMAAAAAAAADAAAAAABAAwAAAAAAwAMAAAAAAEADAAAAAADAAwAAAAAAAACAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAAIAAAAAAAAMAAAAAAIADAAAAAADAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAgAMAAAAAAEAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAEADAAAAAACAAwAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAADAAAAAADAAwAAAAAAQAMAAAAAAEAAgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAgARAAAAAAIAEQAAAAAAABEAAAAAAQAlAAAAAAAAJQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAABAAIAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAACABEAAAAAAAACAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAgARAAAAAAEAEQAAAAADABEAAAAAAAARAAAAAAAAAgAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAQAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAAgAAAAAAAAwAAAAAAwAMAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAAgAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAABwAAAAAAgAMAAAAAAAADAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAAIAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAACAAAAAAAADAAAAAADAAwAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAwAhAAAAAAAAIQAAAAAAACEAAAAAAAAMAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAAgAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAADAAwAAAAAAgAMAAAAAAEADAAAAAADAAwAAAAAAwACAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAAIAAAAAAAAMAAAAAAMADAAAAAACAAwAAAAAAQAMAAAAAAIADAAAAAACAAwAAAAAAgAMAAAAAAIAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAADAAwAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAADAAAAAADAAwAAAAAAAAMAAAAAAAAAgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 -4,1: ind: -4,1 @@ -347,43 +350,43 @@ entities: version: 7 -4,-4: ind: -4,-4 - tiles: MQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAKgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAaAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAgAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAACACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAGACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAgAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAGgAAAAAAAAIAAAAAAAACAAAAAAAAKgAAAAAIACoAAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAgAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAFAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + tiles: MQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAKgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAaAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAcADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAYADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAFACoAAAAABgAqAAAAAAAAKgAAAAAAACoAAAAABQAqAAAAAAEAKgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAgAKgAAAAAAACoAAAAAAAAqAAAAAAAAGgAAAAAAAAIAAAAAAAACAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAACAAqAAAAAAwAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== version: 7 1,-5: ind: 1,-5 - tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAABgAqAAAAAAsAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAABACoAAAAAAQAqAAAAAAAAKgAAAAADACoAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAHACoAAAAAAwAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAgAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAEAKgAAAAAAACoAAAAACAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 0,-5: ind: 0,-5 - tiles: DgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAEAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAADAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAEAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGgAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAABAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAADABEAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAMAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAADAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAQACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAEAEQAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABoAAAAAAAARAAAAAAEAEQAAAAABABEAAAAAAQACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAAARAAAAAAEAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAABAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAgACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAgARAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGgAAAAAAABEAAAAAAgARAAAAAAAAEQAAAAACAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAADABEAAAAAAwACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAMAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAQACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAIAEQAAAAABAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABoAAAAAAAARAAAAAAAAEQAAAAADABEAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAgARAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAIAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAQACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 -1,-5: ind: -1,-5 - tiles: DgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAQACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAEAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAADAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAADABEAAAAAAQACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAAARAAAAAAEAGgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAMAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAQACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAgARAAAAAAEAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAACABoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAABABEAAAAAAwACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAACAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAQACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAQACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAIAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAADAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAQACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAQARAAAAAAEAGgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAACAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAwACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAMAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAwACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAMAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAAAEQAAAAADABoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAQACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAACAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 -1,-6: ind: -1,-6 - tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAABEAAAAAAgARAAAAAAIAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAADAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAaAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAEQAAAAABABEAAAAAAwACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAABEAAAAAAgARAAAAAAIAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAADAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAaAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAEQAAAAABABEAAAAAAQACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 0,-6: ind: 0,-6 - tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAIADwAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAwAPAAAAAAAAAgAAAAAAAAIAAAAAAAAaAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAEADwAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAgAPAAAAAAAAAgAAAAAAAAIAAAAAAAAaAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 -4,-1: ind: -4,-1 - tiles: DgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAABABEAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAwAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAEQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAABEAAAAAAQARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAABEAAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAwARAAAAAAAAEQAAAAABAAIAAAAAAAACAAAAAAAAMAAAAAAAADAAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAMAEQAAAAAAABEAAAAAAAARAAAAAAMAAgAAAAAAABMAAAAAAAAwAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABAB0AAAAAAAAdAAAAAAAAHQAAAAAAABEAAAAAAgARAAAAAAAAEQAAAAAAADAAAAAAAAATAAAAAAAAMAAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAwACAAAAAAAAEwAAAAAAADAAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAdAAAAAAAAHQAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAABABEAAAAAAQACAAAAAAAAAgAAAAAAADAAAAAAAAAwAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAgARAAAAAAMAEQAAAAAAABEAAAAAAgARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAGgAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAAB0AAAAAAAAdAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAMAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAZAAAAAAAAGQAAAAADABEAAAAAAQARAAAAAAMAEQAAAAAAABEAAAAAAgACAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAGQAAAAACABkAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAAAAgAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAAA4AAAAAAAAOAAAAAAAAGgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAABkAAAAAAgAZAAAAAAMAEQAAAAACABEAAAAAAgARAAAAAAIAEQAAAAACAAIAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAOAAAAAAAADgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAABoAAAAAAAAdAAAAAAAAHQAAAAAAABEAAAAAAwARAAAAAAIAEQAAAAADABEAAAAAAQACAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAQARAAAAAAEAEQAAAAABABEAAAAAAwAlAAAAAAAAJQAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAADABEAAAAAAwARAAAAAAIAEQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAABABEAAAAAAgARAAAAAAAAEQAAAAACABEAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAEQAAAAACAB0AAAAAAAAdAAAAAAIAHQAAAAABABEAAAAAAAARAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAABEAAAAAAgAdAAAAAAIAHQAAAAAAAB0AAAAAAAARAAAAAAMAEQAAAAAAAAIAAAAAAAACAAAAAAAAMAAAAAAAADAAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAHQAAAAABAB0AAAAAAQAdAAAAAAIAEQAAAAABABEAAAAAAAARAAAAAAEAAgAAAAAAABMAAAAAAAAwAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABAB0AAAAAAgAdAAAAAAAAHQAAAAADABEAAAAAAAARAAAAAAMAEQAAAAAAADAAAAAAAAATAAAAAAAAMAAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAAAABEAAAAAAQARAAAAAAIAEQAAAAABABEAAAAAAwACAAAAAAAAEwAAAAAAADAAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAdAAAAAAIAHQAAAAADABEAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAwACAAAAAAAAAgAAAAAAADAAAAAAAAAwAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAMAEQAAAAACABEAAAAAAwARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAGgAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAAB0AAAAAAwAdAAAAAAIAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAZAAAAAAMAGQAAAAACABEAAAAAAgARAAAAAAEAEQAAAAADABEAAAAAAwACAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAGQAAAAAAABkAAAAAAwARAAAAAAEAEQAAAAABABEAAAAAAgARAAAAAAEAAgAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAAA4AAAAAAAAOAAAAAAAAGgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAABkAAAAAAAAZAAAAAAMAEQAAAAABABEAAAAAAQARAAAAAAIAEQAAAAABAAIAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAOAAAAAAAADgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAABoAAAAAAAAdAAAAAAAAHQAAAAABABEAAAAAAwARAAAAAAAAEQAAAAACABEAAAAAAAACAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAADABEAAAAAAgARAAAAAAEAEQAAAAAAABEAAAAAAwAlAAAAAAAAJQAAAAAAAA== version: 7 4,1: ind: 4,1 - tiles: AgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA== + tiles: AgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA== version: 7 4,0: ind: 4,0 - tiles: BgAAAAABAAIAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAABoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAaAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: BgAAAAACAAIAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAABoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAaAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAaAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 4,-1: ind: 4,-1 - tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAAaAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAGAAAAAAIAAgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAABgAAAAABAAIAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAAaAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAGAAAAAAEAAgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAABgAAAAAAAAIAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 4,-2: ind: 4,-2 @@ -391,11 +394,11 @@ entities: version: 7 -3,-5: ind: -3,-5 - tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAgADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAACoAAAAAAAAqAAAAAAUAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAKACoAAAAACgAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAACgAqAAAAAAcAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAABAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAcADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAIAKgAAAAABACoAAAAAAQAqAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAMAKgAAAAAEAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAMACoAAAAAAAAqAAAAAAAADgAAAAAAACoAAAAABQAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAABQAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAACoAAAAAAAAqAAAAAAYAKgAAAAALAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAFAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAACQAqAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAwAqAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 -5,-3: ind: -5,-3 - tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAJAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAKgAAAAAMACoAAAAAAAAqAAAAAAMAKgAAAAAAACoAAAAACgAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 -5,-4: ind: -5,-4 @@ -403,7 +406,7 @@ entities: version: 7 4,-3: ind: 4,-3 - tiles: DgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAHAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAALAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: DgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAFAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 -4,-5: ind: -4,-5 @@ -693,6 +696,14 @@ entities: 2470: 7,51 2486: 3,50 2492: 5,50 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkBox + decals: + 4980: 50,24 + 4981: 60,24 + 4984: 59,18 + 4985: 51,18 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe @@ -700,6 +711,9 @@ entities: 872: -53,8 873: -52,7 1725: 42,-40 + 4906: 61,16 + 4979: 61,25 + 4992: 57,18 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw @@ -708,17 +722,23 @@ entities: 874: -57,7 1724: 40,-40 3888: 20,8 + 4912: 52,16 + 4963: 49,25 + 4991: 53,18 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: 875: -52,5 + 4905: 59,13 + 4908: 61,14 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: 876: -57,5 3889: 20,5 + 4909: 52,13 - node: color: '#FFFFFFFF' id: BrickTileDarkEndE @@ -733,6 +753,8 @@ entities: 3866: 23,5 4565: 45,-14 4741: 34,-14 + 4872: 54,14 + 4893: 57,16 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw @@ -743,6 +765,8 @@ entities: 4568: 47,-14 4607: 39,-16 4740: 36,-14 + 4871: 56,14 + 4892: 53,16 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe @@ -750,6 +774,9 @@ entities: 3865: 23,8 4566: 45,-12 4761: 37,-16 + 4868: 54,17 + 4873: 54,17 + 4878: 59,14 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw @@ -757,6 +784,8 @@ entities: 4182: 23,39 4567: 47,-12 4584: 39,-14 + 4867: 56,17 + 4874: 56,17 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE @@ -777,6 +806,19 @@ entities: 4561: 45,-13 4760: 37,-17 4764: 37,-15 + 4862: 54,15 + 4863: 54,16 + 4883: 57,17 + 4907: 61,15 + 4975: 61,24 + 4976: 61,23 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 4869: 56,16 + 4870: 56,15 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN @@ -787,6 +829,23 @@ entities: 3507: -8,-24 4564: 46,-14 4742: 35,-14 + 4880: 60,16 + 4881: 59,16 + 4882: 58,16 + 4885: 56,18 + 4886: 55,18 + 4887: 54,18 + 4964: 50,25 + 4965: 51,25 + 4966: 52,25 + 4967: 53,25 + 4968: 54,25 + 4969: 55,25 + 4970: 56,25 + 4971: 57,25 + 4972: 58,25 + 4973: 59,25 + 4974: 60,25 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS @@ -796,6 +855,15 @@ entities: 879: -54,5 880: -53,5 4563: 46,-12 + 4866: 55,17 + 4875: 60,14 + 4898: 52,13 + 4899: 53,13 + 4900: 54,13 + 4901: 55,13 + 4902: 56,13 + 4903: 57,13 + 4904: 58,13 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW @@ -811,6 +879,11 @@ entities: 4562: 47,-13 4590: 39,-15 4602: 39,-17 + 4889: 53,17 + 4910: 52,14 + 4911: 52,15 + 4977: 49,23 + 4978: 49,24 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNe @@ -848,6 +921,7 @@ entities: id: BrickTileSteelEndN decals: 2315: -8,-44 + 4922: 55,15 - node: color: '#FFFFFFFF' id: BrickTileSteelEndS @@ -909,6 +983,7 @@ entities: 3092: -29,42 3429: 20,-18 3430: 21,-18 + 4921: 55,13 - node: color: '#D4D4D496' id: BrickTileSteelLineS @@ -1349,7 +1424,6 @@ entities: decals: 1568: 40,-24 1570: 42,-24 - 1587: 39,-25 1588: 42,-25 1589: 42,-26 1590: 42,-28 @@ -1411,8 +1485,6 @@ entities: 4750: 37,-16 4769: 45,-21 4776: 48,-19 - 4779: 48,-21 - 4781: 48,-22 4803: 41,-19 4804: 40,-19 4805: 39,-19 @@ -1578,11 +1650,6 @@ entities: 1569: 42,-24 1571: 40,-24 1572: 40,-25 - 1573: 39,-25 - 1574: 39,-26 - 1575: 39,-27 - 1576: 39,-28 - 1577: 39,-29 1578: 40,-30 1620: 30,-34 1623: 40,-35 @@ -1782,7 +1849,6 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteInnerSe decals: - 1585: 39,-29 1595: 40,-30 1596: 42,-30 1597: 42,-29 @@ -1849,8 +1915,6 @@ entities: 4733: 42,-23 4748: 37,-14 4777: 48,-19 - 4780: 48,-22 - 4782: 48,-21 4783: 47,-22 4784: 46,-22 4785: 45,-22 @@ -2009,11 +2073,6 @@ entities: id: BrickTileWhiteInnerSw decals: 1579: 40,-24 - 1580: 39,-25 - 1581: 39,-26 - 1582: 39,-27 - 1583: 39,-28 - 1584: 39,-29 1586: 40,-29 1593: 42,-30 1594: 40,-30 @@ -2080,7 +2139,6 @@ entities: 4787: 45,-22 4788: 46,-22 4789: 47,-22 - 4790: 48,-22 4794: 43,-19 4795: 42,-20 4796: 39,-20 @@ -3212,12 +3270,6 @@ entities: 1307: 58.021324,0.5489143 1308: 57.96924,-1.1594192 3376: 57.99387,-2.411529 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: Caution - decals: - 3544: 56.20735,16.017925 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' @@ -3936,6 +3988,10 @@ entities: id: GrayConcreteTrimLineE decals: 3391: 11,2 + 4913: 51,16 + 4914: 51,15 + 4915: 51,14 + 4916: 51,13 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineN @@ -3954,6 +4010,10 @@ entities: decals: 3392: 14,2 3399: 4.001555,11.500919 + 4917: 51,13 + 4918: 51,14 + 4919: 51,15 + 4920: 51,16 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale @@ -4301,6 +4361,12 @@ entities: id: MiniTileCornerOverlayNE decals: 2879: -14,-40 + - node: + cleanable: True + color: '#DE3A3A96' + id: MiniTileCornerOverlayNW + decals: + 5037: 39,-25 - node: color: '#EFB34196' id: MiniTileCornerOverlayNW @@ -4311,6 +4377,12 @@ entities: id: MiniTileCornerOverlaySE decals: 2877: -14,-42 + - node: + cleanable: True + color: '#DE3A3A96' + id: MiniTileCornerOverlaySW + decals: + 5038: 39,-26 - node: color: '#EFB34196' id: MiniTileCornerOverlaySW @@ -4437,6 +4509,13 @@ entities: id: MiniTileWhiteCornerNe decals: 987: -52,-9 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteCornerNe + decals: + 5056: 59,24 + 5057: 53,24 + 5058: 60,20 - node: color: '#A4610696' id: MiniTileWhiteCornerNe @@ -4461,6 +4540,13 @@ entities: 441: -15,-34 2889: -12,-39 2890: -11,-42 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteCornerNw + decals: + 5064: 50,20 + 5065: 51,24 + 5066: 57,24 - node: color: '#A4610696' id: MiniTileWhiteCornerNw @@ -4477,6 +4563,12 @@ entities: id: MiniTileWhiteCornerNw decals: 2923: -18,-39 + - node: + cleanable: True + color: '#FA750096' + id: MiniTileWhiteCornerNw + decals: + 5035: 39,-27 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerNw @@ -4488,6 +4580,13 @@ entities: id: MiniTileWhiteCornerSe decals: 986: -52,-11 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteCornerSe + decals: + 5059: 51,19 + 5060: 60,19 + 5061: 53,23 - node: color: '#A4610696' id: MiniTileWhiteCornerSe @@ -4510,6 +4609,13 @@ entities: decals: 438: -15,-35 2886: -11,-43 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteCornerSw + decals: + 5069: 50,19 + 5070: 59,19 + 5071: 57,23 - node: color: '#A4610696' id: MiniTileWhiteCornerSw @@ -4526,12 +4632,23 @@ entities: id: MiniTileWhiteCornerSw decals: 2919: -18,-43 + - node: + cleanable: True + color: '#FA750096' + id: MiniTileWhiteCornerSw + decals: + 5036: 39,-29 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerSw decals: 439: -20,-35 2887: -18,-43 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteInnerNe + decals: + 5072: 59,20 - node: color: '#D381C996' id: MiniTileWhiteInnerNe @@ -4543,6 +4660,13 @@ entities: id: MiniTileWhiteInnerNe decals: 3378: 42,-39 + - node: + cleanable: True + color: '#DE3A3A96' + id: MiniTileWhiteInnerNe + decals: + 5041: 48,-21 + 5042: 48,-22 - node: color: '#EFB34196' id: MiniTileWhiteInnerNe @@ -4554,6 +4678,11 @@ entities: decals: 434: -21,-36 2907: -12,-42 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteInnerNw + decals: + 5073: 51,20 - node: color: '#DE3A3A96' id: MiniTileWhiteInnerNw @@ -4566,11 +4695,23 @@ entities: id: MiniTileWhiteInnerNw decals: 490: -14,-36 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteInnerSe + decals: + 5074: 51,23 - node: color: '#D381C996' id: MiniTileWhiteInnerSe decals: 4108: 2,-42 + - node: + cleanable: True + color: '#DE3A3A96' + id: MiniTileWhiteInnerSe + decals: + 5043: 48,-22 + 5044: 48,-21 - node: color: '#FA750096' id: MiniTileWhiteInnerSe @@ -4582,6 +4723,11 @@ entities: decals: 436: -21,-33 437: -21,-33 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteInnerSw + decals: + 5075: 59,23 - node: color: '#DE3A3A96' id: MiniTileWhiteInnerSw @@ -4589,6 +4735,12 @@ entities: 4715: 30,-19 4716: 31,-18 4721: 31,-15 + - node: + cleanable: True + color: '#DE3A3A96' + id: MiniTileWhiteInnerSw + decals: + 5045: 48,-22 - node: color: '#FFFFFFFF' id: MiniTileWhiteInnerSw @@ -4599,6 +4751,14 @@ entities: id: MiniTileWhiteLineE decals: 985: -52,-10 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteLineE + decals: + 5048: 59,21 + 5049: 51,21 + 5063: 59,23 + 5067: 56,20 - node: color: '#A4610696' id: MiniTileWhiteLineE @@ -4625,6 +4785,12 @@ entities: 427: -21,-35 2896: -12,-40 2897: -12,-41 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteLineN + decals: + 5054: 52,24 + 5055: 58,24 - node: color: '#D381C996' id: MiniTileWhiteLineN @@ -4665,6 +4831,14 @@ entities: 2893: -15,-39 2894: -14,-39 2895: -13,-39 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteLineS + decals: + 5050: 52,21 + 5051: 58,21 + 5052: 58,23 + 5053: 52,23 - node: color: '#D381C996' id: MiniTileWhiteLineS @@ -4706,6 +4880,14 @@ entities: 2901: -15,-43 2902: -16,-43 2903: -17,-43 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteLineW + decals: + 5046: 51,21 + 5047: 59,21 + 5062: 51,23 + 5068: 54,20 - node: color: '#A4610696' id: MiniTileWhiteLineW @@ -4724,6 +4906,12 @@ entities: 2924: -18,-40 2925: -18,-41 2926: -18,-42 + - node: + cleanable: True + color: '#FA750096' + id: MiniTileWhiteLineW + decals: + 5025: 39,-28 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineW @@ -6342,6 +6530,42 @@ entities: 4463: 49,-5 4475: 50,-8 4483: 43,-6 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#323232FF' + id: body + decals: + 5083: 57,23 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt1 + decals: + 5079: 57,24 + 5080: 57,24 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt2 + decals: + 5014: 56,23 + 5081: 58,23 + 5082: 58,23 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt3 + decals: + 5076: 57,23 + 5077: 57,23 + 5078: 57,23 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt4 + decals: + 5022: 56,23 - type: GridAtmosphere version: 2 data: @@ -7254,7 +7478,7 @@ entities: 11,3: 0: 21845 11,4: - 0: 21845 + 0: 40277 12,0: 0: 29439 12,1: @@ -7262,7 +7486,7 @@ entities: 12,2: 0: 61567 12,3: - 0: 32752 + 0: 65520 8,8: 0: 61695 8,6: @@ -7278,27 +7502,25 @@ entities: 10,5: 0: 48063 10,6: - 0: 36856 + 0: 35832 10,7: 0: 52701 10,8: 0: 8191 11,5: - 0: 21845 + 0: 48059 11,6: - 0: 36636 + 0: 35771 11,7: - 0: 22387 + 0: 30707 11,8: 0: 17989 12,4: - 0: 65407 - 12,5: - 0: 4095 + 0: 60943 12,6: - 0: 48911 + 0: 61678 12,7: - 2: 65520 + 0: 4080 -12,-12: 0: 13119 -12,-13: @@ -7672,7 +7894,7 @@ entities: 9,11: 0: 1906 9,12: - 0: 3581 + 0: 3067 10,9: 0: 56797 10,10: @@ -7693,7 +7915,7 @@ entities: 11,12: 2: 53247 12,8: - 2: 13175 + 2: 13311 12,9: 2: 13107 12,10: @@ -7768,37 +7990,37 @@ entities: 13,1: 0: 63289 13,2: - 0: 61447 + 0: 61559 13,3: - 0: 59248 + 0: 65520 13,-1: 0: 65262 13,4: - 0: 30694 + 0: 12015 14,0: 0: 65535 14,1: 0: 29439 14,2: - 0: 53488 + 0: 28912 14,3: - 0: 56541 + 0: 65520 14,-1: 0: 65535 14,4: - 0: 56541 + 0: 43839 15,0: 0: 16183 15,1: 0: 45887 15,2: - 0: 46011 - 15,3: 0: 48059 + 15,3: + 0: 48051 15,-1: 0: 30527 15,4: - 0: 48059 + 0: 48011 16,0: 0: 1793 2: 4 @@ -8124,45 +8346,45 @@ entities: 2: 65228 12,12: 2: 65535 + 13,8: + 2: 20223 13,10: 2: 17 13,9: 2: 13028 - 13,8: - 2: 19652 13,7: - 2: 20476 + 0: 8752 + 2: 34944 + 14,8: + 2: 52429 14,9: 2: 248 - 14,8: - 2: 52428 14,7: - 2: 51711 + 2: 64496 15,8: 2: 56797 15,9: 2: 248 15,7: - 2: 55539 + 2: 55536 16,8: 2: 56797 16,9: 2: 248 + 12,5: + 0: 59630 13,5: - 0: 1911 + 0: 64543 13,6: - 0: 4879 - 2: 52224 + 0: 61695 14,5: - 0: 7633 + 0: 63951 14,6: - 0: 15 - 2: 13056 + 0: 61695 15,5: - 0: 35768 + 0: 47291 15,6: - 0: 15 - 2: 13824 + 0: 63675 16,7: 2: 55544 13,12: @@ -8363,8 +8585,6 @@ entities: 2: 39321 20,7: 2: 16 - 16,2: - 2: 8192 -12,-19: 2: 61440 -13,-19: @@ -9861,6 +10081,17 @@ entities: - type: Transform pos: 19.476593,-4.469906 parent: 21002 +- proto: ActionToggleLight + entities: + - uid: 18422 + mapInit: true + paused: true + components: + - type: Transform + parent: 2671 + - type: Action + originalIconColor: '#FFFFFFFF' + container: 2671 - proto: AirAlarm entities: - uid: 2121 @@ -9895,6 +10126,8 @@ entities: - 114 - 115 - 116 + - type: Fixtures + fixtures: {} - uid: 3220 components: - type: Transform @@ -9905,6 +10138,8 @@ entities: devices: - 16149 - 16148 + - type: Fixtures + fixtures: {} - uid: 8130 components: - type: Transform @@ -9915,6 +10150,8 @@ entities: devices: - 8129 - 28592 + - type: Fixtures + fixtures: {} - uid: 8131 components: - type: Transform @@ -9924,6 +10161,8 @@ entities: devices: - 28591 - 8128 + - type: Fixtures + fixtures: {} - uid: 9177 components: - type: Transform @@ -9932,6 +10171,8 @@ entities: - type: DeviceList devices: - 9168 + - type: Fixtures + fixtures: {} - uid: 9410 components: - type: Transform @@ -9955,6 +10196,8 @@ entities: - 16334 - 16336 - 18545 + - type: Fixtures + fixtures: {} - uid: 10169 components: - type: Transform @@ -9972,12 +10215,16 @@ entities: - 5218 - 16531 - 16532 + - type: Fixtures + fixtures: {} - uid: 12296 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12885 components: - type: Transform @@ -9988,6 +10235,8 @@ entities: - 10841 - 15899 - 15903 + - type: Fixtures + fixtures: {} - uid: 14277 components: - type: Transform @@ -9999,6 +10248,8 @@ entities: - 15712 - 29812 - 15713 + - type: Fixtures + fixtures: {} - uid: 14996 components: - type: Transform @@ -10010,6 +10261,8 @@ entities: - 18504 - 16179 - 16180 + - type: Fixtures + fixtures: {} - uid: 15250 components: - type: Transform @@ -10021,6 +10274,8 @@ entities: - 15237 - 1597 - 424 + - type: Fixtures + fixtures: {} - uid: 15512 components: - type: Transform @@ -10038,6 +10293,8 @@ entities: - 18358 - 15615 - 15618 + - type: Fixtures + fixtures: {} - uid: 18240 components: - type: Transform @@ -10056,6 +10313,8 @@ entities: - 18233 - 18232 - 18253 + - type: Fixtures + fixtures: {} - uid: 18242 components: - type: Transform @@ -10071,6 +10330,8 @@ entities: - 16110 - 16111 - 18245 + - type: Fixtures + fixtures: {} - uid: 18244 components: - type: Transform @@ -10086,6 +10347,8 @@ entities: - 16112 - 16107 - 18254 + - type: Fixtures + fixtures: {} - uid: 18247 components: - type: Transform @@ -10107,6 +10370,8 @@ entities: - 16547 - 16546 - 18256 + - type: Fixtures + fixtures: {} - uid: 18258 components: - type: Transform @@ -10125,6 +10390,8 @@ entities: - 12298 - 10876 - 18257 + - type: Fixtures + fixtures: {} - uid: 18263 components: - type: Transform @@ -10142,6 +10409,8 @@ entities: - 18262 - 16543 - 16542 + - type: Fixtures + fixtures: {} - uid: 18270 components: - type: Transform @@ -10179,6 +10448,8 @@ entities: - 3343 - 3344 - 3345 + - type: Fixtures + fixtures: {} - uid: 18271 components: - type: Transform @@ -10215,6 +10486,8 @@ entities: - 16495 - 16496 - 18266 + - type: Fixtures + fixtures: {} - uid: 18272 components: - type: Transform @@ -10251,6 +10524,8 @@ entities: - 182 - 16486 - 18267 + - type: Fixtures + fixtures: {} - uid: 18273 components: - type: Transform @@ -10288,6 +10563,8 @@ entities: - 16489 - 16490 - 18268 + - type: Fixtures + fixtures: {} - uid: 18285 components: - type: Transform @@ -10327,6 +10604,8 @@ entities: - 13656 - 29732 - 29737 + - type: Fixtures + fixtures: {} - uid: 18286 components: - type: Transform @@ -10364,6 +10643,8 @@ entities: - 29739 - 29742 - 29743 + - type: Fixtures + fixtures: {} - uid: 18287 components: - type: Transform @@ -10398,6 +10679,8 @@ entities: - 18278 - 29740 - 29738 + - type: Fixtures + fixtures: {} - uid: 18288 components: - type: Transform @@ -10422,6 +10705,8 @@ entities: - 16482 - 16484 - 16485 + - type: Fixtures + fixtures: {} - uid: 18303 components: - type: Transform @@ -10439,6 +10724,8 @@ entities: - 18294 - 16498 - 16497 + - type: Fixtures + fixtures: {} - uid: 18305 components: - type: Transform @@ -10462,6 +10749,8 @@ entities: - 18293 - 16503 - 16504 + - type: Fixtures + fixtures: {} - uid: 18317 components: - type: Transform @@ -10475,6 +10764,8 @@ entities: - 15148 - 29776 - 15150 + - type: Fixtures + fixtures: {} - uid: 18328 components: - type: Transform @@ -10494,6 +10785,8 @@ entities: - 15129 - 15128 - 18320 + - type: Fixtures + fixtures: {} - uid: 18332 components: - type: Transform @@ -10521,6 +10814,8 @@ entities: - 75 - 24132 - 17899 + - type: Fixtures + fixtures: {} - uid: 18333 components: - type: Transform @@ -10537,6 +10832,8 @@ entities: - 16514 - 18295 - 16520 + - type: Fixtures + fixtures: {} - uid: 18336 components: - type: Transform @@ -10559,6 +10856,8 @@ entities: - 2177 - 20660 - 23087 + - type: Fixtures + fixtures: {} - uid: 18338 components: - type: Transform @@ -10572,6 +10871,8 @@ entities: - 15319 - 18290 - 15318 + - type: Fixtures + fixtures: {} - uid: 18366 components: - type: Transform @@ -10596,6 +10897,8 @@ entities: - 16529 - 18356 - 30338 + - type: Fixtures + fixtures: {} - uid: 18440 components: - type: Transform @@ -10606,25 +10909,10 @@ entities: devices: - 18369 - 18368 - - 18370 - - 18371 - 18439 - 18408 - - uid: 18443 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,13.5 - parent: 2 - - type: DeviceList - devices: - - 18371 - - 18370 - - 18441 - - 18442 - - 18438 - - 18409 - - 18410 + - type: Fixtures + fixtures: {} - uid: 18460 components: - type: Transform @@ -10635,6 +10923,8 @@ entities: - 15418 - 29818 - 15417 + - type: Fixtures + fixtures: {} - uid: 18463 components: - type: Transform @@ -10652,6 +10942,8 @@ entities: - 18457 - 14689 - 14690 + - type: Fixtures + fixtures: {} - uid: 18478 components: - type: Transform @@ -10665,6 +10957,8 @@ entities: - 14741 - 14740 - 18462 + - type: Fixtures + fixtures: {} - uid: 18480 components: - type: Transform @@ -10678,6 +10972,8 @@ entities: - 18479 - 14749 - 14748 + - type: Fixtures + fixtures: {} - uid: 18482 components: - type: Transform @@ -10691,6 +10987,8 @@ entities: - 14768 - 14767 - 18481 + - type: Fixtures + fixtures: {} - uid: 18499 components: - type: Transform @@ -10711,6 +11009,8 @@ entities: - 16550 - 18349 - 16556 + - type: Fixtures + fixtures: {} - uid: 18501 components: - type: Transform @@ -10732,6 +11032,8 @@ entities: - 18485 - 13281 - 13351 + - type: Fixtures + fixtures: {} - uid: 18530 components: - type: Transform @@ -10748,6 +11050,8 @@ entities: - 16238 - 18519 - 16237 + - type: Fixtures + fixtures: {} - uid: 18536 components: - type: Transform @@ -10763,6 +11067,8 @@ entities: - 16267 - 18521 - 16285 + - type: Fixtures + fixtures: {} - uid: 18541 components: - type: Transform @@ -10778,6 +11084,8 @@ entities: - 18540 - 16297 - 16298 + - type: Fixtures + fixtures: {} - uid: 18553 components: - type: Transform @@ -10790,6 +11098,8 @@ entities: - 16433 - 18554 - 16432 + - type: Fixtures + fixtures: {} - uid: 18564 components: - type: Transform @@ -10808,6 +11118,8 @@ entities: - 13595 - 18563 - 28561 + - type: Fixtures + fixtures: {} - uid: 18567 components: - type: Transform @@ -10823,6 +11135,8 @@ entities: - 13584 - 16794 - 18573 + - type: Fixtures + fixtures: {} - uid: 18570 components: - type: Transform @@ -10843,6 +11157,8 @@ entities: - 18577 - 13560 - 13559 + - type: Fixtures + fixtures: {} - uid: 18582 components: - type: Transform @@ -10855,6 +11171,8 @@ entities: - 15028 - 18580 - 15029 + - type: Fixtures + fixtures: {} - uid: 18584 components: - type: Transform @@ -10873,6 +11191,8 @@ entities: - 15108 - 18579 - 15109 + - type: Fixtures + fixtures: {} - uid: 18587 components: - type: Transform @@ -10886,6 +11206,8 @@ entities: - 15106 - 18585 - 15105 + - type: Fixtures + fixtures: {} - uid: 18603 components: - type: Transform @@ -10902,6 +11224,8 @@ entities: - 18605 - 15651 - 15653 + - type: Fixtures + fixtures: {} - uid: 18606 components: - type: Transform @@ -10924,6 +11248,8 @@ entities: - 18610 - 15717 - 15716 + - type: Fixtures + fixtures: {} - uid: 18611 components: - type: Transform @@ -10950,6 +11276,8 @@ entities: - 18612 - 15742 - 15743 + - type: Fixtures + fixtures: {} - uid: 18623 components: - type: Transform @@ -10969,6 +11297,8 @@ entities: - 20660 - 23087 - 413 + - type: Fixtures + fixtures: {} - uid: 18645 components: - type: Transform @@ -10981,6 +11311,8 @@ entities: - 13132 - 18647 - 14373 + - type: Fixtures + fixtures: {} - uid: 18650 components: - type: Transform @@ -10995,6 +11327,8 @@ entities: - 14384 - 18649 - 14383 + - type: Fixtures + fixtures: {} - uid: 18652 components: - type: Transform @@ -11011,6 +11345,8 @@ entities: - 14454 - 18648 - 14455 + - type: Fixtures + fixtures: {} - uid: 18658 components: - type: Transform @@ -11025,6 +11361,8 @@ entities: - 18656 - 14528 - 14527 + - type: Fixtures + fixtures: {} - uid: 18663 components: - type: Transform @@ -11047,6 +11385,8 @@ entities: - 14927 - 29877 - 14924 + - type: Fixtures + fixtures: {} - uid: 18667 components: - type: Transform @@ -11058,6 +11398,8 @@ entities: - 14923 - 18665 - 14926 + - type: Fixtures + fixtures: {} - uid: 18676 components: - type: Transform @@ -11066,6 +11408,8 @@ entities: - type: DeviceList devices: - 18669 + - type: Fixtures + fixtures: {} - uid: 18677 components: - type: Transform @@ -11074,6 +11418,8 @@ entities: - type: DeviceList devices: - 18670 + - type: Fixtures + fixtures: {} - uid: 18678 components: - type: Transform @@ -11087,6 +11433,8 @@ entities: - 14922 - 18671 - 14925 + - type: Fixtures + fixtures: {} - uid: 18687 components: - type: Transform @@ -11101,6 +11449,8 @@ entities: - 15813 - 15814 - 18686 + - type: Fixtures + fixtures: {} - uid: 18690 components: - type: Transform @@ -11112,6 +11462,8 @@ entities: - 15420 - 15419 - 30214 + - type: Fixtures + fixtures: {} - uid: 18691 components: - type: Transform @@ -11124,6 +11476,8 @@ entities: - 15710 - 15711 - 18692 + - type: Fixtures + fixtures: {} - uid: 18697 components: - type: Transform @@ -11136,6 +11490,8 @@ entities: - 15898 - 18695 - 15902 + - type: Fixtures + fixtures: {} - uid: 20717 components: - type: Transform @@ -11150,6 +11506,8 @@ entities: - 20617 - 19518 - 16774 + - type: Fixtures + fixtures: {} - uid: 21369 components: - type: Transform @@ -11162,6 +11520,8 @@ entities: - 25354 - 25353 - 21373 + - type: Fixtures + fixtures: {} - uid: 21371 components: - type: Transform @@ -11175,6 +11535,8 @@ entities: - 25352 - 21451 - 25298 + - type: Fixtures + fixtures: {} - uid: 21415 components: - type: Transform @@ -11185,6 +11547,8 @@ entities: devices: - 21413 - 21414 + - type: Fixtures + fixtures: {} - uid: 21456 components: - type: Transform @@ -11198,6 +11562,8 @@ entities: - 25352 - 25293 - 21453 + - type: Fixtures + fixtures: {} - uid: 21504 components: - type: Transform @@ -11214,6 +11580,8 @@ entities: - 30227 - 30228 - 30225 + - type: Fixtures + fixtures: {} - uid: 22155 components: - type: Transform @@ -11223,6 +11591,8 @@ entities: devices: - 21709 - 21721 + - type: Fixtures + fixtures: {} - uid: 23056 components: - type: Transform @@ -11241,6 +11611,8 @@ entities: - 21182 - 23058 - 21183 + - type: Fixtures + fixtures: {} - uid: 23060 components: - type: Transform @@ -11254,6 +11626,8 @@ entities: - 23061 - 23052 - 23053 + - type: Fixtures + fixtures: {} - uid: 23235 components: - type: Transform @@ -11270,6 +11644,8 @@ entities: - 12062 - 18330 - 11291 + - type: Fixtures + fixtures: {} - uid: 23531 components: - type: Transform @@ -11280,6 +11656,8 @@ entities: devices: - 21389 - 22882 + - type: Fixtures + fixtures: {} - uid: 23679 components: - type: Transform @@ -11295,6 +11673,8 @@ entities: - 13599 - 13598 - 18486 + - type: Fixtures + fixtures: {} - uid: 23682 components: - type: Transform @@ -11311,6 +11691,8 @@ entities: - 23706 - 23678 - 16775 + - type: Fixtures + fixtures: {} - uid: 23683 components: - type: Transform @@ -11326,6 +11708,8 @@ entities: - 18488 - 18489 - 18487 + - type: Fixtures + fixtures: {} - uid: 23903 components: - type: Transform @@ -11337,6 +11721,8 @@ entities: - 23904 - 23901 - 23902 + - type: Fixtures + fixtures: {} - uid: 23907 components: - type: Transform @@ -11351,6 +11737,8 @@ entities: - 30819 - 30821 - 30822 + - type: Fixtures + fixtures: {} - uid: 23909 components: - type: Transform @@ -11362,6 +11750,8 @@ entities: - 23908 - 23910 - 23911 + - type: Fixtures + fixtures: {} - uid: 23915 components: - type: Transform @@ -11373,6 +11763,8 @@ entities: - 23914 - 23912 - 23913 + - type: Fixtures + fixtures: {} - uid: 23917 components: - type: Transform @@ -11382,6 +11774,8 @@ entities: devices: - 23921 - 23916 + - type: Fixtures + fixtures: {} - uid: 23918 components: - type: Transform @@ -11393,12 +11787,16 @@ entities: - 23920 - 23916 - 23919 + - type: Fixtures + fixtures: {} - uid: 23926 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23927 components: - type: Transform @@ -11412,6 +11810,8 @@ entities: - 15423 - 23923 - 23925 + - type: Fixtures + fixtures: {} - uid: 24091 components: - type: Transform @@ -11425,6 +11825,8 @@ entities: - 24087 - 15357 - 15356 + - type: Fixtures + fixtures: {} - uid: 25567 components: - type: Transform @@ -11435,6 +11837,8 @@ entities: devices: - 26587 - 24295 + - type: Fixtures + fixtures: {} - uid: 25568 components: - type: Transform @@ -11444,6 +11848,8 @@ entities: devices: - 21397 - 22267 + - type: Fixtures + fixtures: {} - uid: 26203 components: - type: Transform @@ -11454,6 +11860,8 @@ entities: devices: - 22384 - 26221 + - type: Fixtures + fixtures: {} - uid: 26568 components: - type: Transform @@ -11463,6 +11871,8 @@ entities: devices: - 21390 - 24297 + - type: Fixtures + fixtures: {} - uid: 28262 components: - type: Transform @@ -11473,6 +11883,8 @@ entities: devices: - 25359 - 28277 + - type: Fixtures + fixtures: {} - uid: 28414 components: - type: Transform @@ -11484,6 +11896,8 @@ entities: - 14005 - 14006 - 29930 + - type: Fixtures + fixtures: {} - uid: 28611 components: - type: Transform @@ -11494,6 +11908,8 @@ entities: - 3136 - 9112 - 28612 + - type: Fixtures + fixtures: {} - uid: 28879 components: - type: Transform @@ -11513,6 +11929,8 @@ entities: - 18468 - 18471 - 18472 + - type: Fixtures + fixtures: {} - uid: 28882 components: - type: Transform @@ -11524,6 +11942,8 @@ entities: - 29848 - 15325 - 15326 + - type: Fixtures + fixtures: {} - uid: 29040 components: - type: Transform @@ -11535,6 +11955,8 @@ entities: - 2175 - 28966 - 29041 + - type: Fixtures + fixtures: {} - uid: 29459 components: - type: Transform @@ -11547,6 +11969,8 @@ entities: - 15828 - 18618 - 18619 + - type: Fixtures + fixtures: {} - uid: 29460 components: - type: Transform @@ -11558,6 +11982,8 @@ entities: - 15850 - 15849 - 29461 + - type: Fixtures + fixtures: {} - uid: 29462 components: - type: Transform @@ -11571,6 +11997,8 @@ entities: - 15168 - 18602 - 18601 + - type: Fixtures + fixtures: {} - uid: 29773 components: - type: Transform @@ -11582,6 +12010,8 @@ entities: - 14954 - 14953 - 29772 + - type: Fixtures + fixtures: {} - uid: 29789 components: - type: Transform @@ -11592,6 +12022,8 @@ entities: - 16345 - 16346 - 29791 + - type: Fixtures + fixtures: {} - uid: 29792 components: - type: Transform @@ -11602,6 +12034,8 @@ entities: - 29793 - 16357 - 16358 + - type: Fixtures + fixtures: {} - uid: 29794 components: - type: Transform @@ -11613,12 +12047,16 @@ entities: - 29797 - 16474 - 16477 + - type: Fixtures + fixtures: {} - uid: 29795 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29796 components: - type: Transform @@ -11630,12 +12068,16 @@ entities: - 16476 - 16475 - 29798 + - type: Fixtures + fixtures: {} - uid: 29799 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29800 components: - type: Transform @@ -11648,6 +12090,8 @@ entities: - 15851 - 15852 - 29801 + - type: Fixtures + fixtures: {} - uid: 29802 components: - type: Transform @@ -11659,6 +12103,8 @@ entities: - 14764 - 14763 - 29804 + - type: Fixtures + fixtures: {} - uid: 29803 components: - type: Transform @@ -11670,6 +12116,8 @@ entities: - 28968 - 14766 - 14765 + - type: Fixtures + fixtures: {} - uid: 29805 components: - type: Transform @@ -11681,6 +12129,8 @@ entities: - 29808 - 16262 - 16263 + - type: Fixtures + fixtures: {} - uid: 29806 components: - type: Transform @@ -11692,6 +12142,8 @@ entities: - 29807 - 16251 - 16252 + - type: Fixtures + fixtures: {} - uid: 29814 components: - type: Transform @@ -11703,6 +12155,8 @@ entities: - 29815 - 29820 - 15415 + - type: Fixtures + fixtures: {} - uid: 29819 components: - type: Transform @@ -11714,6 +12168,8 @@ entities: - 15386 - 29817 - 29813 + - type: Fixtures + fixtures: {} - uid: 29842 components: - type: Transform @@ -11724,6 +12180,8 @@ entities: - 29927 - 14052 - 14057 + - type: Fixtures + fixtures: {} - uid: 29849 components: - type: Transform @@ -11735,6 +12193,8 @@ entities: - 14989 - 14990 - 29850 + - type: Fixtures + fixtures: {} - uid: 29851 components: - type: Transform @@ -11745,6 +12205,8 @@ entities: devices: - 14960 - 14961 + - type: Fixtures + fixtures: {} - uid: 29852 components: - type: Transform @@ -11755,6 +12217,8 @@ entities: devices: - 14955 - 14952 + - type: Fixtures + fixtures: {} - uid: 29853 components: - type: Transform @@ -11765,6 +12229,8 @@ entities: devices: - 14974 - 14975 + - type: Fixtures + fixtures: {} - uid: 29854 components: - type: Transform @@ -11775,6 +12241,8 @@ entities: - 15157 - 15156 - 29855 + - type: Fixtures + fixtures: {} - uid: 29856 components: - type: Transform @@ -11785,6 +12253,8 @@ entities: - 879 - 29857 - 56 + - type: Fixtures + fixtures: {} - uid: 29858 components: - type: Transform @@ -11795,6 +12265,8 @@ entities: devices: - 15117 - 15118 + - type: Fixtures + fixtures: {} - uid: 29859 components: - type: Transform @@ -11805,6 +12277,8 @@ entities: devices: - 16188 - 16189 + - type: Fixtures + fixtures: {} - uid: 29860 components: - type: Transform @@ -11816,6 +12290,8 @@ entities: - 16136 - 16137 - 29862 + - type: Fixtures + fixtures: {} - uid: 29861 components: - type: Transform @@ -11826,23 +12302,16 @@ entities: - 16125 - 16126 - 29863 - - uid: 29864 - components: - - type: Transform - pos: 52.5,15.5 - parent: 2 - - type: DeviceList - devices: - - 18412 - - 18411 - - 29866 - - 29865 + - type: Fixtures + fixtures: {} - uid: 29867 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29868 components: - type: Transform @@ -11853,6 +12322,8 @@ entities: devices: - 14528 - 14527 + - type: Fixtures + fixtures: {} - uid: 29869 components: - type: Transform @@ -11863,6 +12334,8 @@ entities: - 19072 - 19074 - 29871 + - type: Fixtures + fixtures: {} - uid: 29870 components: - type: Transform @@ -11874,12 +12347,16 @@ entities: - 14383 - 18649 - 14384 + - type: Fixtures + fixtures: {} - uid: 29872 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29873 components: - type: Transform @@ -11891,6 +12368,8 @@ entities: - 14927 - 29877 - 14924 + - type: Fixtures + fixtures: {} - uid: 29874 components: - type: Transform @@ -11902,6 +12381,8 @@ entities: - 29876 - 14939 - 14938 + - type: Fixtures + fixtures: {} - uid: 29880 components: - type: Transform @@ -11912,6 +12393,8 @@ entities: - 29706 - 29707 - 29881 + - type: Fixtures + fixtures: {} - uid: 29883 components: - type: Transform @@ -11923,6 +12406,8 @@ entities: - 13735 - 29885 - 13736 + - type: Fixtures + fixtures: {} - uid: 29884 components: - type: Transform @@ -11934,6 +12419,8 @@ entities: - 14675 - 14674 - 29882 + - type: Fixtures + fixtures: {} - uid: 29886 components: - type: Transform @@ -11945,12 +12432,16 @@ entities: - 29887 - 14088 - 14089 + - type: Fixtures + fixtures: {} - uid: 29893 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29894 components: - type: Transform @@ -11962,11 +12453,15 @@ entities: - 29897 - 14511 - 14512 + - type: Fixtures + fixtures: {} - uid: 29895 components: - type: Transform pos: 55.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29896 components: - type: Transform @@ -11977,6 +12472,8 @@ entities: - 29898 - 14513 - 14514 + - type: Fixtures + fixtures: {} - uid: 29899 components: - type: Transform @@ -11988,6 +12485,8 @@ entities: - 29901 - 16449 - 16448 + - type: Fixtures + fixtures: {} - uid: 29900 components: - type: Transform @@ -11998,6 +12497,8 @@ entities: devices: - 16447 - 16450 + - type: Fixtures + fixtures: {} - uid: 29902 components: - type: Transform @@ -12009,6 +12510,8 @@ entities: - 16337 - 16335 - 29903 + - type: Fixtures + fixtures: {} - uid: 29904 components: - type: Transform @@ -12020,6 +12523,8 @@ entities: - 9112 - 28612 - 3136 + - type: Fixtures + fixtures: {} - uid: 29905 components: - type: Transform @@ -12031,6 +12536,8 @@ entities: - 29908 - 13725 - 13724 + - type: Fixtures + fixtures: {} - uid: 29906 components: - type: Transform @@ -12042,6 +12549,8 @@ entities: - 29907 - 13722 - 13723 + - type: Fixtures + fixtures: {} - uid: 29911 components: - type: Transform @@ -12053,6 +12562,8 @@ entities: - 29914 - 15242 - 15243 + - type: Fixtures + fixtures: {} - uid: 29912 components: - type: Transform @@ -12064,12 +12575,16 @@ entities: - 13980 - 13962 - 29913 + - type: Fixtures + fixtures: {} - uid: 29916 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29917 components: - type: Transform @@ -12081,6 +12596,8 @@ entities: - 15809 - 15811 - 29919 + - type: Fixtures + fixtures: {} - uid: 29918 components: - type: Transform @@ -12092,11 +12609,15 @@ entities: - 29915 - 15797 - 15796 + - type: Fixtures + fixtures: {} - uid: 29920 components: - type: Transform pos: -4.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29921 components: - type: Transform @@ -12107,6 +12628,8 @@ entities: - 29922 - 15652 - 15654 + - type: Fixtures + fixtures: {} - uid: 29924 components: - type: Transform @@ -12118,6 +12641,8 @@ entities: - 14055 - 14020 - 29931 + - type: Fixtures + fixtures: {} - uid: 29925 components: - type: Transform @@ -12129,6 +12654,8 @@ entities: - 29929 - 14059 - 14060 + - type: Fixtures + fixtures: {} - uid: 29928 components: - type: Transform @@ -12140,6 +12667,8 @@ entities: - 29926 - 14130 - 14131 + - type: Fixtures + fixtures: {} - uid: 29932 components: - type: Transform @@ -12150,6 +12679,8 @@ entities: - 15900 - 29935 - 15904 + - type: Fixtures + fixtures: {} - uid: 29933 components: - type: Transform @@ -12160,11 +12691,15 @@ entities: - 15905 - 15901 - 29936 + - type: Fixtures + fixtures: {} - uid: 29934 components: - type: Transform pos: -24.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29938 components: - type: Transform @@ -12177,6 +12712,8 @@ entities: - 15149 - 15151 - 29940 + - type: Fixtures + fixtures: {} - uid: 30357 components: - type: Transform @@ -12201,6 +12738,8 @@ entities: - 30328 - 30329 - 30327 + - type: Fixtures + fixtures: {} - uid: 30360 components: - type: Transform @@ -12219,6 +12758,8 @@ entities: - 30330 - 4194 - 3466 + - type: Fixtures + fixtures: {} - uid: 30363 components: - type: Transform @@ -12235,6 +12776,8 @@ entities: - 3468 - 18164 - 13393 + - type: Fixtures + fixtures: {} - uid: 30364 components: - type: Transform @@ -12249,6 +12792,8 @@ entities: - 29990 - 4838 - 3698 + - type: Fixtures + fixtures: {} - uid: 30365 components: - type: Transform @@ -12269,6 +12814,8 @@ entities: - 3558 - 3852 - 3406 + - type: Fixtures + fixtures: {} - uid: 30366 components: - type: Transform @@ -12290,6 +12837,8 @@ entities: - 3857 - 3410 - 3816 + - type: Fixtures + fixtures: {} - uid: 30402 components: - type: Transform @@ -12307,6 +12856,8 @@ entities: - 3863 - 3818 - 3411 + - type: Fixtures + fixtures: {} - uid: 30403 components: - type: Transform @@ -12323,6 +12874,8 @@ entities: - 30355 - 30339 - 30340 + - type: Fixtures + fixtures: {} - uid: 30404 components: - type: Transform @@ -12333,12 +12886,14 @@ entities: devices: - 11912 - 4862 - - 15485 - 30343 - 30342 - 30344 - 30345 - 30341 + - 29292 + - type: Fixtures + fixtures: {} - uid: 30826 components: - type: Transform @@ -12355,8 +12910,65 @@ entities: - 30821 - 30819 - 12226 + - type: Fixtures + fixtures: {} + - uid: 31038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,12.5 + parent: 2 + - type: DeviceList + devices: + - 31006 + - 31007 + - 2381 + - 2380 + - 30992 + - 30993 + - 30996 + - type: Fixtures + fixtures: {} + - uid: 31039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,20.5 + parent: 2 + - type: DeviceList + devices: + - 31022 + - 30964 + - 30992 + - 30993 + - 30994 + - 30995 + - 28511 + - 12919 + - type: Fixtures + fixtures: {} + - uid: 31040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,24.5 + parent: 2 + - type: DeviceList + devices: + - 30994 + - 30995 + - 30999 + - 31035 + - 31036 + - type: Fixtures + fixtures: {} - proto: AirCanister entities: + - uid: 2674 + components: + - type: Transform + pos: 34.5,50.5 + parent: 2 - uid: 4223 components: - type: Transform @@ -12431,11 +13043,6 @@ entities: parent: 2 - type: Physics bodyType: Static - - uid: 9470 - components: - - type: Transform - pos: 39.5,50.5 - parent: 2 - uid: 9747 components: - type: Transform @@ -12457,10 +13064,10 @@ entities: parent: 2 - type: Physics bodyType: Static - - uid: 18930 + - uid: 12878 components: - type: Transform - pos: 44.5,18.5 + pos: 45.5,22.5 parent: 2 - uid: 18935 components: @@ -12985,18 +13592,6 @@ entities: rot: -1.5707963267948966 rad pos: -28.5,-35.5 parent: 2 -- proto: AirlockCommandGlass - entities: - - uid: 12715 - components: - - type: Transform - pos: 55.5,17.5 - parent: 2 - - uid: 12717 - components: - - type: Transform - pos: 55.5,15.5 - parent: 2 - proto: AirlockCommandGlassLocked entities: - uid: 2448 @@ -13041,20 +13636,32 @@ entities: rot: 1.5707963267948966 rad pos: 27.5,14.5 parent: 2 + - uid: 20251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,19.5 + parent: 2 + - uid: 29363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,19.5 + parent: 2 + - uid: 29575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,22.5 + parent: 2 + - uid: 31095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,22.5 + parent: 2 - proto: AirlockCommandLocked entities: - - uid: 6908 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,10.5 - parent: 2 - - uid: 6909 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,10.5 - parent: 2 - uid: 6910 components: - type: Transform @@ -13067,6 +13674,16 @@ entities: rot: -1.5707963267948966 rad pos: 60.5,6.5 parent: 2 + - uid: 12880 + components: + - type: Transform + pos: 60.5,12.5 + parent: 2 + - uid: 13027 + components: + - type: Transform + pos: 61.5,12.5 + parent: 2 - uid: 20698 components: - type: Transform @@ -13283,6 +13900,12 @@ entities: - type: Transform pos: -18.5,19.5 parent: 2 + - uid: 12828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,29.5 + parent: 2 - uid: 13005 components: - type: Transform @@ -13299,12 +13922,6 @@ entities: - type: Transform pos: -29.5,-2.5 parent: 2 - - uid: 20486 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,26.5 - parent: 2 - uid: 23669 components: - type: Transform @@ -13625,21 +14242,6 @@ entities: - type: Transform pos: 41.5,49.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 6829: - - - DoorStatus - - DoorBolt - - uid: 6829 - components: - - type: Transform - pos: 37.5,49.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 6828: - - - DoorStatus - - DoorBolt - uid: 7615 components: - type: Transform @@ -13736,11 +14338,22 @@ entities: 8052: - - DoorStatus - DoorBolt - - uid: 13059 + - uid: 12739 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,26.5 + rot: 1.5707963267948966 rad + pos: 53.5,31.5 + parent: 2 + - uid: 12743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,29.5 + parent: 2 + - uid: 12861 + components: + - type: Transform + pos: 38.5,49.5 parent: 2 - uid: 19973 components: @@ -13768,11 +14381,6 @@ entities: 19973: - - DoorStatus - DoorBolt - - uid: 29371 - components: - - type: Transform - pos: 53.5,26.5 - parent: 2 - proto: AirlockExternalGlassLocked entities: - uid: 3778 @@ -14906,7 +15514,7 @@ entities: pos: -22.5,26.5 parent: 2 - type: Door - secondsUntilStateChange: -187932.16 + secondsUntilStateChange: -213190.27 state: Opening - type: DeviceLinkSource lastSignals: @@ -15762,7 +16370,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -286760.75 + secondsUntilStateChange: -312018.88 state: Opening - uid: 6934 components: @@ -15774,7 +16382,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -286763.38 + secondsUntilStateChange: -312021.5 state: Opening - uid: 6935 components: @@ -15786,7 +16394,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -286762.22 + secondsUntilStateChange: -312020.34 state: Opening - uid: 6936 components: @@ -15797,7 +16405,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -286761.44 + secondsUntilStateChange: -312019.56 state: Opening - proto: AirlockTheatreLocked entities: @@ -15940,6 +16548,14 @@ entities: - type: DeviceNetwork deviceLists: - 12885 + - uid: 12919 + components: + - type: Transform + pos: 59.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31039 - uid: 12937 components: - type: Transform @@ -15982,15 +16598,6 @@ entities: - type: DeviceNetwork deviceLists: - 30403 - - uid: 15485 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 30404 - uid: 18164 components: - type: Transform @@ -16219,21 +16826,6 @@ entities: - type: DeviceNetwork deviceLists: - 15512 - - uid: 18437 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,16.5 - parent: 2 - - uid: 18438 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,16.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18443 - uid: 18439 components: - type: Transform @@ -16908,6 +17500,14 @@ entities: - type: DeviceNetwork deviceLists: - 28262 + - uid: 28511 + components: + - type: Transform + pos: 51.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31039 - uid: 28591 components: - type: Transform @@ -16953,6 +17553,14 @@ entities: - type: DeviceNetwork deviceLists: - 29040 + - uid: 29292 + components: + - type: Transform + pos: 31.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 30404 - uid: 29772 components: - type: Transform @@ -17126,22 +17734,6 @@ entities: - type: DeviceNetwork deviceLists: - 29861 - - uid: 29865 - components: - - type: Transform - pos: 49.5,14.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29864 - - uid: 29866 - components: - - type: Transform - pos: 49.5,21.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29864 - uid: 29871 components: - type: Transform @@ -17411,6 +18003,22 @@ entities: - type: DeviceNetwork deviceLists: - 21504 + - uid: 30996 + components: + - type: Transform + pos: 55.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31038 + - uid: 30999 + components: + - type: Transform + pos: 55.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31040 - proto: AirTank entities: - uid: 18893 @@ -17491,224 +18099,292 @@ entities: rot: 3.141592653589793 rad pos: -29.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1598 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1689 components: - type: Transform pos: -7.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1691 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2001 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2763 components: - type: Transform pos: 12.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3049 components: - type: Transform pos: 43.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3610 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4506 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5517 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5556 components: - type: Transform pos: 2.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5660 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5974 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6039 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6040 components: - type: Transform pos: -19.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6260 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6308 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7912 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8969 components: - type: Transform pos: -31.5,34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9133 components: - type: Transform pos: -40.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9190 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10615 components: - type: Transform pos: 3.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10974 components: - type: Transform pos: 2.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11710 components: - type: Transform pos: -47.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11726 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11992 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12202 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12311 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,-31.5 parent: 2 - - uid: 13029 - components: - - type: MetaData - name: AI Upload APC - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,11.5 - parent: 2 + - type: Fixtures + fixtures: {} - uid: 14169 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15444 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15473 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15483 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15525 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18166 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22494 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-4.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 23684 components: - type: Transform pos: -2.5,44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29223 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 30812 components: - type: Transform pos: -45.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: APCElectronics entities: - uid: 5818 @@ -17730,23 +18406,47 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 732 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,17.5 parent: 2 + - type: Fixtures + fixtures: {} + - uid: 18883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,12.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 20247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,22.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 24769 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-35.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28757 components: - type: Transform pos: 7.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: APCHyperCapacity entities: - uid: 8 @@ -17755,14 +18455,8 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,45.5 parent: 2 - - uid: 884 - components: - - type: MetaData - name: AI APC - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,17.5 - parent: 2 + - type: Fixtures + fixtures: {} - uid: 2023 components: - type: MetaData @@ -17771,11 +18465,15 @@ entities: rot: 3.141592653589793 rad pos: -23.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10076 components: - type: Transform pos: 12.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: APCSuperCapacity entities: - uid: 733 @@ -17784,12 +18482,16 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10518 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ArrivalsShuttleTimer entities: - uid: 29785 @@ -17798,12 +18500,14 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ArtistCircuitBoard entities: - uid: 29446 components: - type: Transform - pos: 58.485508,22.173643 + pos: 60.671783,21.611725 parent: 2 - proto: Ash entities: @@ -17859,7 +18563,7 @@ entities: - uid: 29359 components: - type: Transform - pos: 58.52338,18.753656 + pos: 57.573837,13.584124 parent: 2 - proto: AsteroidRock entities: @@ -37966,12 +38670,16 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8242 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-53.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: BarSignEngineChange entities: - uid: 18505 @@ -37979,6 +38687,8 @@ entities: - type: Transform pos: 14.5,38.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: BarSpoon entities: - uid: 29242 @@ -38593,32 +39303,25 @@ entities: - type: Transform pos: 64.5,8.5 parent: 2 - - uid: 20268 - components: - - type: Transform - pos: 64.5,7.5 - parent: 2 - uid: 20644 components: - type: Transform pos: 64.5,9.5 parent: 2 -- proto: BlastDoorOpen - entities: - - uid: 12801 + - uid: 20882 components: - type: Transform - pos: 56.5,17.5 + pos: 64.5,10.5 parent: 2 - - uid: 12802 + - uid: 23516 components: - type: Transform - pos: 56.5,16.5 + pos: 64.5,7.5 parent: 2 - - uid: 12803 + - uid: 29440 components: - type: Transform - pos: 56.5,15.5 + pos: 64.5,11.5 parent: 2 - proto: BlockGameArcade entities: @@ -39403,10 +40106,10 @@ entities: - type: Transform pos: -7.5,-54.5 parent: 2 - - uid: 20271 + - uid: 12920 components: - type: Transform - pos: 61.5,16.5 + pos: 50.5,16.5 parent: 2 - proto: BoxBeaker entities: @@ -39521,12 +40224,6 @@ entities: parent: 2 - proto: BoxFolderBlue entities: - - uid: 2673 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.41682,20.629406 - parent: 2 - uid: 9380 components: - type: Transform @@ -39545,24 +40242,24 @@ entities: rot: 3.141592653589793 rad pos: 26.243004,4.587342 parent: 2 - - uid: 29292 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.243004,4.587342 - parent: 2 - uid: 29891 components: - type: Transform pos: 51.56539,-7.444486 parent: 2 -- proto: BoxFolderClipboard - entities: - - uid: 2695 + - uid: 31087 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.752617,20.619299 + pos: 31.899996,20.634655 + parent: 2 +- proto: BoxFolderClipboard + entities: + - uid: 3594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.63958,20.591486 parent: 2 - type: ContainerContainer containers: @@ -39702,12 +40399,6 @@ entities: canCollide: False - proto: BoxFolderRed entities: - - uid: 2674 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.88557,20.613781 - parent: 2 - uid: 3454 components: - type: Transform @@ -39752,6 +40443,12 @@ entities: - type: Transform pos: 46.29923,-4.2670507 parent: 2 + - uid: 31089 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.160414,20.697155 + parent: 2 - proto: BoxFolderWhite entities: - uid: 1115 @@ -40063,6 +40760,30 @@ entities: rot: 3.141592653589793 rad pos: -24.10293,-40.495407 parent: 2 + - uid: 30900 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30901 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30902 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30903 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False - proto: Brutepack entities: - uid: 29650 @@ -40151,6 +40872,12 @@ entities: rot: 3.141592653589793 rad pos: 45.28038,-7.5 parent: 2 + - uid: 20498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,14.5 + parent: 2 - uid: 24355 components: - type: Transform @@ -40169,12 +40896,6 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-36.5 parent: 2 - - uid: 24380 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,18.5 - parent: 2 - uid: 24390 components: - type: Transform @@ -40206,11 +40927,15 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,-48.5 parent: 2 - - uid: 24379 + - uid: 30984 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,11.5 + pos: 56.5,26.5 + parent: 2 + - uid: 30985 + components: + - type: Transform + pos: 54.5,26.5 parent: 2 - proto: ButtonFrameExit entities: @@ -41843,6 +42568,16 @@ entities: - type: Transform pos: -41.5,-39.5 parent: 2 + - uid: 2372 + components: + - type: Transform + pos: 60.5,24.5 + parent: 2 + - uid: 2373 + components: + - type: Transform + pos: 50.5,24.5 + parent: 2 - uid: 2472 components: - type: Transform @@ -43578,6 +44313,21 @@ entities: - type: Transform pos: -15.5,21.5 parent: 2 + - uid: 3590 + components: + - type: Transform + pos: 52.5,29.5 + parent: 2 + - uid: 3591 + components: + - type: Transform + pos: 50.5,29.5 + parent: 2 + - uid: 3592 + components: + - type: Transform + pos: 51.5,29.5 + parent: 2 - uid: 3611 components: - type: Transform @@ -44468,11 +45218,6 @@ entities: - type: Transform pos: 56.5,-31.5 parent: 2 - - uid: 4823 - components: - - type: Transform - pos: 60.5,18.5 - parent: 2 - uid: 4954 components: - type: Transform @@ -48183,11 +48928,6 @@ entities: - type: Transform pos: -0.5,52.5 parent: 2 - - uid: 9396 - components: - - type: Transform - pos: 50.5,16.5 - parent: 2 - uid: 9398 components: - type: Transform @@ -49163,11 +49903,6 @@ entities: - type: Transform pos: 34.5,-45.5 parent: 2 - - uid: 10945 - components: - - type: Transform - pos: 57.5,11.5 - parent: 2 - uid: 10950 components: - type: Transform @@ -51618,145 +52353,25 @@ entities: - type: Transform pos: 6.5,28.5 parent: 2 - - uid: 12854 + - uid: 12736 components: - type: Transform - pos: 52.5,17.5 + pos: 53.5,30.5 parent: 2 - - uid: 12855 + - uid: 12737 components: - type: Transform - pos: 53.5,17.5 + pos: 53.5,29.5 parent: 2 - - uid: 12856 + - uid: 12900 components: - type: Transform - pos: 53.5,16.5 + pos: 55.5,20.5 parent: 2 - - uid: 12857 + - uid: 12910 components: - type: Transform - pos: 53.5,15.5 - parent: 2 - - uid: 12858 - components: - - type: Transform - pos: 53.5,14.5 - parent: 2 - - uid: 12859 - components: - - type: Transform - pos: 53.5,18.5 - parent: 2 - - uid: 12860 - components: - - type: Transform - pos: 52.5,18.5 - parent: 2 - - uid: 12861 - components: - - type: Transform - pos: 51.5,18.5 - parent: 2 - - uid: 12862 - components: - - type: Transform - pos: 50.5,18.5 - parent: 2 - - uid: 12863 - components: - - type: Transform - pos: 49.5,18.5 - parent: 2 - - uid: 12864 - components: - - type: Transform - pos: 49.5,17.5 - parent: 2 - - uid: 12865 - components: - - type: Transform - pos: 49.5,16.5 - parent: 2 - - uid: 12866 - components: - - type: Transform - pos: 49.5,15.5 - parent: 2 - - uid: 12867 - components: - - type: Transform - pos: 49.5,14.5 - parent: 2 - - uid: 12868 - components: - - type: Transform - pos: 50.5,14.5 - parent: 2 - - uid: 12869 - components: - - type: Transform - pos: 50.5,14.5 - parent: 2 - - uid: 12870 - components: - - type: Transform - pos: 51.5,14.5 - parent: 2 - - uid: 12871 - components: - - type: Transform - pos: 52.5,14.5 - parent: 2 - - uid: 12872 - components: - - type: Transform - pos: 49.5,19.5 - parent: 2 - - uid: 12873 - components: - - type: Transform - pos: 49.5,20.5 - parent: 2 - - uid: 12874 - components: - - type: Transform - pos: 49.5,21.5 - parent: 2 - - uid: 12875 - components: - - type: Transform - pos: 50.5,21.5 - parent: 2 - - uid: 12876 - components: - - type: Transform - pos: 51.5,21.5 - parent: 2 - - uid: 12877 - components: - - type: Transform - pos: 52.5,21.5 - parent: 2 - - uid: 12878 - components: - - type: Transform - pos: 53.5,21.5 - parent: 2 - - uid: 12879 - components: - - type: Transform - pos: 53.5,20.5 - parent: 2 - - uid: 12880 - components: - - type: Transform - pos: 53.5,19.5 - parent: 2 - - uid: 12881 - components: - - type: Transform - pos: 54.5,16.5 + pos: 57.5,17.5 parent: 2 - uid: 12983 components: @@ -51778,71 +52393,6 @@ entities: - type: Transform pos: 62.5,-5.5 parent: 2 - - uid: 13039 - components: - - type: Transform - pos: 58.5,11.5 - parent: 2 - - uid: 13040 - components: - - type: Transform - pos: 59.5,11.5 - parent: 2 - - uid: 13041 - components: - - type: Transform - pos: 60.5,11.5 - parent: 2 - - uid: 13042 - components: - - type: Transform - pos: 60.5,12.5 - parent: 2 - - uid: 13043 - components: - - type: Transform - pos: 60.5,13.5 - parent: 2 - - uid: 13044 - components: - - type: Transform - pos: 60.5,14.5 - parent: 2 - - uid: 13045 - components: - - type: Transform - pos: 60.5,15.5 - parent: 2 - - uid: 13046 - components: - - type: Transform - pos: 60.5,16.5 - parent: 2 - - uid: 13047 - components: - - type: Transform - pos: 60.5,17.5 - parent: 2 - - uid: 13048 - components: - - type: Transform - pos: 59.5,16.5 - parent: 2 - - uid: 13049 - components: - - type: Transform - pos: 58.5,16.5 - parent: 2 - - uid: 13050 - components: - - type: Transform - pos: 57.5,16.5 - parent: 2 - - uid: 13052 - components: - - type: Transform - pos: 55.5,16.5 - parent: 2 - uid: 13053 components: - type: Transform @@ -51883,6 +52433,11 @@ entities: - type: Transform pos: 59.5,-7.5 parent: 2 + - uid: 13076 + components: + - type: Transform + pos: 52.5,24.5 + parent: 2 - uid: 13078 components: - type: Transform @@ -52458,6 +53013,11 @@ entities: - type: Transform pos: -49.5,0.5 parent: 2 + - uid: 17457 + components: + - type: Transform + pos: 47.5,29.5 + parent: 2 - uid: 17468 components: - type: Transform @@ -52708,6 +53268,11 @@ entities: - type: Transform pos: -46.5,-33.5 parent: 2 + - uid: 17524 + components: + - type: Transform + pos: 48.5,29.5 + parent: 2 - uid: 17956 components: - type: Transform @@ -53133,11 +53698,71 @@ entities: - type: Transform pos: 20.5,-18.5 parent: 2 + - uid: 18229 + components: + - type: Transform + pos: 49.5,29.5 + parent: 2 - uid: 18364 components: - type: Transform pos: 42.5,-2.5 parent: 2 + - uid: 18413 + components: + - type: Transform + pos: 55.5,17.5 + parent: 2 + - uid: 18417 + components: + - type: Transform + pos: 51.5,23.5 + parent: 2 + - uid: 18434 + components: + - type: Transform + pos: 51.5,20.5 + parent: 2 + - uid: 18435 + components: + - type: Transform + pos: 59.5,22.5 + parent: 2 + - uid: 18436 + components: + - type: Transform + pos: 60.5,16.5 + parent: 2 + - uid: 18437 + components: + - type: Transform + pos: 60.5,14.5 + parent: 2 + - uid: 18438 + components: + - type: Transform + pos: 55.5,16.5 + parent: 2 + - uid: 18441 + components: + - type: Transform + pos: 54.5,17.5 + parent: 2 + - uid: 18442 + components: + - type: Transform + pos: 56.5,17.5 + parent: 2 + - uid: 18443 + components: + - type: Transform + pos: 50.5,19.5 + parent: 2 + - uid: 18444 + components: + - type: Transform + pos: 59.5,23.5 + parent: 2 - uid: 18503 components: - type: Transform @@ -53148,6 +53773,11 @@ entities: - type: Transform pos: 25.5,35.5 parent: 2 + - uid: 18557 + components: + - type: Transform + pos: 58.5,20.5 + parent: 2 - uid: 18985 components: - type: Transform @@ -53443,6 +54073,26 @@ entities: - type: Transform pos: -47.5,-55.5 parent: 2 + - uid: 20245 + components: + - type: Transform + pos: 53.5,22.5 + parent: 2 + - uid: 20250 + components: + - type: Transform + pos: 60.5,20.5 + parent: 2 + - uid: 20276 + components: + - type: Transform + pos: 46.5,29.5 + parent: 2 + - uid: 20487 + components: + - type: Transform + pos: 51.5,24.5 + parent: 2 - uid: 20490 components: - type: Transform @@ -53458,31 +54108,6 @@ entities: - type: Transform pos: 43.5,26.5 parent: 2 - - uid: 20493 - components: - - type: Transform - pos: 44.5,26.5 - parent: 2 - - uid: 20494 - components: - - type: Transform - pos: 45.5,26.5 - parent: 2 - - uid: 20495 - components: - - type: Transform - pos: 46.5,26.5 - parent: 2 - - uid: 20496 - components: - - type: Transform - pos: 47.5,26.5 - parent: 2 - - uid: 20497 - components: - - type: Transform - pos: 48.5,26.5 - parent: 2 - uid: 20502 components: - type: Transform @@ -55008,6 +55633,11 @@ entities: - type: Transform pos: -6.5,52.5 parent: 2 + - uid: 23422 + components: + - type: Transform + pos: 50.5,20.5 + parent: 2 - uid: 23430 components: - type: Transform @@ -55028,6 +55658,11 @@ entities: - type: Transform pos: 32.5,40.5 parent: 2 + - uid: 23510 + components: + - type: Transform + pos: 50.5,18.5 + parent: 2 - uid: 23511 components: - type: Transform @@ -55083,11 +55718,6 @@ entities: - type: Transform pos: -2.5,41.5 parent: 2 - - uid: 23759 - components: - - type: Transform - pos: 51.5,16.5 - parent: 2 - uid: 23846 components: - type: Transform @@ -55143,6 +55773,11 @@ entities: - type: Transform pos: -46.5,-55.5 parent: 2 + - uid: 24124 + components: + - type: Transform + pos: 59.5,21.5 + parent: 2 - uid: 24141 components: - type: Transform @@ -57913,6 +58548,21 @@ entities: - type: Transform pos: 17.5,-51.5 parent: 2 + - uid: 28812 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 28813 + components: + - type: Transform + pos: 54.5,15.5 + parent: 2 + - uid: 28814 + components: + - type: Transform + pos: 53.5,23.5 + parent: 2 - uid: 28908 components: - type: Transform @@ -57983,11 +58633,21 @@ entities: - type: Transform pos: -44.5,37.5 parent: 2 + - uid: 29002 + components: + - type: Transform + pos: 55.5,12.5 + parent: 2 - uid: 29036 components: - type: Transform pos: -14.5,19.5 parent: 2 + - uid: 29074 + components: + - type: Transform + pos: 53.5,17.5 + parent: 2 - uid: 29077 components: - type: Transform @@ -58098,6 +58758,56 @@ entities: - type: Transform pos: 22.5,39.5 parent: 2 + - uid: 29306 + components: + - type: Transform + pos: 52.5,15.5 + parent: 2 + - uid: 29335 + components: + - type: Transform + pos: 51.5,22.5 + parent: 2 + - uid: 29337 + components: + - type: Transform + pos: 55.5,22.5 + parent: 2 + - uid: 29340 + components: + - type: Transform + pos: 55.5,23.5 + parent: 2 + - uid: 29341 + components: + - type: Transform + pos: 58.5,24.5 + parent: 2 + - uid: 29342 + components: + - type: Transform + pos: 59.5,24.5 + parent: 2 + - uid: 29343 + components: + - type: Transform + pos: 55.5,24.5 + parent: 2 + - uid: 29344 + components: + - type: Transform + pos: 57.5,24.5 + parent: 2 + - uid: 29345 + components: + - type: Transform + pos: 53.5,24.5 + parent: 2 + - uid: 29346 + components: + - type: Transform + pos: 54.5,24.5 + parent: 2 - uid: 29352 components: - type: Transform @@ -58113,55 +58823,85 @@ entities: - type: Transform pos: 63.5,8.5 parent: 2 - - uid: 29368 + - uid: 29375 components: - type: Transform - pos: 49.5,26.5 + pos: 51.5,21.5 + parent: 2 + - uid: 29376 + components: + - type: Transform + pos: 52.5,16.5 + parent: 2 + - uid: 29377 + components: + - type: Transform + pos: 56.5,20.5 + parent: 2 + - uid: 29378 + components: + - type: Transform + pos: 54.5,20.5 parent: 2 - uid: 29379 components: - type: Transform - pos: 50.5,26.5 + pos: 60.5,19.5 parent: 2 - uid: 29380 components: - type: Transform - pos: 51.5,26.5 + pos: 60.5,18.5 parent: 2 - uid: 29381 components: - type: Transform - pos: 52.5,26.5 + pos: 53.5,20.5 parent: 2 - uid: 29382 components: - type: Transform - pos: 53.5,26.5 + pos: 53.5,15.5 parent: 2 - uid: 29383 components: - type: Transform - pos: 54.5,26.5 + pos: 59.5,15.5 parent: 2 - uid: 29384 components: - type: Transform - pos: 55.5,26.5 + pos: 57.5,15.5 parent: 2 - uid: 29385 components: - type: Transform - pos: 56.5,26.5 + pos: 58.5,15.5 parent: 2 - uid: 29386 components: - type: Transform - pos: 56.5,27.5 + pos: 52.5,14.5 parent: 2 - uid: 29387 components: - type: Transform - pos: 56.5,28.5 + pos: 56.5,15.5 + parent: 2 + - uid: 29388 + components: + - type: Transform + pos: 55.5,13.5 + parent: 2 + - uid: 29413 + components: + - type: Transform + pos: 55.5,14.5 + parent: 2 + - uid: 29415 + components: + - type: Transform + pos: 55.5,15.5 parent: 2 - uid: 29472 components: @@ -58263,21 +59003,6 @@ entities: - type: Transform pos: -59.5,-8.5 parent: 2 - - uid: 29575 - components: - - type: Transform - pos: 60.5,19.5 - parent: 2 - - uid: 29576 - components: - - type: Transform - pos: 60.5,20.5 - parent: 2 - - uid: 29577 - components: - - type: Transform - pos: 60.5,21.5 - parent: 2 - uid: 29622 components: - type: Transform @@ -58768,8 +59493,48 @@ entities: - type: Transform pos: -46.5,-19.5 parent: 2 + - uid: 30831 + components: + - type: Transform + pos: 56.5,24.5 + parent: 2 + - uid: 30832 + components: + - type: Transform + pos: 60.5,15.5 + parent: 2 + - uid: 30833 + components: + - type: Transform + pos: 57.5,20.5 + parent: 2 + - uid: 30834 + components: + - type: Transform + pos: 59.5,20.5 + parent: 2 + - uid: 31062 + components: + - type: Transform + pos: 60.5,11.5 + parent: 2 + - uid: 31063 + components: + - type: Transform + pos: 60.5,12.5 + parent: 2 + - uid: 31064 + components: + - type: Transform + pos: 60.5,13.5 + parent: 2 - proto: CableApcStack entities: + - uid: 21060 + components: + - type: Transform + pos: 49.516796,20.036963 + parent: 2 - uid: 30075 components: - type: Transform @@ -58807,11 +59572,6 @@ entities: - type: Transform pos: 7.5,28.5 parent: 2 - - uid: 2381 - components: - - type: Transform - pos: 58.5,24.5 - parent: 2 - uid: 2384 components: - type: Transform @@ -58882,6 +59642,11 @@ entities: - type: Transform pos: 52.5,-10.5 parent: 2 + - uid: 4079 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 - uid: 4153 components: - type: Transform @@ -60507,10 +61272,10 @@ entities: - type: Transform pos: 31.5,33.5 parent: 2 - - uid: 5219 + - uid: 5220 components: - type: Transform - pos: 50.5,26.5 + pos: 60.5,15.5 parent: 2 - uid: 5357 components: @@ -61282,6 +62047,11 @@ entities: - type: Transform pos: 27.5,40.5 parent: 2 + - uid: 6543 + components: + - type: Transform + pos: 52.5,16.5 + parent: 2 - uid: 6674 components: - type: Transform @@ -61327,6 +62097,36 @@ entities: - type: Transform pos: -4.5,45.5 parent: 2 + - uid: 6814 + components: + - type: Transform + pos: 48.5,15.5 + parent: 2 + - uid: 6825 + components: + - type: Transform + pos: 60.5,11.5 + parent: 2 + - uid: 6829 + components: + - type: Transform + pos: 61.5,22.5 + parent: 2 + - uid: 6908 + components: + - type: Transform + pos: 59.5,22.5 + parent: 2 + - uid: 6909 + components: + - type: Transform + pos: 56.5,15.5 + parent: 2 + - uid: 7016 + components: + - type: Transform + pos: 57.5,15.5 + parent: 2 - uid: 7326 components: - type: Transform @@ -61707,11 +62507,26 @@ entities: - type: Transform pos: 33.5,50.5 parent: 2 + - uid: 8502 + components: + - type: Transform + pos: 54.5,15.5 + parent: 2 + - uid: 8670 + components: + - type: Transform + pos: 55.5,15.5 + parent: 2 - uid: 8709 components: - type: Transform pos: 43.5,26.5 parent: 2 + - uid: 8754 + components: + - type: Transform + pos: 53.5,15.5 + parent: 2 - uid: 8755 components: - type: Transform @@ -61722,6 +62537,26 @@ entities: - type: Transform pos: 43.5,28.5 parent: 2 + - uid: 8794 + components: + - type: Transform + pos: 52.5,15.5 + parent: 2 + - uid: 8795 + components: + - type: Transform + pos: 60.5,12.5 + parent: 2 + - uid: 8796 + components: + - type: Transform + pos: 60.5,14.5 + parent: 2 + - uid: 8807 + components: + - type: Transform + pos: 60.5,22.5 + parent: 2 - uid: 8904 components: - type: Transform @@ -61732,6 +62567,21 @@ entities: - type: Transform pos: 43.5,30.5 parent: 2 + - uid: 8955 + components: + - type: Transform + pos: 57.5,22.5 + parent: 2 + - uid: 8956 + components: + - type: Transform + pos: 55.5,22.5 + parent: 2 + - uid: 8957 + components: + - type: Transform + pos: 56.5,22.5 + parent: 2 - uid: 9393 components: - type: Transform @@ -61757,6 +62607,31 @@ entities: - type: Transform pos: -19.5,43.5 parent: 2 + - uid: 9468 + components: + - type: Transform + pos: 53.5,22.5 + parent: 2 + - uid: 9470 + components: + - type: Transform + pos: 49.5,22.5 + parent: 2 + - uid: 9473 + components: + - type: Transform + pos: 48.5,13.5 + parent: 2 + - uid: 9474 + components: + - type: Transform + pos: 52.5,17.5 + parent: 2 + - uid: 9935 + components: + - type: Transform + pos: 48.5,14.5 + parent: 2 - uid: 10005 components: - type: Transform @@ -62017,16 +62892,51 @@ entities: - type: Transform pos: 43.5,-51.5 parent: 2 + - uid: 10728 + components: + - type: Transform + pos: 63.5,16.5 + parent: 2 + - uid: 10730 + components: + - type: Transform + pos: 63.5,19.5 + parent: 2 + - uid: 10731 + components: + - type: Transform + pos: 50.5,27.5 + parent: 2 + - uid: 10743 + components: + - type: Transform + pos: 49.5,27.5 + parent: 2 - uid: 10744 components: - type: Transform pos: 41.5,-50.5 parent: 2 + - uid: 10840 + components: + - type: Transform + pos: 63.5,22.5 + parent: 2 + - uid: 10887 + components: + - type: Transform + pos: 63.5,26.5 + parent: 2 - uid: 10891 components: - type: Transform pos: -47.5,-48.5 parent: 2 + - uid: 10945 + components: + - type: Transform + pos: 63.5,24.5 + parent: 2 - uid: 11584 components: - type: Transform @@ -62462,225 +63372,235 @@ entities: - type: Transform pos: 43.5,10.5 parent: 2 - - uid: 12823 + - uid: 12704 components: - type: Transform - pos: 50.5,19.5 + pos: 47.5,27.5 parent: 2 - - uid: 12824 + - uid: 12709 components: - type: Transform - pos: 51.5,19.5 + pos: 62.5,22.5 parent: 2 - - uid: 12825 + - uid: 12716 components: - type: Transform - pos: 52.5,19.5 + pos: 47.5,25.5 parent: 2 - - uid: 12890 + - uid: 12717 components: - type: Transform - pos: 46.5,24.5 + pos: 47.5,26.5 parent: 2 - - uid: 12891 + - uid: 12728 components: - type: Transform pos: 47.5,24.5 parent: 2 - - uid: 12892 + - uid: 12794 components: - type: Transform - pos: 48.5,24.5 + pos: 63.5,15.5 parent: 2 - - uid: 12893 + - uid: 12795 components: - type: Transform - pos: 49.5,24.5 + pos: 63.5,18.5 parent: 2 - - uid: 12894 + - uid: 12796 components: - type: Transform - pos: 50.5,24.5 + pos: 51.5,27.5 parent: 2 - - uid: 12895 + - uid: 12798 components: - type: Transform - pos: 51.5,24.5 + pos: 63.5,21.5 parent: 2 - - uid: 12896 + - uid: 12799 components: - type: Transform - pos: 52.5,24.5 + pos: 63.5,25.5 parent: 2 - - uid: 12897 + - uid: 12800 components: - type: Transform - pos: 53.5,24.5 + pos: 63.5,23.5 parent: 2 - - uid: 12898 + - uid: 12801 components: - type: Transform - pos: 54.5,24.5 + pos: 47.5,19.5 parent: 2 - - uid: 12899 + - uid: 12805 components: - type: Transform - pos: 55.5,24.5 + pos: 50.5,15.5 parent: 2 - - uid: 12900 + - uid: 12807 components: - type: Transform - pos: 56.5,24.5 + pos: 50.5,22.5 parent: 2 - - uid: 12901 + - uid: 12808 components: - type: Transform - pos: 56.5,23.5 + pos: 51.5,22.5 parent: 2 - - uid: 12902 + - uid: 12809 components: - type: Transform - pos: 56.5,22.5 + pos: 47.5,18.5 parent: 2 - - uid: 12903 + - uid: 12811 components: - type: Transform - pos: 56.5,21.5 + pos: 51.5,17.5 parent: 2 - - uid: 12904 + - uid: 12813 components: - type: Transform - pos: 56.5,20.5 + pos: 58.5,22.5 parent: 2 - - uid: 12905 + - uid: 12816 components: - type: Transform - pos: 56.5,19.5 + pos: 47.5,23.5 parent: 2 - - uid: 12906 + - uid: 12817 components: - type: Transform - pos: 46.5,23.5 + pos: 47.5,20.5 parent: 2 - - uid: 12907 + - uid: 12823 components: - type: Transform - pos: 46.5,22.5 + pos: 47.5,21.5 + parent: 2 + - uid: 12831 + components: + - type: Transform + pos: 48.5,16.5 + parent: 2 + - uid: 12832 + components: + - type: Transform + pos: 63.5,17.5 + parent: 2 + - uid: 12867 + components: + - type: Transform + pos: 58.5,15.5 parent: 2 - uid: 12908 components: - type: Transform - pos: 46.5,21.5 + pos: 48.5,11.5 parent: 2 - uid: 12909 components: - type: Transform - pos: 46.5,20.5 - parent: 2 - - uid: 12910 - components: - - type: Transform - pos: 46.5,19.5 - parent: 2 - - uid: 12911 - components: - - type: Transform - pos: 46.5,18.5 + pos: 46.5,12.5 parent: 2 - uid: 12912 components: - type: Transform - pos: 46.5,17.5 + pos: 63.5,14.5 parent: 2 - uid: 12913 components: - type: Transform - pos: 46.5,16.5 - parent: 2 - - uid: 12914 - components: - - type: Transform - pos: 46.5,15.5 - parent: 2 - - uid: 12915 - components: - - type: Transform - pos: 46.5,14.5 - parent: 2 - - uid: 12916 - components: - - type: Transform - pos: 46.5,13.5 - parent: 2 - - uid: 12917 - components: - - type: Transform - pos: 46.5,12.5 - parent: 2 - - uid: 12918 - components: - - type: Transform - pos: 46.5,11.5 - parent: 2 - - uid: 12919 - components: - - type: Transform - pos: 47.5,11.5 - parent: 2 - - uid: 12920 - components: - - type: Transform - pos: 48.5,11.5 + pos: 54.5,27.5 parent: 2 - uid: 12921 components: - type: Transform - pos: 49.5,11.5 - parent: 2 - - uid: 12922 - components: - - type: Transform - pos: 50.5,11.5 + pos: 63.5,13.5 parent: 2 - uid: 12923 components: - type: Transform - pos: 51.5,11.5 + pos: 55.5,27.5 parent: 2 - uid: 12924 components: - type: Transform - pos: 52.5,11.5 + pos: 61.5,27.5 parent: 2 - uid: 12925 components: - type: Transform - pos: 53.5,11.5 + pos: 59.5,27.5 parent: 2 - uid: 12926 components: - type: Transform - pos: 54.5,11.5 - parent: 2 - - uid: 12927 - components: - - type: Transform - pos: 55.5,11.5 + pos: 60.5,27.5 parent: 2 - uid: 12928 components: - type: Transform - pos: 56.5,11.5 + pos: 47.5,22.5 parent: 2 - uid: 12929 components: - type: Transform - pos: 56.5,12.5 + pos: 48.5,22.5 parent: 2 - - uid: 12930 + - uid: 12933 components: - type: Transform - pos: 56.5,13.5 + pos: 63.5,20.5 + parent: 2 + - uid: 12936 + components: + - type: Transform + pos: 58.5,27.5 + parent: 2 + - uid: 12943 + components: + - type: Transform + pos: 56.5,27.5 + parent: 2 + - uid: 12944 + components: + - type: Transform + pos: 53.5,27.5 + parent: 2 + - uid: 12945 + components: + - type: Transform + pos: 52.5,27.5 + parent: 2 + - uid: 12946 + components: + - type: Transform + pos: 52.5,22.5 + parent: 2 + - uid: 12947 + components: + - type: Transform + pos: 57.5,27.5 + parent: 2 + - uid: 12949 + components: + - type: Transform + pos: 56.5,11.5 + parent: 2 + - uid: 12950 + components: + - type: Transform + pos: 52.5,11.5 + parent: 2 + - uid: 12951 + components: + - type: Transform + pos: 51.5,11.5 + parent: 2 + - uid: 12952 + components: + - type: Transform + pos: 58.5,11.5 parent: 2 - uid: 12959 components: @@ -62827,50 +63747,85 @@ entities: - type: Transform pos: 56.5,9.5 parent: 2 + - uid: 13007 + components: + - type: Transform + pos: 54.5,29.5 + parent: 2 + - uid: 13011 + components: + - type: Transform + pos: 55.5,29.5 + parent: 2 + - uid: 13012 + components: + - type: Transform + pos: 53.5,29.5 + parent: 2 - uid: 13034 components: - type: Transform pos: 43.5,-45.5 parent: 2 - - uid: 13037 + - uid: 13041 components: - type: Transform - pos: 51.5,23.5 + pos: 44.5,29.5 parent: 2 - - uid: 13062 + - uid: 13042 components: - type: Transform - pos: 47.5,27.5 + pos: 46.5,29.5 parent: 2 - - uid: 13073 + - uid: 13043 components: - type: Transform - pos: 49.5,27.5 + pos: 45.5,29.5 parent: 2 - - uid: 13130 + - uid: 13044 components: - type: Transform - pos: 51.5,26.5 + pos: 49.5,30.5 parent: 2 - - uid: 13131 + - uid: 13046 components: - type: Transform - pos: 52.5,26.5 + pos: 50.5,30.5 parent: 2 - - uid: 13210 + - uid: 13047 components: - type: Transform - pos: 51.5,22.5 + pos: 47.5,29.5 parent: 2 - - uid: 13747 + - uid: 13048 components: - type: Transform - pos: 51.5,20.5 + pos: 48.5,30.5 parent: 2 - - uid: 13773 + - uid: 13049 components: - type: Transform - pos: 51.5,21.5 + pos: 48.5,29.5 + parent: 2 + - uid: 13050 + components: + - type: Transform + pos: 51.5,30.5 + parent: 2 + - uid: 13052 + components: + - type: Transform + pos: 52.5,29.5 + parent: 2 + - uid: 13059 + components: + - type: Transform + pos: 51.5,29.5 + parent: 2 + - uid: 13063 + components: + - type: Transform + pos: 53.5,19.5 parent: 2 - uid: 14333 components: @@ -62902,11 +63857,6 @@ entities: - type: Transform pos: 49.5,-15.5 parent: 2 - - uid: 14998 - components: - - type: Transform - pos: 54.5,26.5 - parent: 2 - uid: 15404 components: - type: Transform @@ -62930,7 +63880,7 @@ entities: - uid: 16507 components: - type: Transform - pos: 57.5,24.5 + pos: 50.5,16.5 parent: 2 - uid: 16567 components: @@ -62962,6 +63912,46 @@ entities: - type: Transform pos: -46.5,-51.5 parent: 2 + - uid: 18371 + components: + - type: Transform + pos: 57.5,11.5 + parent: 2 + - uid: 18393 + components: + - type: Transform + pos: 55.5,11.5 + parent: 2 + - uid: 18394 + components: + - type: Transform + pos: 54.5,11.5 + parent: 2 + - uid: 18396 + components: + - type: Transform + pos: 53.5,11.5 + parent: 2 + - uid: 18419 + components: + - type: Transform + pos: 59.5,15.5 + parent: 2 + - uid: 18420 + components: + - type: Transform + pos: 49.5,15.5 + parent: 2 + - uid: 18421 + components: + - type: Transform + pos: 60.5,13.5 + parent: 2 + - uid: 18431 + components: + - type: Transform + pos: 47.5,16.5 + parent: 2 - uid: 18451 components: - type: Transform @@ -62992,10 +63982,20 @@ entities: - type: Transform pos: -54.5,-61.5 parent: 2 - - uid: 18883 + - uid: 18922 components: - type: Transform - pos: 59.5,24.5 + pos: 46.5,16.5 + parent: 2 + - uid: 18928 + components: + - type: Transform + pos: 46.5,15.5 + parent: 2 + - uid: 18929 + components: + - type: Transform + pos: 50.5,17.5 parent: 2 - uid: 19073 components: @@ -64552,41 +65552,6 @@ entities: - type: Transform pos: -61.5,-53.5 parent: 2 - - uid: 20237 - components: - - type: Transform - pos: 55.5,26.5 - parent: 2 - - uid: 20243 - components: - - type: Transform - pos: 56.5,26.5 - parent: 2 - - uid: 20262 - components: - - type: Transform - pos: 44.5,26.5 - parent: 2 - - uid: 20263 - components: - - type: Transform - pos: 45.5,26.5 - parent: 2 - - uid: 20264 - components: - - type: Transform - pos: 46.5,26.5 - parent: 2 - - uid: 20265 - components: - - type: Transform - pos: 47.5,26.5 - parent: 2 - - uid: 20267 - components: - - type: Transform - pos: 49.5,26.5 - parent: 2 - uid: 20388 components: - type: Transform @@ -64595,12 +65560,12 @@ entities: - uid: 20391 components: - type: Transform - pos: 56.5,27.5 + pos: 46.5,13.5 parent: 2 - uid: 20392 components: - type: Transform - pos: 56.5,28.5 + pos: 46.5,18.5 parent: 2 - uid: 20393 components: @@ -64992,26 +65957,46 @@ entities: - type: Transform pos: 59.5,29.5 parent: 2 - - uid: 20500 + - uid: 20485 components: - type: Transform - pos: 61.5,24.5 + pos: 46.5,17.5 parent: 2 - - uid: 20646 + - uid: 20499 components: - type: Transform - pos: 48.5,27.5 + pos: 62.5,27.5 + parent: 2 + - uid: 20561 + components: + - type: Transform + pos: 63.5,27.5 parent: 2 - uid: 20654 components: - type: Transform - pos: 62.5,24.5 + pos: 54.5,22.5 + parent: 2 + - uid: 20705 + components: + - type: Transform + pos: 49.5,11.5 + parent: 2 + - uid: 20720 + components: + - type: Transform + pos: 50.5,11.5 parent: 2 - uid: 20886 components: - type: Transform pos: 51.5,-21.5 parent: 2 + - uid: 20911 + components: + - type: Transform + pos: 48.5,27.5 + parent: 2 - uid: 20959 components: - type: Transform @@ -65787,16 +66772,16 @@ entities: - type: Transform pos: 55.5,-14.5 parent: 2 - - uid: 23422 - components: - - type: Transform - pos: 63.5,24.5 - parent: 2 - uid: 23427 components: - type: Transform pos: 55.5,-17.5 parent: 2 + - uid: 23528 + components: + - type: Transform + pos: 46.5,14.5 + parent: 2 - uid: 23604 components: - type: Transform @@ -65892,11 +66877,6 @@ entities: - type: Transform pos: -20.5,24.5 parent: 2 - - uid: 24167 - components: - - type: Transform - pos: 63.5,20.5 - parent: 2 - uid: 24258 components: - type: Transform @@ -65982,175 +66962,30 @@ entities: - type: Transform pos: 60.5,10.5 parent: 2 - - uid: 29152 - components: - - type: Transform - pos: 60.5,11.5 - parent: 2 - - uid: 29153 - components: - - type: Transform - pos: 60.5,12.5 - parent: 2 - - uid: 29154 - components: - - type: Transform - pos: 60.5,13.5 - parent: 2 - - uid: 29155 - components: - - type: Transform - pos: 60.5,14.5 - parent: 2 - - uid: 29156 - components: - - type: Transform - pos: 60.5,15.5 - parent: 2 - uid: 29157 components: - type: Transform - pos: 60.5,16.5 + pos: 53.5,20.5 parent: 2 - - uid: 29158 + - uid: 29308 components: - type: Transform - pos: 59.5,16.5 + pos: 46.5,11.5 parent: 2 - - uid: 29159 + - uid: 29310 components: - type: Transform - pos: 58.5,16.5 + pos: 47.5,11.5 parent: 2 - - uid: 29160 - components: - - type: Transform - pos: 57.5,16.5 - parent: 2 - - uid: 29161 - components: - - type: Transform - pos: 56.5,16.5 - parent: 2 - - uid: 29162 - components: - - type: Transform - pos: 55.5,16.5 - parent: 2 - - uid: 29163 - components: - - type: Transform - pos: 54.5,16.5 - parent: 2 - - uid: 29164 - components: - - type: Transform - pos: 53.5,16.5 - parent: 2 - - uid: 29165 - components: - - type: Transform - pos: 53.5,17.5 - parent: 2 - - uid: 29166 - components: - - type: Transform - pos: 53.5,19.5 - parent: 2 - - uid: 29167 + - uid: 29311 components: - type: Transform pos: 53.5,18.5 parent: 2 - - uid: 29289 + - uid: 29361 components: - type: Transform - pos: 60.5,24.5 - parent: 2 - - uid: 29298 - components: - - type: Transform - pos: 63.5,22.5 - parent: 2 - - uid: 29299 - components: - - type: Transform - pos: 63.5,21.5 - parent: 2 - - uid: 29305 - components: - - type: Transform - pos: 52.5,20.5 - parent: 2 - - uid: 29306 - components: - - type: Transform - pos: 50.5,20.5 - parent: 2 - - uid: 29324 - components: - - type: Transform - pos: 63.5,19.5 - parent: 2 - - uid: 29325 - components: - - type: Transform - pos: 63.5,18.5 - parent: 2 - - uid: 29326 - components: - - type: Transform - pos: 63.5,17.5 - parent: 2 - - uid: 29327 - components: - - type: Transform - pos: 63.5,16.5 - parent: 2 - - uid: 29328 - components: - - type: Transform - pos: 63.5,15.5 - parent: 2 - - uid: 29329 - components: - - type: Transform - pos: 63.5,14.5 - parent: 2 - - uid: 29330 - components: - - type: Transform - pos: 63.5,13.5 - parent: 2 - - uid: 29331 - components: - - type: Transform - pos: 63.5,12.5 - parent: 2 - - uid: 29332 - components: - - type: Transform - pos: 63.5,11.5 - parent: 2 - - uid: 29333 - components: - - type: Transform - pos: 63.5,11.5 - parent: 2 - - uid: 29335 - components: - - type: Transform - pos: 63.5,23.5 - parent: 2 - - uid: 29364 - components: - - type: Transform - pos: 61.5,15.5 - parent: 2 - - uid: 29367 - components: - - type: Transform - pos: 53.5,26.5 + pos: 52.5,21.5 parent: 2 - uid: 29392 components: @@ -66277,6 +67112,11 @@ entities: - type: Transform pos: 24.5,-25.5 parent: 2 + - uid: 30294 + components: + - type: Transform + pos: 54.5,18.5 + parent: 2 - uid: 30314 components: - type: Transform @@ -68114,6 +68954,16 @@ entities: - type: Transform pos: -4.5,41.5 parent: 2 + - uid: 6541 + components: + - type: Transform + pos: 52.5,19.5 + parent: 2 + - uid: 6547 + components: + - type: Transform + pos: 51.5,17.5 + parent: 2 - uid: 6682 components: - type: Transform @@ -68154,6 +69004,16 @@ entities: - type: Transform pos: 17.5,26.5 parent: 2 + - uid: 6812 + components: + - type: Transform + pos: 52.5,17.5 + parent: 2 + - uid: 6813 + components: + - type: Transform + pos: 54.5,19.5 + parent: 2 - uid: 7097 components: - type: Transform @@ -68959,6 +69819,11 @@ entities: - type: Transform pos: -23.5,43.5 parent: 2 + - uid: 8992 + components: + - type: Transform + pos: 60.5,13.5 + parent: 2 - uid: 9028 components: - type: Transform @@ -69124,6 +69989,21 @@ entities: - type: Transform pos: -25.5,44.5 parent: 2 + - uid: 9396 + components: + - type: Transform + pos: 60.5,11.5 + parent: 2 + - uid: 9466 + components: + - type: Transform + pos: 60.5,12.5 + parent: 2 + - uid: 9471 + components: + - type: Transform + pos: 56.5,19.5 + parent: 2 - uid: 9475 components: - type: Transform @@ -69159,6 +70039,11 @@ entities: - type: Transform pos: -23.5,26.5 parent: 2 + - uid: 9739 + components: + - type: Transform + pos: 49.5,20.5 + parent: 2 - uid: 10039 components: - type: Transform @@ -69504,6 +70389,11 @@ entities: - type: Transform pos: 3.5,-58.5 parent: 2 + - uid: 10958 + components: + - type: Transform + pos: 58.5,19.5 + parent: 2 - uid: 10975 components: - type: Transform @@ -69849,26 +70739,131 @@ entities: - type: Transform pos: -53.5,-31.5 parent: 2 - - uid: 12827 + - uid: 12710 components: - type: Transform - pos: 51.5,19.5 + pos: 59.5,15.5 parent: 2 - - uid: 12828 + - uid: 12711 components: - type: Transform - pos: 51.5,18.5 + pos: 56.5,15.5 parent: 2 - - uid: 12829 + - uid: 12760 + components: + - type: Transform + pos: 60.5,15.5 + parent: 2 + - uid: 12761 + components: + - type: Transform + pos: 57.5,15.5 + parent: 2 + - uid: 12762 + components: + - type: Transform + pos: 60.5,14.5 + parent: 2 + - uid: 12785 + components: + - type: Transform + pos: 49.5,17.5 + parent: 2 + - uid: 12791 + components: + - type: Transform + pos: 49.5,22.5 + parent: 2 + - uid: 12793 + components: + - type: Transform + pos: 49.5,21.5 + parent: 2 + - uid: 12802 + components: + - type: Transform + pos: 58.5,18.5 + parent: 2 + - uid: 12803 + components: + - type: Transform + pos: 57.5,19.5 + parent: 2 + - uid: 12806 + components: + - type: Transform + pos: 53.5,19.5 + parent: 2 + - uid: 12812 + components: + - type: Transform + pos: 55.5,15.5 + parent: 2 + - uid: 12814 + components: + - type: Transform + pos: 49.5,18.5 + parent: 2 + - uid: 12834 + components: + - type: Transform + pos: 58.5,15.5 + parent: 2 + - uid: 12835 + components: + - type: Transform + pos: 55.5,14.5 + parent: 2 + - uid: 12836 + components: + - type: Transform + pos: 55.5,13.5 + parent: 2 + - uid: 12838 + components: + - type: Transform + pos: 49.5,16.5 + parent: 2 + - uid: 12840 + components: + - type: Transform + pos: 49.5,19.5 + parent: 2 + - uid: 12906 + components: + - type: Transform + pos: 59.5,17.5 + parent: 2 + - uid: 12907 + components: + - type: Transform + pos: 61.5,17.5 + parent: 2 + - uid: 12914 + components: + - type: Transform + pos: 55.5,19.5 + parent: 2 + - uid: 12915 + components: + - type: Transform + pos: 50.5,17.5 + parent: 2 + - uid: 12930 + components: + - type: Transform + pos: 58.5,17.5 + parent: 2 + - uid: 12931 + components: + - type: Transform + pos: 60.5,17.5 + parent: 2 + - uid: 12948 components: - type: Transform pos: 52.5,18.5 parent: 2 - - uid: 12853 - components: - - type: Transform - pos: 52.5,17.5 - parent: 2 - uid: 12992 components: - type: Transform @@ -69904,26 +70899,6 @@ entities: - type: Transform pos: 60.5,10.5 parent: 2 - - uid: 13025 - components: - - type: Transform - pos: 60.5,11.5 - parent: 2 - - uid: 13026 - components: - - type: Transform - pos: 59.5,11.5 - parent: 2 - - uid: 13027 - components: - - type: Transform - pos: 58.5,11.5 - parent: 2 - - uid: 13028 - components: - - type: Transform - pos: 57.5,11.5 - parent: 2 - uid: 13072 components: - type: Transform @@ -70994,6 +71969,11 @@ entities: - type: Transform pos: 23.5,-26.5 parent: 2 + - uid: 18644 + components: + - type: Transform + pos: 55.5,12.5 + parent: 2 - uid: 19861 components: - type: Transform @@ -71034,6 +72014,11 @@ entities: - type: Transform pos: 44.5,56.5 parent: 2 + - uid: 20246 + components: + - type: Transform + pos: 49.5,23.5 + parent: 2 - uid: 20396 components: - type: Transform @@ -71614,6 +72599,36 @@ entities: - type: Transform pos: 25.5,35.5 parent: 2 + - uid: 29326 + components: + - type: Transform + pos: 50.5,23.5 + parent: 2 + - uid: 29327 + components: + - type: Transform + pos: 53.5,22.5 + parent: 2 + - uid: 29328 + components: + - type: Transform + pos: 51.5,23.5 + parent: 2 + - uid: 29329 + components: + - type: Transform + pos: 52.5,23.5 + parent: 2 + - uid: 29330 + components: + - type: Transform + pos: 53.5,23.5 + parent: 2 + - uid: 29455 + components: + - type: Transform + pos: 48.5,16.5 + parent: 2 - uid: 29578 components: - type: Transform @@ -71925,15 +72940,23 @@ entities: - type: Transform pos: 14.5,43.5 parent: 2 - - uid: 8502 + - uid: 12693 components: - type: Transform - pos: 50.5,20.5 + rot: 3.141592653589793 rad + pos: 48.5,14.5 parent: 2 - - uid: 8670 + - uid: 12792 components: - type: Transform - pos: 52.5,20.5 + rot: -1.5707963267948966 rad + pos: 49.5,15.5 + parent: 2 + - uid: 13045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,29.5 parent: 2 - uid: 16678 components: @@ -71953,12 +72976,6 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,-53.5 parent: 2 - - uid: 20245 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,26.5 - parent: 2 - uid: 22495 components: - type: Transform @@ -71988,12 +73005,6 @@ entities: rot: 1.5707963267948966 rad pos: 41.5,-45.5 parent: 2 - - uid: 29149 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,19.5 - parent: 2 - proto: Candle entities: - uid: 23174 @@ -74193,6 +75204,11 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,-27.5 parent: 2 + - uid: 3195 + components: + - type: Transform + pos: 49.5,16.5 + parent: 2 - uid: 3449 components: - type: Transform @@ -74241,11 +75257,6 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,28.5 parent: 2 - - uid: 5222 - components: - - type: Transform - pos: 49.5,26.5 - parent: 2 - uid: 5397 components: - type: Transform @@ -74281,6 +75292,12 @@ entities: - type: Transform pos: 22.5,22.5 parent: 2 + - uid: 5749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,14.5 + parent: 2 - uid: 6433 components: - type: Transform @@ -74667,11 +75684,6 @@ entities: - type: Transform pos: -27.5,22.5 parent: 2 - - uid: 8754 - components: - - type: Transform - pos: 52.5,20.5 - parent: 2 - uid: 8785 components: - type: Transform @@ -74816,17 +75828,18 @@ entities: - type: Transform pos: -27.5,18.5 parent: 2 - - uid: 9935 - components: - - type: Transform - pos: 50.5,20.5 - parent: 2 - uid: 9945 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-47.5 parent: 2 + - uid: 10660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,15.5 + parent: 2 - uid: 11974 components: - type: Transform @@ -76021,6 +77034,11 @@ entities: rot: 3.141592653589793 rad pos: 41.5,-46.5 parent: 2 + - uid: 13131 + components: + - type: Transform + pos: 53.5,29.5 + parent: 2 - uid: 13135 components: - type: Transform @@ -76039,6 +77057,16 @@ entities: rot: -1.5707963267948966 rad pos: 66.5,6.5 parent: 2 + - uid: 13210 + components: + - type: Transform + pos: 51.5,29.5 + parent: 2 + - uid: 13400 + components: + - type: Transform + pos: 53.5,30.5 + parent: 2 - uid: 13571 components: - type: Transform @@ -76051,11 +77079,6 @@ entities: rot: -1.5707963267948966 rad pos: 58.5,9.5 parent: 2 - - uid: 15443 - components: - - type: Transform - pos: 51.5,20.5 - parent: 2 - uid: 15563 components: - type: Transform @@ -76266,12 +77289,6 @@ entities: rot: -1.5707963267948966 rad pos: 39.5,49.5 parent: 2 - - uid: 18557 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,49.5 - parent: 2 - uid: 18588 components: - type: Transform @@ -77360,11 +78377,10 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,-55.5 parent: 2 - - uid: 20246 + - uid: 20271 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,27.5 + pos: 50.5,29.5 parent: 2 - uid: 21050 components: @@ -77372,6 +78388,12 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-47.5 parent: 2 + - uid: 23308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,15.5 + parent: 2 - uid: 23469 components: - type: Transform @@ -77759,40 +78781,41 @@ entities: - type: Transform pos: -13.5,-59.5 parent: 2 + - uid: 28975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,13.5 + parent: 2 - uid: 29021 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-44.5 parent: 2 - - uid: 29023 - components: - - type: Transform - pos: 48.5,26.5 - parent: 2 - uid: 29024 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-45.5 parent: 2 - - uid: 29366 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,26.5 - parent: 2 - - uid: 29370 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,26.5 - parent: 2 - - uid: 29373 + - uid: 29309 components: - type: Transform rot: 3.141592653589793 rad - pos: 52.5,27.5 + pos: 48.5,16.5 + parent: 2 + - uid: 29429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,14.5 + parent: 2 + - uid: 29430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,13.5 parent: 2 - uid: 29547 components: @@ -78432,6 +79455,12 @@ entities: rot: 3.141592653589793 rad pos: 31.434769,-34.426872 parent: 21002 + - uid: 29302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.468098,9.715801 + parent: 2 - uid: 29668 components: - type: Transform @@ -78718,7 +79747,7 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: 31.963871,-3.9006166 + pos: 32.059547,-4.228452 parent: 2 - uid: 11855 components: @@ -78726,17 +79755,11 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,-26.5 parent: 2 - - uid: 12795 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,18.5 - parent: 2 - - uid: 13020 + - uid: 12745 components: - type: Transform rot: -1.5707963267948966 rad - pos: 59.5,12.5 + pos: 49.541958,30.582247 parent: 2 - uid: 17325 components: @@ -78750,17 +79773,11 @@ entities: rot: -1.5707963267948966 rad pos: -48.5,-53.5 parent: 2 - - uid: 20272 + - uid: 20253 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.57121,15.605441 - parent: 2 - - uid: 20910 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.535034,27.628138 + rot: 3.141592653589793 rad + pos: 54.5,18 parent: 2 - uid: 23664 components: @@ -78795,6 +79812,18 @@ entities: - type: Transform pos: 31.484047,-20.398914 parent: 2 + - uid: 30938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,18 + parent: 2 + - uid: 31080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.63151,16.669516 + parent: 2 - proto: ChairOfficeLight entities: - uid: 1247 @@ -78870,6 +79899,12 @@ entities: rot: -1.5707963267948966 rad pos: 14.49886,-34.42077 parent: 2 + - uid: 30830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.520355,15.684031 + parent: 2 - proto: ChairWood entities: - uid: 483 @@ -79339,6 +80374,18 @@ entities: parent: 3442 - type: Physics canCollide: False + - uid: 31118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.63412,23.520771 + parent: 2 + - uid: 31119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.675785,23.177021 + parent: 2 - proto: CigarGold entities: - uid: 2705 @@ -79398,6 +80445,8 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ClosetBombFilled entities: - uid: 4310 @@ -79504,6 +80553,11 @@ entities: - type: Transform pos: 35.5,4.5 parent: 2 + - uid: 12827 + components: + - type: Transform + pos: 50.5,30.5 + parent: 2 - uid: 15617 components: - type: Transform @@ -79514,6 +80568,11 @@ entities: - type: Transform pos: 62.5,-0.5 parent: 2 + - uid: 18425 + components: + - type: Transform + pos: 44.5,14.5 + parent: 2 - uid: 18970 components: - type: Transform @@ -79574,6 +80633,11 @@ entities: - type: Transform pos: 45.5,-45.5 parent: 2 + - uid: 20389 + components: + - type: Transform + pos: 53.5,9.5 + parent: 2 - uid: 20868 components: - type: Transform @@ -79589,11 +80653,6 @@ entities: - type: Transform pos: 4.5,49.5 parent: 2 - - uid: 23517 - components: - - type: Transform - pos: 51.5,27.5 - parent: 2 - uid: 23748 components: - type: Transform @@ -79619,11 +80678,6 @@ entities: - type: Transform pos: 47.5,9.5 parent: 2 - - uid: 30294 - components: - - type: Transform - pos: 44.5,19.5 - parent: 2 - uid: 30295 components: - type: Transform @@ -79738,11 +80792,6 @@ entities: - type: Transform pos: 21.5,28.5 parent: 2 - - uid: 9471 - components: - - type: Transform - pos: 38.5,48.5 - parent: 2 - uid: 9647 components: - type: Transform @@ -79763,6 +80812,11 @@ entities: - type: Transform pos: 17.5,39.5 parent: 2 + - uid: 12874 + components: + - type: Transform + pos: 39.5,48.5 + parent: 2 - uid: 13133 components: - type: Transform @@ -79798,6 +80852,11 @@ entities: - type: Transform pos: -37.5,-28.5 parent: 2 + - uid: 19005 + components: + - type: Transform + pos: 44.5,13.5 + parent: 2 - uid: 19015 components: - type: Transform @@ -79973,21 +81032,26 @@ entities: - type: Transform pos: 38.5,46.5 parent: 2 - - uid: 9473 - components: - - type: Transform - pos: 39.5,48.5 - parent: 2 - uid: 9649 components: - type: Transform pos: -25.5,8.5 parent: 2 + - uid: 12872 + components: + - type: Transform + pos: 45.5,26.5 + parent: 2 - uid: 13936 components: - type: Transform pos: 37.5,-37.5 parent: 2 + - uid: 14998 + components: + - type: Transform + pos: 35.5,50.5 + parent: 2 - uid: 18255 components: - type: Transform @@ -80043,11 +81107,6 @@ entities: - type: Transform pos: 44.5,12.5 parent: 2 - - uid: 18922 - components: - - type: Transform - pos: 44.5,23.5 - parent: 2 - uid: 18924 components: - type: Transform @@ -80078,11 +81137,6 @@ entities: - type: Transform pos: 31.5,52.5 parent: 2 - - uid: 19005 - components: - - type: Transform - pos: 54.5,8.5 - parent: 2 - uid: 19006 components: - type: Transform @@ -80200,6 +81254,16 @@ entities: - type: Transform pos: -11.5,-56.5 parent: 2 + - uid: 28510 + components: + - type: Transform + pos: 49.5,13.5 + parent: 2 + - uid: 29301 + components: + - type: Transform + pos: 54.5,9.5 + parent: 2 - uid: 30193 components: - type: Transform @@ -80244,10 +81308,10 @@ entities: - type: Transform pos: 29.5,40.5 parent: 2 - - uid: 9466 + - uid: 12873 components: - type: Transform - pos: 36.5,50.5 + pos: 37.5,50.5 parent: 2 - proto: ClosetWallEmergencyFilledRandom entities: @@ -80257,12 +81321,16 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,54.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9505 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,54.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ClothingBeltStorageWaistbag entities: - uid: 26598 @@ -81427,6 +82495,12 @@ entities: rot: -1.5707963267948966 rad pos: -48.5,-37.5 parent: 2 + - uid: 18426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,12.5 + parent: 2 - uid: 29138 components: - type: Transform @@ -81497,10 +82571,10 @@ entities: - type: Transform pos: 41.5,23.5 parent: 2 - - uid: 29136 + - uid: 12875 components: - type: Transform - pos: 44.5,23.5 + pos: 45.5,26.5 parent: 2 - uid: 29816 components: @@ -81832,7 +82906,7 @@ entities: - uid: 29451 components: - type: Transform - pos: 61.47509,22.204893 + pos: 49.497982,19.266006 parent: 2 - proto: CommsComputerCircuitboard entities: @@ -81855,18 +82929,17 @@ entities: rot: 3.141592653589793 rad pos: -27.5,39.5 parent: 2 - - uid: 13015 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,12.5 - parent: 2 - uid: 18894 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,42.5 parent: 2 + - uid: 24167 + components: + - type: Transform + pos: 55.5,18.5 + parent: 2 - uid: 29295 components: - type: Transform @@ -82019,11 +83092,10 @@ entities: rot: 1.5707963267948966 rad pos: 49.5,-6.5 parent: 2 - - uid: 14688 + - uid: 29324 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,18.5 + pos: 56.5,18.5 parent: 2 - uid: 30257 components: @@ -82067,6 +83139,11 @@ entities: - type: Transform pos: 43.5,-15.5 parent: 2 + - uid: 31133 + components: + - type: Transform + pos: 32.5,-3.5 + parent: 2 - proto: ComputerFrame entities: - uid: 3893 @@ -82166,11 +83243,10 @@ entities: rot: 3.141592653589793 rad pos: -6.5,45.5 parent: 2 - - uid: 29363 + - uid: 29422 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,15.5 + pos: 54.5,18.5 parent: 2 - proto: ComputerRadar entities: @@ -82264,18 +83340,18 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,-46.5 parent: 2 + - uid: 12747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,30.5 + parent: 2 - uid: 18228 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,-53.5 parent: 2 - - uid: 20261 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,27.5 - parent: 2 - uid: 22493 components: - type: Transform @@ -82348,6 +83424,17 @@ entities: - type: Transform pos: 19.5,-42.5 parent: 21002 + - uid: 29889 + components: + - type: Transform + pos: 31.5,-3.5 + parent: 2 + - uid: 31061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,16.5 + parent: 2 - proto: ComputerSurveillanceWirelessCameraMonitor entities: - uid: 12464 @@ -82842,7 +83929,7 @@ entities: - uid: 20270 components: - type: Transform - pos: 58.49672,13.929133 + pos: 52.565563,13.613095 parent: 2 - proto: CottonSeeds entities: @@ -83082,10 +84169,10 @@ entities: parent: 2 - proto: CrateEngineeringCableBulk entities: - - uid: 13076 + - uid: 20261 components: - type: Transform - pos: 52.5,27.5 + pos: 55.5,29.5 parent: 2 - uid: 23066 components: @@ -83891,8 +84978,10 @@ entities: - uid: 4647 components: - type: Transform - pos: 44.5,-20.5 + pos: 45.5,-20.5 parent: 2 + - type: Pullable + prevFixedRotation: True - proto: CrateServiceBureaucracy entities: - uid: 29667 @@ -84342,6 +85431,27 @@ entities: - type: Transform pos: 0.5,0.5 parent: 2 +- proto: DefaultStationBeaconAICore + entities: + - uid: 31065 + components: + - type: Transform + pos: 55.5,25.5 + parent: 2 +- proto: DefaultStationBeaconAIPower + entities: + - uid: 31066 + components: + - type: Transform + pos: 49.5,14.5 + parent: 2 +- proto: DefaultStationBeaconAIUpload + entities: + - uid: 31067 + components: + - type: Transform + pos: 55.5,15.5 + parent: 2 - proto: DefaultStationBeaconAME entities: - uid: 5822 @@ -84713,24 +85823,32 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1594 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1604 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7691 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: DeployableBarrier entities: - uid: 4624 @@ -85212,12 +86330,6 @@ entities: rot: 3.141592653589793 rad pos: 35.5,-54.5 parent: 2 - - uid: 17524 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,1.5 - parent: 2 - uid: 17545 components: - type: Transform @@ -85386,6 +86498,29 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,-30.5 parent: 2 + - uid: 30930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,4.5 + parent: 2 + - uid: 30931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,4.5 + parent: 2 + - uid: 30932 + components: + - type: Transform + pos: 61.5,13.5 + parent: 2 + - uid: 30933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,1.5 + parent: 2 - proto: DisposalJunction entities: - uid: 1202 @@ -85597,6 +86732,12 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,-10.5 parent: 2 + - uid: 30934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,1.5 + parent: 2 - proto: DisposalJunctionFlipped entities: - uid: 3203 @@ -92482,6 +93623,102 @@ entities: rot: -1.5707963267948966 rad pos: -46.5,-30.5 parent: 2 + - uid: 30838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,6.5 + parent: 2 + - uid: 30841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,4.5 + parent: 2 + - uid: 30842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,4.5 + parent: 2 + - uid: 30843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,3.5 + parent: 2 + - uid: 30881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,5.5 + parent: 2 + - uid: 30882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,4.5 + parent: 2 + - uid: 30919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,2.5 + parent: 2 + - uid: 30920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,4.5 + parent: 2 + - uid: 30921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,4.5 + parent: 2 + - uid: 30922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,7.5 + parent: 2 + - uid: 30923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,8.5 + parent: 2 + - uid: 30924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,9.5 + parent: 2 + - uid: 30925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,10.5 + parent: 2 + - uid: 30926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,11.5 + parent: 2 + - uid: 30927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,12.5 + parent: 2 + - uid: 30928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,13.5 + parent: 2 - proto: DisposalRouter entities: - uid: 16559 @@ -93108,6 +94345,12 @@ entities: rot: 3.141592653589793 rad pos: -47.5,-31.5 parent: 2 + - uid: 30929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,13.5 + parent: 2 - proto: DisposalUnit entities: - uid: 434 @@ -93375,6 +94618,11 @@ entities: - type: Transform pos: 11.5,34.5 parent: 2 + - uid: 29347 + components: + - type: Transform + pos: 59.5,13.5 + parent: 2 - proto: DisposalYJunction entities: - uid: 16566 @@ -93958,7 +95206,7 @@ entities: - uid: 23421 components: - type: Transform - pos: 29.415947,20.657654 + pos: 40.5752,16.812033 parent: 2 - proto: DrinkFlaskOld entities: @@ -94100,6 +95348,16 @@ entities: - type: Transform pos: 14.850212,37.63946 parent: 2 + - uid: 31085 + components: + - type: Transform + pos: 30.13958,20.716486 + parent: 2 + - uid: 31086 + components: + - type: Transform + pos: 29.993746,20.560236 + parent: 2 - proto: DrinkGlassCoupeShaped entities: - uid: 11702 @@ -94494,45 +95752,10 @@ entities: parent: 2 - proto: DrinkSodaWaterBottleFull entities: - - uid: 18 - components: - - type: Transform - pos: 24.350317,14.880395 - parent: 2 - - uid: 3589 - components: - - type: Transform - pos: 23.636429,16.66636 - parent: 2 - - uid: 3590 - components: - - type: Transform - pos: 24.292679,16.681986 - parent: 2 - - uid: 3591 - components: - - type: Transform - pos: 24.511429,16.306986 - parent: 2 - - uid: 3592 - components: - - type: Transform - pos: 23.605179,14.947611 - parent: 2 - - uid: 3593 - components: - - type: Transform - pos: 23.355179,15.494486 - parent: 2 - - uid: 3594 - components: - - type: Transform - pos: 24.573929,15.385111 - parent: 2 - uid: 3597 components: - type: Transform - pos: 29.34997,20.992138 + pos: 29.79583,20.997736 parent: 2 - uid: 23386 components: @@ -94606,6 +95829,41 @@ entities: - type: Transform pos: 40.765537,-7.309368 parent: 2 + - uid: 12893 + components: + - type: Transform + pos: 23.743635,14.669084 + parent: 2 + - uid: 12894 + components: + - type: Transform + pos: 24.420717,16.3045 + parent: 2 + - uid: 12895 + components: + - type: Transform + pos: 24.441551,15.700334 + parent: 2 + - uid: 12896 + components: + - type: Transform + pos: 24.420717,15.075334 + parent: 2 + - uid: 12897 + components: + - type: Transform + pos: 23.733217,16.627417 + parent: 2 + - uid: 12898 + components: + - type: Transform + pos: 24.201967,16.606583 + parent: 2 + - uid: 12899 + components: + - type: Transform + pos: 24.149885,14.658667 + parent: 2 - uid: 16792 components: - type: Transform @@ -94621,6 +95879,21 @@ entities: - type: Transform pos: -36.29477,-34.245426 parent: 2 + - uid: 31082 + components: + - type: Transform + pos: 23.451967,15.096167 + parent: 2 + - uid: 31083 + components: + - type: Transform + pos: 23.441551,15.679501 + parent: 2 + - uid: 31084 + components: + - type: Transform + pos: 23.462385,16.356583 + parent: 2 - proto: DrinkWaterCup entities: - uid: 2270 @@ -95390,18 +96663,6 @@ entities: - type: Transform pos: -7.5,38.5 parent: 2 - - uid: 24124 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,17.5 - parent: 2 - - uid: 24125 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,15.5 - parent: 2 - uid: 24131 components: - type: Transform @@ -95675,83 +96936,111 @@ entities: rot: 1.5707963267948966 rad pos: -34.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5805 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8970 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9765 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11980 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19637 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23043 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,3.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 23795 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,43.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23796 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23798 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23800 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23801 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28859 components: - type: Transform pos: -29.5,34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28905 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-52.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: FaxMachineBase entities: - uid: 1043 @@ -95771,7 +97060,7 @@ entities: pos: -7.5,-34.5 parent: 2 - type: FaxMachine - name: medical + name: Medical - uid: 2423 components: - type: MetaData @@ -95780,7 +97069,7 @@ entities: pos: 25.5,4.5 parent: 2 - type: FaxMachine - name: bridge + name: Bridge - uid: 3415 components: - type: MetaData @@ -95789,7 +97078,7 @@ entities: pos: 43.5,-4.5 parent: 2 - type: FaxMachine - name: HoP + name: HoP's Office - uid: 5844 components: - type: MetaData @@ -95798,7 +97087,7 @@ entities: pos: 38.5,5.5 parent: 2 - type: FaxMachine - name: lawyer + name: Lawyer - uid: 6248 components: - type: MetaData @@ -95807,7 +97096,7 @@ entities: pos: 8.5,34.5 parent: 2 - type: FaxMachine - name: engineering + name: Engineering - uid: 7988 components: - type: MetaData @@ -95816,7 +97105,7 @@ entities: pos: -11.5,35.5 parent: 2 - type: FaxMachine - name: library + name: Library - uid: 9013 components: - type: MetaData @@ -95825,7 +97114,7 @@ entities: pos: -23.5,28.5 parent: 2 - type: FaxMachine - name: atmos + name: Atmos - uid: 10599 components: - type: MetaData @@ -95834,7 +97123,7 @@ entities: pos: 9.5,-45.5 parent: 2 - type: FaxMachine - name: science + name: Science - uid: 11204 components: - type: MetaData @@ -95843,7 +97132,7 @@ entities: pos: -48.5,3.5 parent: 2 - type: FaxMachine - name: cargo + name: Cargo - uid: 11856 components: - type: MetaData @@ -95852,16 +97141,7 @@ entities: pos: -46.5,-27.5 parent: 2 - type: FaxMachine - name: news - - uid: 13061 - components: - - type: MetaData - name: AI fax machine - - type: Transform - pos: 58.5,14.5 - parent: 2 - - type: FaxMachine - name: AI + name: News Room - uid: 17217 components: - type: MetaData @@ -95870,7 +97150,7 @@ entities: pos: 34.5,-21.5 parent: 2 - type: FaxMachine - name: security + name: Security - uid: 22766 components: - type: MetaData @@ -95880,6 +97160,15 @@ entities: parent: 21002 - type: FaxMachine name: Perma + - uid: 31068 + components: + - type: MetaData + name: AI fax machine + - type: Transform + pos: 59.5,16.5 + parent: 2 + - type: FaxMachine + name: AI Upload - proto: FaxMachineCaptain entities: - uid: 2688 @@ -95889,12 +97178,38 @@ entities: parent: 2 - proto: FenceMetalGate entities: + - uid: 18427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,15.5 + parent: 2 - uid: 30252 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-38.5 parent: 2 +- proto: FenceMetalStraight + entities: + - uid: 13037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,14.5 + parent: 2 + - uid: 29155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,16.5 + parent: 2 + - uid: 29161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,13.5 + parent: 2 - proto: FenceWoodSmallGate entities: - uid: 28615 @@ -95965,6 +97280,34 @@ entities: - type: Transform pos: 29.507704,22.5 parent: 2 + - type: Storage + storedItems: + 2743: + position: 0,0 + _rotation: South + 2746: + position: 1,0 + _rotation: South + 2747: + position: 2,0 + _rotation: South + 2744: + position: 3,0 + _rotation: South + 2745: + position: 4,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 2743 + - 2746 + - 2747 + - 2744 + - 2745 - uid: 5843 components: - type: Transform @@ -96059,6 +97402,9 @@ entities: 10837: position: 0,0 _rotation: South + 29266: + position: 1,0 + _rotation: South - type: ContainerContainer containers: storagebase: !type:Container @@ -96066,6 +97412,7 @@ entities: occludes: True ents: - 10837 + - 29266 - uid: 4570 components: - type: Transform @@ -96211,6 +97558,16 @@ entities: occludes: True ents: - 29265 + - uid: 31073 + components: + - type: Transform + pos: 54.068718,13.5 + parent: 2 + - uid: 31074 + components: + - type: Transform + pos: 56.943718,13.5 + parent: 2 - proto: FireAlarm entities: - uid: 410 @@ -96219,6 +97576,8 @@ entities: rot: -1.5707963267948966 rad pos: 43.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2123 components: - type: Transform @@ -96229,6 +97588,8 @@ entities: devices: - 17904 - 17905 + - type: Fixtures + fixtures: {} - uid: 4037 components: - type: Transform @@ -96241,6 +97602,8 @@ entities: - 30329 - 5582 - 30327 + - type: Fixtures + fixtures: {} - uid: 4514 components: - type: Transform @@ -96269,6 +97632,8 @@ entities: - 16528 - 30338 - 30028 + - type: Fixtures + fixtures: {} - uid: 10191 components: - type: Transform @@ -96283,6 +97648,8 @@ entities: - 16523 - 16524 - 16525 + - type: Fixtures + fixtures: {} - uid: 13051 components: - type: Transform @@ -96297,6 +97664,8 @@ entities: - 30358 - 30359 - 30332 + - type: Fixtures + fixtures: {} - uid: 13483 components: - type: Transform @@ -96311,6 +97680,8 @@ entities: - 17899 - 16671 - 12062 + - type: Fixtures + fixtures: {} - uid: 15810 components: - type: Transform @@ -96321,6 +97692,8 @@ entities: devices: - 876 - 18504 + - type: Fixtures + fixtures: {} - uid: 18231 components: - type: Transform @@ -96331,6 +97704,8 @@ entities: devices: - 18232 - 18233 + - type: Fixtures + fixtures: {} - uid: 18241 components: - type: Transform @@ -96345,6 +97720,8 @@ entities: - 18232 - 18234 - 18235 + - type: Fixtures + fixtures: {} - uid: 18243 components: - type: Transform @@ -96355,6 +97732,8 @@ entities: devices: - 18235 - 18234 + - type: Fixtures + fixtures: {} - uid: 18246 components: - type: Transform @@ -96374,6 +97753,8 @@ entities: - 18250 - 18252 - 18251 + - type: Fixtures + fixtures: {} - uid: 18259 components: - type: Transform @@ -96390,6 +97771,8 @@ entities: - 16536 - 16535 - 16534 + - type: Fixtures + fixtures: {} - uid: 18264 components: - type: Transform @@ -96404,6 +97787,8 @@ entities: - 3343 - 3344 - 3345 + - type: Fixtures + fixtures: {} - uid: 18274 components: - type: Transform @@ -96432,6 +97817,8 @@ entities: - 131 - 130 - 129 + - type: Fixtures + fixtures: {} - uid: 18275 components: - type: Transform @@ -96459,6 +97846,8 @@ entities: - 166 - 167 - 168 + - type: Fixtures + fixtures: {} - uid: 18276 components: - type: Transform @@ -96493,6 +97882,8 @@ entities: - 181 - 180 - 179 + - type: Fixtures + fixtures: {} - uid: 18277 components: - type: Transform @@ -96521,6 +97912,8 @@ entities: - 124 - 125 - 126 + - type: Fixtures + fixtures: {} - uid: 18281 components: - type: Transform @@ -96555,6 +97948,8 @@ entities: - 158 - 157 - 156 + - type: Fixtures + fixtures: {} - uid: 18282 components: - type: Transform @@ -96588,6 +97983,8 @@ entities: - 171 - 170 - 169 + - type: Fixtures + fixtures: {} - uid: 18283 components: - type: Transform @@ -96622,6 +98019,8 @@ entities: - 184 - 183 - 182 + - type: Fixtures + fixtures: {} - uid: 18284 components: - type: Transform @@ -96656,6 +98055,8 @@ entities: - 119 - 118 - 117 + - type: Fixtures + fixtures: {} - uid: 18289 components: - type: Transform @@ -96675,6 +98076,8 @@ entities: - 85 - 86 - 87 + - type: Fixtures + fixtures: {} - uid: 18302 components: - type: Transform @@ -96689,6 +98092,8 @@ entities: - 16499 - 16500 - 16501 + - type: Fixtures + fixtures: {} - uid: 18306 components: - type: Transform @@ -96709,6 +98114,8 @@ entities: - 18322 - 18307 - 18308 + - type: Fixtures + fixtures: {} - uid: 18318 components: - type: Transform @@ -96719,6 +98126,8 @@ entities: devices: - 18327 - 18326 + - type: Fixtures + fixtures: {} - uid: 18319 components: - type: Transform @@ -96734,6 +98143,8 @@ entities: - 18325 - 18309 - 18310 + - type: Fixtures + fixtures: {} - uid: 18331 components: - type: Transform @@ -96758,6 +98169,8 @@ entities: - 75 - 24132 - 17899 + - type: Fixtures + fixtures: {} - uid: 18334 components: - type: Transform @@ -96772,6 +98185,8 @@ entities: - 16516 - 16515 - 16514 + - type: Fixtures + fixtures: {} - uid: 18335 components: - type: Transform @@ -96788,18 +98203,8 @@ entities: - 2177 - 20660 - 23087 - - uid: 18444 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,14.5 - parent: 2 - - type: DeviceList - devices: - - 18371 - - 18370 - - 18441 - - 18442 + - type: Fixtures + fixtures: {} - uid: 18454 components: - type: Transform @@ -96813,6 +98218,8 @@ entities: - 16528 - 18369 - 18368 + - type: Fixtures + fixtures: {} - uid: 18464 components: - type: Transform @@ -96827,6 +98234,8 @@ entities: - 18466 - 18467 - 18468 + - type: Fixtures + fixtures: {} - uid: 18470 components: - type: Transform @@ -96843,6 +98252,8 @@ entities: - 18476 - 18468 - 18467 + - type: Fixtures + fixtures: {} - uid: 18477 components: - type: Transform @@ -96853,6 +98264,8 @@ entities: devices: - 18471 - 18472 + - type: Fixtures + fixtures: {} - uid: 18483 components: - type: Transform @@ -96862,6 +98275,8 @@ entities: devices: - 18476 - 18475 + - type: Fixtures + fixtures: {} - uid: 18484 components: - type: Transform @@ -96872,6 +98287,8 @@ entities: devices: - 18473 - 18474 + - type: Fixtures + fixtures: {} - uid: 18498 components: - type: Transform @@ -96890,6 +98307,8 @@ entities: - 16548 - 16549 - 16550 + - type: Fixtures + fixtures: {} - uid: 18500 components: - type: Transform @@ -96909,6 +98328,8 @@ entities: - 16552 - 876 - 18504 + - type: Fixtures + fixtures: {} - uid: 18531 components: - type: Transform @@ -96923,12 +98344,16 @@ entities: - 18493 - 18522 - 18523 + - type: Fixtures + fixtures: {} - uid: 18537 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18538 components: - type: Transform @@ -96942,6 +98367,8 @@ entities: - 18524 - 18527 - 18526 + - type: Fixtures + fixtures: {} - uid: 18542 components: - type: Transform @@ -96953,6 +98380,8 @@ entities: - 18528 - 18526 - 18527 + - type: Fixtures + fixtures: {} - uid: 18551 components: - type: Transform @@ -96967,6 +98396,8 @@ entities: - 18529 - 18547 - 18546 + - type: Fixtures + fixtures: {} - uid: 18552 components: - type: Transform @@ -96981,6 +98412,8 @@ entities: - 18529 - 18547 - 18546 + - type: Fixtures + fixtures: {} - uid: 18565 components: - type: Transform @@ -96994,6 +98427,8 @@ entities: - 18488 - 18489 - 18561 + - type: Fixtures + fixtures: {} - uid: 18566 components: - type: Transform @@ -97008,6 +98443,8 @@ entities: - 18572 - 18568 - 18569 + - type: Fixtures + fixtures: {} - uid: 18575 components: - type: Transform @@ -97021,6 +98458,8 @@ entities: - 18578 - 18568 - 18569 + - type: Fixtures + fixtures: {} - uid: 18583 components: - type: Transform @@ -97036,6 +98475,8 @@ entities: - 12062 - 17902 - 17903 + - type: Fixtures + fixtures: {} - uid: 18586 components: - type: Transform @@ -97046,6 +98487,8 @@ entities: devices: - 17902 - 17903 + - type: Fixtures + fixtures: {} - uid: 18604 components: - type: Transform @@ -97060,6 +98503,8 @@ entities: - 18593 - 18594 - 18608 + - type: Fixtures + fixtures: {} - uid: 18607 components: - type: Transform @@ -97079,6 +98524,8 @@ entities: - 18593 - 18609 - 18608 + - type: Fixtures + fixtures: {} - uid: 18615 components: - type: Transform @@ -97094,6 +98541,8 @@ entities: - 18617 - 18619 - 18618 + - type: Fixtures + fixtures: {} - uid: 18651 components: - type: Transform @@ -97106,6 +98555,8 @@ entities: - 18639 - 18636 - 18635 + - type: Fixtures + fixtures: {} - uid: 18653 components: - type: Transform @@ -97119,6 +98570,8 @@ entities: - 18636 - 18635 - 18634 + - type: Fixtures + fixtures: {} - uid: 18657 components: - type: Transform @@ -97128,6 +98581,8 @@ entities: - type: DeviceList devices: - 18638 + - type: Fixtures + fixtures: {} - uid: 18662 components: - type: Transform @@ -97143,6 +98598,8 @@ entities: - 18248 - 18249 - 18659 + - type: Fixtures + fixtures: {} - uid: 18668 components: - type: Transform @@ -97152,6 +98609,8 @@ entities: - type: DeviceList devices: - 18659 + - type: Fixtures + fixtures: {} - uid: 18679 components: - type: Transform @@ -97161,6 +98620,8 @@ entities: - type: DeviceList devices: - 18660 + - type: Fixtures + fixtures: {} - uid: 18684 components: - type: Transform @@ -97170,6 +98631,8 @@ entities: - type: DeviceList devices: - 18661 + - type: Fixtures + fixtures: {} - uid: 18685 components: - type: Transform @@ -97181,6 +98644,8 @@ entities: - 2200 - 18595 - 18594 + - type: Fixtures + fixtures: {} - uid: 18688 components: - type: Transform @@ -97190,12 +98655,16 @@ entities: - type: DeviceList devices: - 18597 + - type: Fixtures + fixtures: {} - uid: 18689 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18699 components: - type: Transform @@ -97205,6 +98674,8 @@ entities: - type: DeviceList devices: - 18698 + - type: Fixtures + fixtures: {} - uid: 20687 components: - type: Transform @@ -97216,6 +98687,8 @@ entities: - 18523 - 18522 - 18524 + - type: Fixtures + fixtures: {} - uid: 21211 components: - type: Transform @@ -97225,6 +98698,8 @@ entities: - type: DeviceList devices: - 21390 + - type: Fixtures + fixtures: {} - uid: 21367 components: - type: Transform @@ -97236,6 +98711,8 @@ entities: - 25356 - 25354 - 25353 + - type: Fixtures + fixtures: {} - uid: 21372 components: - type: Transform @@ -97247,6 +98724,8 @@ entities: - 25356 - 25354 - 25353 + - type: Fixtures + fixtures: {} - uid: 21412 components: - type: Transform @@ -97256,6 +98735,8 @@ entities: - type: DeviceList devices: - 22384 + - type: Fixtures + fixtures: {} - uid: 21417 components: - type: Transform @@ -97265,6 +98746,8 @@ entities: - type: DeviceList devices: - 25359 + - type: Fixtures + fixtures: {} - uid: 21418 components: - type: Transform @@ -97274,6 +98757,8 @@ entities: - type: DeviceList devices: - 25359 + - type: Fixtures + fixtures: {} - uid: 21419 components: - type: Transform @@ -97283,6 +98768,8 @@ entities: - type: DeviceList devices: - 21413 + - type: Fixtures + fixtures: {} - uid: 21420 components: - type: Transform @@ -97291,6 +98778,8 @@ entities: - type: DeviceList devices: - 21413 + - type: Fixtures + fixtures: {} - uid: 21452 components: - type: Transform @@ -97302,6 +98791,8 @@ entities: - 25357 - 25358 - 25352 + - type: Fixtures + fixtures: {} - uid: 21454 components: - type: Transform @@ -97312,6 +98803,8 @@ entities: - 25357 - 25358 - 25352 + - type: Fixtures + fixtures: {} - uid: 21460 components: - type: Transform @@ -97320,6 +98813,8 @@ entities: - type: DeviceList devices: - 21457 + - type: Fixtures + fixtures: {} - uid: 21463 components: - type: Transform @@ -97328,6 +98823,8 @@ entities: - type: DeviceList devices: - 21457 + - type: Fixtures + fixtures: {} - uid: 21570 components: - type: Transform @@ -97339,6 +98836,8 @@ entities: - 26798 - 26787 - 26792 + - type: Fixtures + fixtures: {} - uid: 21697 components: - type: Transform @@ -97348,6 +98847,8 @@ entities: - type: DeviceList devices: - 21709 + - type: Fixtures + fixtures: {} - uid: 21712 components: - type: Transform @@ -97357,6 +98858,8 @@ entities: - type: DeviceList devices: - 28045 + - type: Fixtures + fixtures: {} - uid: 22141 components: - type: Transform @@ -97366,6 +98869,8 @@ entities: - type: DeviceList devices: - 21709 + - type: Fixtures + fixtures: {} - uid: 22952 components: - type: Transform @@ -97375,6 +98880,8 @@ entities: - type: DeviceList devices: - 30331 + - type: Fixtures + fixtures: {} - uid: 23057 components: - type: Transform @@ -97387,6 +98894,8 @@ entities: - 23053 - 23054 - 23055 + - type: Fixtures + fixtures: {} - uid: 23088 components: - type: Transform @@ -97399,6 +98908,8 @@ entities: - 23087 - 18621 - 18620 + - type: Fixtures + fixtures: {} - uid: 23680 components: - type: Transform @@ -97409,6 +98920,8 @@ entities: devices: - 16775 - 23678 + - type: Fixtures + fixtures: {} - uid: 23681 components: - type: Transform @@ -97423,6 +98936,8 @@ entities: - 16775 - 16551 - 16552 + - type: Fixtures + fixtures: {} - uid: 23726 components: - type: Transform @@ -97436,6 +98951,8 @@ entities: - 23687 - 23685 - 23686 + - type: Fixtures + fixtures: {} - uid: 24092 components: - type: Transform @@ -97447,6 +98964,8 @@ entities: - 24090 - 24089 - 24087 + - type: Fixtures + fixtures: {} - uid: 24225 components: - type: Transform @@ -97456,6 +98975,8 @@ entities: - type: DeviceList devices: - 24155 + - type: Fixtures + fixtures: {} - uid: 24298 components: - type: Transform @@ -97465,6 +98986,8 @@ entities: - type: DeviceList devices: - 26587 + - type: Fixtures + fixtures: {} - uid: 24299 components: - type: Transform @@ -97474,6 +98997,8 @@ entities: - type: DeviceList devices: - 26587 + - type: Fixtures + fixtures: {} - uid: 24301 components: - type: Transform @@ -97482,6 +99007,8 @@ entities: - type: DeviceList devices: - 21390 + - type: Fixtures + fixtures: {} - uid: 24302 components: - type: Transform @@ -97491,6 +99018,8 @@ entities: - type: DeviceList devices: - 21397 + - type: Fixtures + fixtures: {} - uid: 24303 components: - type: Transform @@ -97499,6 +99028,8 @@ entities: - type: DeviceList devices: - 21397 + - type: Fixtures + fixtures: {} - uid: 24304 components: - type: Transform @@ -97507,6 +99038,8 @@ entities: - type: DeviceList devices: - 21389 + - type: Fixtures + fixtures: {} - uid: 24305 components: - type: Transform @@ -97516,6 +99049,8 @@ entities: - type: DeviceList devices: - 21389 + - type: Fixtures + fixtures: {} - uid: 26222 components: - type: Transform @@ -97524,6 +99059,8 @@ entities: - type: DeviceList devices: - 22384 + - type: Fixtures + fixtures: {} - uid: 26679 components: - type: Transform @@ -97533,6 +99070,8 @@ entities: - type: DeviceList devices: - 28045 + - type: Fixtures + fixtures: {} - uid: 28066 components: - type: Transform @@ -97544,6 +99083,8 @@ entities: - 26798 - 26787 - 26792 + - type: Fixtures + fixtures: {} - uid: 28901 components: - type: Transform @@ -97553,6 +99094,8 @@ entities: - type: DeviceList devices: - 18546 + - type: Fixtures + fixtures: {} - uid: 29463 components: - type: Transform @@ -97562,6 +99105,8 @@ entities: - type: DeviceList devices: - 29461 + - type: Fixtures + fixtures: {} - uid: 29464 components: - type: Transform @@ -97573,6 +99118,8 @@ entities: - 18601 - 18620 - 18621 + - type: Fixtures + fixtures: {} - uid: 30080 components: - type: Transform @@ -97582,6 +99129,8 @@ entities: devices: - 30338 - 30028 + - type: Fixtures + fixtures: {} - uid: 30348 components: - type: Transform @@ -97595,6 +99144,8 @@ entities: - 30344 - 30345 - 30341 + - type: Fixtures + fixtures: {} - uid: 30349 components: - type: Transform @@ -97606,6 +99157,8 @@ entities: - 30346 - 30347 - 30341 + - type: Fixtures + fixtures: {} - uid: 30350 components: - type: Transform @@ -97619,6 +99172,8 @@ entities: - 30335 - 30354 - 30355 + - type: Fixtures + fixtures: {} - uid: 30351 components: - type: Transform @@ -97629,6 +99184,8 @@ entities: - 30333 - 30334 - 30330 + - type: Fixtures + fixtures: {} - uid: 30352 components: - type: Transform @@ -97645,6 +99202,8 @@ entities: - 30340 - 30337 - 30336 + - type: Fixtures + fixtures: {} - uid: 30353 components: - type: Transform @@ -97658,6 +99217,8 @@ entities: - 30333 - 30354 - 30355 + - type: Fixtures + fixtures: {} - uid: 30356 components: - type: Transform @@ -97671,19 +99232,8 @@ entities: - 30333 - 30354 - 30355 - - uid: 30361 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-18.5 - parent: 2 - - type: DeviceList - devices: - - 30327 - - 30331 - - 30332 - - 30359 - - 30358 + - type: Fixtures + fixtures: {} - uid: 30827 components: - type: Transform @@ -97696,6 +99246,8 @@ entities: - 30821 - 30819 - 12226 + - type: Fixtures + fixtures: {} - uid: 30828 components: - type: Transform @@ -97708,6 +99260,37 @@ entities: - 30821 - 30819 - 12226 + - type: Fixtures + fixtures: {} + - uid: 30836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-21.5 + parent: 2 + - type: DeviceList + devices: + - 30327 + - 30331 + - 30332 + - 30359 + - 30358 + - type: Fixtures + fixtures: {} + - uid: 31037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,12.5 + parent: 2 + - type: DeviceList + devices: + - 2381 + - 2380 + - 30992 + - 30993 + - type: Fixtures + fixtures: {} - proto: FireAxeCabinetFilled entities: - uid: 2471 @@ -97716,12 +99299,16 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28373 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,38.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: FireExtinguisher entities: - uid: 6252 @@ -98684,7 +100271,7 @@ entities: pos: -13.5,-1.5 parent: 2 - type: Door - secondsUntilStateChange: -278084.75 + secondsUntilStateChange: -303342.88 - type: DeviceNetwork deviceLists: - 18275 @@ -99226,6 +100813,24 @@ entities: - 18687 - 18607 - 18606 + - uid: 2380 + components: + - type: Transform + pos: 61.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31037 + - 31038 + - uid: 2381 + components: + - type: Transform + pos: 60.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31037 + - 31038 - uid: 3343 components: - type: Transform @@ -100137,48 +101742,6 @@ entities: - 15512 - 18440 - 18454 - - uid: 18370 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18440 - - 18444 - - 18443 - - uid: 18371 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18440 - - 18444 - - 18443 - - uid: 18441 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,15.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18444 - - 18443 - - uid: 18442 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,17.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18444 - - 18443 - uid: 18465 components: - type: Transform @@ -101201,8 +102764,8 @@ entities: deviceLists: - 4037 - 30357 - - 30361 - 30363 + - 30836 - uid: 30328 components: - type: Transform @@ -101247,10 +102810,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 30361 - 30363 - 30364 - 22952 + - 30836 - uid: 30332 components: - type: Transform @@ -101261,8 +102824,8 @@ entities: deviceLists: - 30360 - 13051 - - 30361 - 30363 + - 30836 - uid: 30333 components: - type: Transform @@ -101488,8 +103051,8 @@ entities: deviceLists: - 30360 - 13051 - - 30361 - 30363 + - 30836 - uid: 30359 components: - type: Transform @@ -101500,8 +103063,46 @@ entities: deviceLists: - 30360 - 13051 - - 30361 - 30363 + - 30836 + - uid: 30992 + components: + - type: Transform + pos: 57.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31037 + - 31038 + - 31039 + - uid: 30993 + components: + - type: Transform + pos: 53.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31037 + - 31038 + - 31039 + - uid: 30994 + components: + - type: Transform + pos: 51.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31039 + - 31040 + - uid: 30995 + components: + - type: Transform + pos: 59.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31039 + - 31040 - proto: Fireplace entities: - uid: 1588 @@ -101900,16 +103501,6 @@ entities: rot: -1.5707963267948966 rad pos: -2.5742838,-52.5 parent: 2 - - uid: 13063 - components: - - type: Transform - pos: 58.45381,19.547539 - parent: 2 - - uid: 13064 - components: - - type: Transform - pos: 58.594437,19.375664 - parent: 2 - uid: 19044 components: - type: Transform @@ -101939,6 +103530,16 @@ entities: rot: -1.5707963267948966 rad pos: 40.50512,-2.6322846 parent: 2 + - uid: 31069 + components: + - type: Transform + pos: 60.204136,16.662529 + parent: 2 + - uid: 31070 + components: + - type: Transform + pos: 60.422886,16.485447 + parent: 2 - proto: FoodBakedCookieOatmeal entities: - uid: 23380 @@ -102007,10 +103608,10 @@ entities: parent: 2 - proto: FoodBurgerRobot entities: - - uid: 13066 + - uid: 31057 components: - type: Transform - pos: 51.50141,22.597155 + pos: 50.48245,13.668946 parent: 2 - proto: FoodCartCold entities: @@ -102072,6 +103673,30 @@ entities: - type: Transform pos: 13.403409,29.562233 parent: 2 + - uid: 30886 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30887 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30888 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30889 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False - proto: FoodFrozenPopsicleJumbo entities: - uid: 1579 @@ -102118,6 +103743,96 @@ entities: rot: -1.5707963267948966 rad pos: -24.074755,-39.23473 parent: 2 + - uid: 30854 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30855 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30862 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30863 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30864 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30869 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30870 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30871 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30872 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30873 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30874 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30906 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30907 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30908 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30910 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False - proto: FoodFrozenSandwichStrawberry entities: - uid: 1595 @@ -102127,6 +103842,50 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: FoodFrozenSnowconeTrash + entities: + - uid: 30875 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30876 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30877 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30878 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30880 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30884 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30885 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False - proto: FoodFrozenSundae entities: - uid: 1580 @@ -102204,6 +103963,16 @@ entities: - type: Transform pos: -25.542435,-40.44679 parent: 2 + - uid: 30846 + components: + - type: Transform + pos: -25.429605,-40.442677 + parent: 2 + - uid: 30847 + components: + - type: Transform + pos: -25.690022,-40.43226 + parent: 2 - proto: FoodOrange entities: - uid: 16226 @@ -102252,6 +104021,20 @@ entities: - type: Transform pos: -37.508495,-43.551857 parent: 2 +- proto: FoodPlateTrash + entities: + - uid: 30912 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30913 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False - proto: FoodPoppy entities: - uid: 2295 @@ -102292,14 +104075,14 @@ entities: - uid: 3595 components: - type: Transform - pos: 23.980179,16.619486 + pos: 24.004051,16.731583 parent: 2 - proto: FoodSnackPistachios entities: - uid: 3596 components: - type: Transform - pos: 23.433304,16.119486 + pos: 23.410301,15.981584 parent: 2 - proto: FoodSnackRaisins entities: @@ -102332,6 +104115,80 @@ entities: - type: Transform pos: -34.484306,-51.296925 parent: 2 +- proto: FoodTinBeansTrash + entities: + - uid: 30849 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30857 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30860 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30865 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30866 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30867 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30868 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30890 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30891 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30892 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30893 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30894 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False - proto: FoodTinMRETrash entities: - uid: 30139 @@ -102339,6 +104196,142 @@ entities: - type: Transform pos: -26.621073,-39.243793 parent: 2 + - uid: 30851 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30858 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30896 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30897 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30898 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30899 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30904 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False +- proto: FoodTinPeachesMaintTrash + entities: + - uid: 30879 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False +- proto: FoodTinPeachesTrash + entities: + - uid: 30850 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30852 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30853 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30856 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30859 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30861 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30895 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30905 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30909 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30911 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30914 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30915 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30916 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30918 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False - proto: FoodWatermelon entities: - uid: 19149 @@ -102376,6 +104369,8 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,31.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: FundingAllocationComputerCircuitboard entities: - uid: 1404 @@ -102385,12 +104380,19 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: FungalSoil + entities: + - uid: 30835 + components: + - type: Transform + pos: 50.5,-31.5 + parent: 2 - proto: GameMasterCircuitBoard entities: - uid: 29445 components: - type: Transform - pos: 61.47509,21.65281 + pos: 50.2482,21.60414 parent: 2 - proto: GasAnalyzer entities: @@ -102676,6 +104678,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 30943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' - proto: GasPassiveVent entities: - uid: 5579 @@ -102881,6 +104899,54 @@ entities: - type: Transform pos: 52.5,16.5 parent: 21002 + - uid: 30955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 31011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' - proto: GasPipeBend entities: - uid: 51 @@ -104903,36 +106969,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 18433 - components: - - type: Transform - pos: 60.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18434 - components: - - type: Transform - pos: 61.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18435 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18436 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 18461 components: - type: Transform @@ -105402,6 +107438,51 @@ entities: parent: 21002 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 30949 + components: + - type: Transform + pos: 58.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 31000 + components: + - type: Transform + pos: 60.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31002 + components: + - type: Transform + pos: 61.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 31005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 31033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeFourway entities: - uid: 666 @@ -124758,38 +126839,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 18393 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18394 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18395 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18396 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 18397 components: - type: Transform @@ -124854,140 +126903,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18413 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18414 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18415 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18416 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18417 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18418 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18419 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18420 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18421 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18422 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18423 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18424 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18425 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18426 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18427 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18428 - components: - - type: Transform - pos: 60.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18429 - components: - - type: Transform - pos: 60.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 19075 components: - type: Transform @@ -127635,6 +129550,378 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 30947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30952 + components: + - type: Transform + pos: 58.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30953 + components: + - type: Transform + pos: 52.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30954 + components: + - type: Transform + pos: 52.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30986 + components: + - type: Transform + pos: 61.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 30987 + components: + - type: Transform + pos: 60.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 30988 + components: + - type: Transform + pos: 60.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 30989 + components: + - type: Transform + pos: 61.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 30990 + components: + - type: Transform + pos: 61.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 30991 + components: + - type: Transform + pos: 60.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31001 + components: + - type: Transform + pos: 61.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 31004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 31008 + components: + - type: Transform + pos: 59.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 31009 + components: + - type: Transform + pos: 59.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 31012 + components: + - type: Transform + pos: 59.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 31013 + components: + - type: Transform + pos: 59.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 31014 + components: + - type: Transform + pos: 59.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 31015 + components: + - type: Transform + pos: 51.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31016 + components: + - type: Transform + pos: 51.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31017 + components: + - type: Transform + pos: 51.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31018 + components: + - type: Transform + pos: 51.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31020 + components: + - type: Transform + pos: 51.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31030 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - proto: GasPipeTJunction entities: - uid: 17 @@ -130520,21 +132807,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18431 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18432 - components: - - type: Transform - pos: 60.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 19545 components: - type: Transform @@ -130879,6 +133151,96 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 30945 + components: + - type: Transform + pos: 54.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30946 + components: + - type: Transform + pos: 56.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30948 + components: + - type: Transform + pos: 57.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30951 + components: + - type: Transform + pos: 53.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30968 + components: + - type: Transform + pos: 57.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30969 + components: + - type: Transform + pos: 53.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 31003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 31010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 31019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPort entities: - uid: 1675 @@ -131125,6 +133487,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 30939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' - proto: GasPressurePump entities: - uid: 43 @@ -133478,27 +135856,6 @@ entities: - 30366 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 18410 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,16.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18443 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18411 - components: - - type: Transform - pos: 53.5,18.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29864 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 18654 components: - type: Transform @@ -133815,6 +136172,38 @@ entities: - 21504 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 31007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31038 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 31022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31039 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 31036 + components: + - type: Transform + pos: 59.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31040 + - type: AtmosPipeColor + color: '#0335FCFF' - proto: GasVentScrubber entities: - uid: 53 @@ -135671,27 +138060,6 @@ entities: - 18440 - type: AtmosPipeColor color: '#990000FF' - - uid: 18409 - components: - - type: Transform - pos: 59.5,16.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18443 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18412 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,14.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29864 - - type: AtmosPipeColor - color: '#990000FF' - uid: 18655 components: - type: Transform @@ -136055,6 +138423,38 @@ entities: - 30403 - type: AtmosPipeColor color: '#990000FF' + - uid: 30964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31039 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31038 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31035 + components: + - type: Transform + pos: 51.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31040 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasVolumePump entities: - uid: 8939 @@ -136124,6 +138524,14 @@ entities: - ActivatableUI - UserInterface - Gateway +- proto: GeigerCounter + entities: + - uid: 31114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.485546,18.73488 + parent: 2 - proto: GlassBoxLaserFilled entities: - uid: 30286 @@ -136144,7 +138552,7 @@ entities: - uid: 9690 components: - type: Transform - pos: 24.054735,15.237508 + pos: 23.941551,15.148251 parent: 2 - proto: GravityGenerator entities: @@ -136162,6 +138570,12 @@ entities: parent: 21002 - proto: Grille entities: + - uid: 18 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,24.5 + parent: 2 - uid: 25 components: - type: Transform @@ -136718,30 +139132,6 @@ entities: - type: Transform pos: 21.5,3.5 parent: 2 - - uid: 2371 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,24.5 - parent: 2 - - uid: 2372 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,24.5 - parent: 2 - - uid: 2373 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,23.5 - parent: 2 - - uid: 2380 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,22.5 - parent: 2 - uid: 2422 components: - type: Transform @@ -136788,6 +139178,27 @@ entities: rot: 1.5707963267948966 rad pos: 34.5,12.5 parent: 2 + - uid: 2673 + components: + - type: Transform + pos: 63.5,22.5 + parent: 2 + - uid: 2695 + components: + - type: Transform + pos: 51.5,11.5 + parent: 2 + - uid: 3044 + components: + - type: Transform + pos: 46.5,13.5 + parent: 2 + - uid: 3047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,26.5 + parent: 2 - uid: 3162 components: - type: Transform @@ -136800,6 +139211,18 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,-79.5 parent: 2 + - uid: 3194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,25.5 + parent: 2 + - uid: 3197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,23.5 + parent: 2 - uid: 3225 components: - type: Transform @@ -136905,6 +139328,12 @@ entities: - type: Transform pos: 45.5,-22.5 parent: 2 + - uid: 3593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,17.5 + parent: 2 - uid: 3679 components: - type: Transform @@ -137220,6 +139649,12 @@ entities: rot: 3.141592653589793 rad pos: 31.5,-26.5 parent: 2 + - uid: 4823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,21.5 + parent: 2 - uid: 5249 components: - type: Transform @@ -137626,12 +140061,6 @@ entities: rot: 1.5707963267948966 rad pos: 36.5,51.5 parent: 2 - - uid: 7016 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,51.5 - parent: 2 - uid: 7017 components: - type: Transform @@ -138660,24 +141089,6 @@ entities: rot: 3.141592653589793 rad pos: -24.5,3.5 parent: 2 - - uid: 8955 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,24.5 - parent: 2 - - uid: 8956 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,23.5 - parent: 2 - - uid: 8957 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,22.5 - parent: 2 - uid: 9257 components: - type: Transform @@ -139181,6 +141592,16 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,-55.5 parent: 2 + - uid: 10959 + components: + - type: Transform + pos: 63.5,25.5 + parent: 2 + - uid: 10960 + components: + - type: Transform + pos: 63.5,24.5 + parent: 2 - uid: 11186 components: - type: Transform @@ -139436,244 +141857,195 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,-55.5 parent: 2 + - uid: 12567 + components: + - type: Transform + pos: 63.5,21.5 + parent: 2 - uid: 12691 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,11.5 + pos: 63.5,18.5 parent: 2 - uid: 12692 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,13.5 - parent: 2 - - uid: 12693 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,12.5 + pos: 55.5,11.5 parent: 2 - uid: 12694 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,15.5 + pos: 57.5,11.5 parent: 2 - uid: 12695 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,14.5 + pos: 50.5,11.5 parent: 2 - uid: 12696 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,16.5 + pos: 48.5,11.5 parent: 2 - uid: 12697 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,17.5 + pos: 47.5,11.5 parent: 2 - uid: 12698 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,18.5 - parent: 2 - - uid: 12699 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,19.5 - parent: 2 - - uid: 12700 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,20.5 - parent: 2 - - uid: 12701 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,21.5 - parent: 2 - - uid: 12702 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,24.5 + pos: 46.5,12.5 parent: 2 - uid: 12705 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,24.5 + rot: 1.5707963267948966 rad + pos: 47.5,22.5 parent: 2 - - uid: 12707 + - uid: 12706 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,24.5 + rot: 1.5707963267948966 rad + pos: 47.5,20.5 parent: 2 - uid: 12708 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,24.5 - parent: 2 - - uid: 12710 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,24.5 - parent: 2 - - uid: 12711 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,21.5 - parent: 2 - - uid: 12712 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,20.5 - parent: 2 - - uid: 12713 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,19.5 - parent: 2 - - uid: 12719 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,13.5 - parent: 2 - - uid: 12720 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,12.5 - parent: 2 - - uid: 12721 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,11.5 - parent: 2 - - uid: 12722 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,11.5 - parent: 2 - - uid: 12723 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,11.5 - parent: 2 - - uid: 12724 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,11.5 - parent: 2 - - uid: 12725 - components: - - type: Transform - rot: -1.5707963267948966 rad pos: 52.5,11.5 parent: 2 - - uid: 12726 + - uid: 12734 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,11.5 - parent: 2 - - uid: 12727 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,11.5 - parent: 2 - - uid: 12728 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,11.5 - parent: 2 - - uid: 12729 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,11.5 - parent: 2 - - uid: 12730 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,11.5 - parent: 2 - - uid: 12745 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,24.5 + pos: 63.5,26.5 parent: 2 - uid: 12746 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,24.5 - parent: 2 - - uid: 12747 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,24.5 + rot: 1.5707963267948966 rad + pos: 48.5,31.5 parent: 2 - uid: 12748 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,24.5 + rot: 1.5707963267948966 rad + pos: 49.5,31.5 parent: 2 - - uid: 12785 + - uid: 12749 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,24.5 + rot: 1.5707963267948966 rad + pos: 51.5,31.5 parent: 2 - - uid: 12816 + - uid: 12750 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,22.5 + rot: 1.5707963267948966 rad + pos: 50.5,31.5 parent: 2 - - uid: 12817 + - uid: 12751 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,23.5 + rot: 1.5707963267948966 rad + pos: 54.5,30.5 + parent: 2 + - uid: 12754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,29.5 + parent: 2 + - uid: 12756 + components: + - type: Transform + pos: 63.5,16.5 + parent: 2 + - uid: 12758 + components: + - type: Transform + pos: 49.5,11.5 + parent: 2 + - uid: 12759 + components: + - type: Transform + pos: 46.5,14.5 + parent: 2 + - uid: 12774 + components: + - type: Transform + pos: 63.5,17.5 + parent: 2 + - uid: 12775 + components: + - type: Transform + pos: 63.5,23.5 + parent: 2 + - uid: 12776 + components: + - type: Transform + pos: 63.5,20.5 + parent: 2 + - uid: 12777 + components: + - type: Transform + pos: 63.5,19.5 + parent: 2 + - uid: 12778 + components: + - type: Transform + pos: 53.5,11.5 + parent: 2 + - uid: 12783 + components: + - type: Transform + pos: 63.5,14.5 + parent: 2 + - uid: 12833 + components: + - type: Transform + pos: 46.5,11.5 + parent: 2 + - uid: 12855 + components: + - type: Transform + pos: 58.5,11.5 + parent: 2 + - uid: 12862 + components: + - type: Transform + pos: 46.5,18.5 + parent: 2 + - uid: 12863 + components: + - type: Transform + pos: 56.5,11.5 + parent: 2 + - uid: 12870 + components: + - type: Transform + pos: 63.5,13.5 + parent: 2 + - uid: 12871 + components: + - type: Transform + pos: 46.5,15.5 + parent: 2 + - uid: 12886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,17.5 parent: 2 - uid: 12887 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,16.5 + pos: 63.5,15.5 parent: 2 - - uid: 12936 + - uid: 12901 components: - type: Transform - pos: 57.5,16.5 + rot: 3.141592653589793 rad + pos: 59.5,17.5 parent: 2 - uid: 12989 components: @@ -139686,6 +142058,18 @@ entities: - type: Transform pos: 65.5,22.5 parent: 2 + - uid: 13062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,19.5 + parent: 2 + - uid: 13066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,22.5 + parent: 2 - uid: 13080 components: - type: Transform @@ -139840,6 +142224,11 @@ entities: rot: 1.5707963267948966 rad pos: 39.5,-17.5 parent: 2 + - uid: 14688 + components: + - type: Transform + pos: 48.5,27.5 + parent: 2 - uid: 15252 components: - type: Transform @@ -140373,6 +142762,17 @@ entities: rot: 3.141592653589793 rad pos: 34.5,-1.5 parent: 2 + - uid: 18412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,17.5 + parent: 2 + - uid: 18418 + components: + - type: Transform + pos: 56.5,19.5 + parent: 2 - uid: 18558 components: - type: Transform @@ -140862,6 +143262,11 @@ entities: rot: -1.5707963267948966 rad pos: 65.5,-18.5 parent: 2 + - uid: 20237 + components: + - type: Transform + pos: 46.5,17.5 + parent: 2 - uid: 20238 components: - type: Transform @@ -140898,12 +143303,6 @@ entities: rot: -1.5707963267948966 rad pos: 66.5,19.5 parent: 2 - - uid: 20247 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,28.5 - parent: 2 - uid: 20248 components: - type: Transform @@ -140916,34 +143315,28 @@ entities: rot: -1.5707963267948966 rad pos: 65.5,24.5 parent: 2 - - uid: 20250 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,28.5 - parent: 2 - - uid: 20251 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,27.5 - parent: 2 - uid: 20252 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,28.5 + rot: 3.141592653589793 rad + pos: 49.5,17.5 parent: 2 - - uid: 20259 + - uid: 20256 components: - type: Transform - pos: 65.5,12.5 + pos: 54.5,11.5 parent: 2 - uid: 20260 components: - type: Transform pos: 66.5,16.5 parent: 2 + - uid: 20265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,34.5 + parent: 2 - uid: 20266 components: - type: Transform @@ -140954,6 +143347,12 @@ entities: - type: Transform pos: 66.5,15.5 parent: 2 + - uid: 20275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,30.5 + parent: 2 - uid: 20347 components: - type: Transform @@ -141194,23 +143593,20 @@ entities: rot: 3.141592653589793 rad pos: 52.5,39.5 parent: 2 - - uid: 20387 + - uid: 20493 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,33.5 + pos: 37.5,51.5 parent: 2 - - uid: 20485 + - uid: 20494 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,28.5 + pos: 47.5,27.5 parent: 2 - - uid: 20561 + - uid: 20496 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,28.5 + pos: 49.5,27.5 parent: 2 - uid: 20562 components: @@ -141510,6 +143906,22 @@ entities: rot: -1.5707963267948966 rad pos: 51.5,-10.5 parent: 2 + - uid: 20910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,19.5 + parent: 2 + - uid: 20912 + components: + - type: Transform + pos: 51.5,27.5 + parent: 2 + - uid: 20913 + components: + - type: Transform + pos: 50.5,27.5 + parent: 2 - uid: 21071 components: - type: Transform @@ -141540,18 +143952,6 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,1.5 parent: 21002 - - uid: 21076 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,3.5 - parent: 21002 - - uid: 21077 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,3.5 - parent: 21002 - uid: 21080 components: - type: Transform @@ -142994,6 +145394,18 @@ entities: rot: 1.5707963267948966 rad pos: -58.5,-8.5 parent: 2 + - uid: 29135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,22.5 + parent: 2 + - uid: 29136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,22.5 + parent: 2 - uid: 29143 components: - type: Transform @@ -143018,66 +145430,59 @@ entities: rot: 1.5707963267948966 rad pos: 52.5,-21.5 parent: 2 + - uid: 29159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,17.5 + parent: 2 + - uid: 29160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,18.5 + parent: 2 - uid: 29193 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.5,-21.5 parent: 2 - - uid: 29337 + - uid: 29303 components: - type: Transform - pos: 63.5,21.5 + pos: 58.5,27.5 + parent: 2 + - uid: 29304 + components: + - type: Transform + pos: 55.5,27.5 + parent: 2 + - uid: 29305 + components: + - type: Transform + pos: 60.5,27.5 + parent: 2 + - uid: 29331 + components: + - type: Transform + pos: 57.5,27.5 + parent: 2 + - uid: 29332 + components: + - type: Transform + pos: 59.5,27.5 + parent: 2 + - uid: 29333 + components: + - type: Transform + pos: 62.5,27.5 parent: 2 - uid: 29338 components: - type: Transform - pos: 63.5,20.5 - parent: 2 - - uid: 29339 - components: - - type: Transform - pos: 63.5,18.5 - parent: 2 - - uid: 29340 - components: - - type: Transform - pos: 63.5,17.5 - parent: 2 - - uid: 29341 - components: - - type: Transform - pos: 63.5,16.5 - parent: 2 - - uid: 29342 - components: - - type: Transform - pos: 63.5,15.5 - parent: 2 - - uid: 29343 - components: - - type: Transform - pos: 63.5,14.5 - parent: 2 - - uid: 29344 - components: - - type: Transform - pos: 63.5,13.5 - parent: 2 - - uid: 29345 - components: - - type: Transform - pos: 63.5,19.5 - parent: 2 - - uid: 29346 - components: - - type: Transform - pos: 63.5,12.5 - parent: 2 - - uid: 29347 - components: - - type: Transform - pos: 63.5,11.5 + rot: 3.141592653589793 rad + pos: 52.5,18.5 parent: 2 - uid: 29355 components: @@ -143094,41 +145499,76 @@ entities: - type: Transform pos: 69.5,23.5 parent: 2 + - uid: 29364 + components: + - type: Transform + pos: 55.5,19.5 + parent: 2 + - uid: 29366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,22.5 + parent: 2 + - uid: 29367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,22.5 + parent: 2 + - uid: 29368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,22.5 + parent: 2 + - uid: 29370 + components: + - type: Transform + pos: 63.5,27.5 + parent: 2 + - uid: 29371 + components: + - type: Transform + pos: 61.5,27.5 + parent: 2 - uid: 29372 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,28.5 + pos: 53.5,27.5 parent: 2 - - uid: 29426 + - uid: 29373 + components: + - type: Transform + pos: 52.5,27.5 + parent: 2 + - uid: 29374 + components: + - type: Transform + pos: 54.5,27.5 + parent: 2 + - uid: 29431 components: - type: Transform rot: 3.141592653589793 rad - pos: 61.5,24.5 + pos: 52.5,19.5 parent: 2 - - uid: 29427 + - uid: 29435 components: - type: Transform rot: 3.141592653589793 rad - pos: 59.5,24.5 + pos: 51.5,17.5 parent: 2 - - uid: 29428 + - uid: 29436 components: - type: Transform rot: 3.141592653589793 rad - pos: 58.5,24.5 + pos: 50.5,17.5 parent: 2 - - uid: 29429 + - uid: 29441 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,24.5 - parent: 2 - - uid: 29430 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,24.5 + pos: 46.5,16.5 parent: 2 - uid: 29448 components: @@ -143160,6 +145600,12 @@ entities: rot: 1.5707963267948966 rad pos: -58.5,-11.5 parent: 2 + - uid: 29576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,18.5 + parent: 2 - uid: 29580 components: - type: Transform @@ -143183,6 +145629,11 @@ entities: rot: 1.5707963267948966 rad pos: 55.5,-19.5 parent: 2 + - uid: 29864 + components: + - type: Transform + pos: 56.5,27.5 + parent: 2 - uid: 30023 components: - type: Transform @@ -143201,6 +145652,11 @@ entities: rot: 1.5707963267948966 rad pos: 39.5,-1.5 parent: 2 + - uid: 30936 + components: + - type: Transform + pos: 54.5,19.5 + parent: 2 - proto: GrilleBroken entities: - uid: 22881 @@ -143443,6 +145899,16 @@ entities: rot: -1.5707963267948966 rad pos: 63.5,-7.5 parent: 2 + - uid: 12824 + components: + - type: Transform + pos: 57.5,31.5 + parent: 2 + - uid: 13773 + components: + - type: Transform + pos: 65.5,12.5 + parent: 2 - uid: 19885 components: - type: Transform @@ -144264,11 +146730,6 @@ entities: - type: Transform pos: 65.5,14.5 parent: 2 - - uid: 29308 - components: - - type: Transform - pos: 65.5,11.5 - parent: 2 - proto: GunSafeDisabler entities: - uid: 4271 @@ -144449,11 +146910,6 @@ entities: - type: Transform pos: 32.5,34.5 parent: 2 - - uid: 3047 - components: - - type: Transform - pos: 60.5,20.5 - parent: 2 - uid: 11477 components: - type: Transform @@ -144464,16 +146920,6 @@ entities: - type: Transform pos: -43.5,-21.5 parent: 2 - - uid: 12931 - components: - - type: Transform - pos: 57.5,17.5 - parent: 2 - - uid: 12932 - components: - - type: Transform - pos: 57.5,15.5 - parent: 2 - uid: 23600 components: - type: Transform @@ -144641,10 +147087,10 @@ entities: baseName: holopad - proto: HolopadAiBackupPower entities: - - uid: 12567 + - uid: 31081 components: - type: Transform - pos: 51.5,20.5 + pos: 49.5,16.5 parent: 2 - proto: HolopadAiChute entities: @@ -144653,36 +147099,33 @@ entities: - type: Transform pos: 61.5,8.5 parent: 2 - - uid: 29002 - components: - - type: Transform - pos: 61.5,8.5 - parent: 2 - proto: HolopadAiCore entities: - - uid: 12886 + - uid: 30937 components: - type: Transform - pos: 49.5,16.5 - parent: 2 - - uid: 23528 - components: - - type: Transform - pos: 49.5,16.5 + pos: 55.5,24.5 parent: 2 - proto: HolopadAiEntrance entities: - - uid: 10840 + - uid: 13130 components: - type: Transform - pos: 54.5,16.5 + pos: 59.5,5.5 + parent: 2 +- proto: HolopadAiMain + entities: + - uid: 18414 + components: + - type: Transform + pos: 55.5,20.5 parent: 2 - proto: HolopadAiUpload entities: - - uid: 28975 + - uid: 30361 components: - type: Transform - pos: 60.5,18.5 + pos: 55.5,17.5 parent: 2 - proto: HolopadCargoBay entities: @@ -145104,10 +147547,10 @@ entities: parent: 2 - proto: HolopadSecurityFront entities: - - uid: 29889 + - uid: 15485 components: - type: Transform - pos: 32.5,-3.5 + pos: 32.5,-4.5 parent: 2 - proto: HolopadSecurityLawyer entities: @@ -145214,6 +147657,13 @@ entities: - type: Transform pos: -21.5,-3.5 parent: 2 +- proto: HoloprojectorClownBorg + entities: + - uid: 31128 + components: + - type: Transform + pos: 49.639477,25.406134 + parent: 2 - proto: HoloprojectorSecurity entities: - uid: 23392 @@ -145254,7 +147704,7 @@ entities: pos: 36.5,-35.5 parent: 2 - type: Door - secondsUntilStateChange: -314916.53 + secondsUntilStateChange: -340174.66 state: Opening - uid: 5211 components: @@ -145719,23 +148169,30 @@ entities: parent: 2 - proto: IntercomAll entities: - - uid: 12798 - components: - - type: Transform - pos: 51.5,17.5 - parent: 2 - - uid: 12799 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,16.5 - parent: 2 - - uid: 12800 + - uid: 12879 components: - type: Transform rot: 3.141592653589793 rad - pos: 51.5,15.5 + pos: 56.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} + - uid: 18423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,21.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 24009 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,21.5 + parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomCommand entities: - uid: 359 @@ -145744,28 +148201,38 @@ entities: rot: 1.5707963267948966 rad pos: 20.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9681 components: - type: Transform pos: 45.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13065 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23809 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29290 components: - type: Transform pos: 25.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomCommon entities: - uid: 5806 @@ -145774,11 +148241,15 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23523 components: - type: Transform pos: 19.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomEngineering entities: - uid: 6192 @@ -145787,11 +148258,15 @@ entities: rot: 3.141592653589793 rad pos: 2.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8948 components: - type: Transform pos: -34.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomMedical entities: - uid: 23520 @@ -145800,12 +148275,16 @@ entities: rot: 3.141592653589793 rad pos: -5.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23626 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomScience entities: - uid: 23519 @@ -145813,6 +148292,16 @@ entities: - type: Transform pos: 3.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} + - uid: 31125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,12.5 + parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomSecurity entities: - uid: 17321 @@ -145821,6 +148310,8 @@ entities: rot: 1.5707963267948966 rad pos: 30.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomService entities: - uid: 23522 @@ -145829,6 +148320,8 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomSupply entities: - uid: 23808 @@ -145837,12 +148330,23 @@ entities: rot: -1.5707963267948966 rad pos: -44.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24129 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} +- proto: InterdyneFlippo + entities: + - uid: 31117 + components: + - type: Transform + pos: 57.22787,23.416605 + parent: 2 - proto: JanitorialTrolley entities: - uid: 11979 @@ -146118,8 +148622,24 @@ entities: - uid: 2671 components: - type: Transform - pos: 29.74325,21 + pos: 29.392466,20.981281 parent: 2 + - type: HandheldLight + toggleActionEntity: 18422 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 18422 + - type: Physics + canCollide: True + - type: ActionsContainer - uid: 5854 components: - type: Transform @@ -146291,7 +148811,7 @@ entities: - uid: 29444 components: - type: Transform - pos: 61.450054,22.656609 + pos: 61.47715,20.547256 parent: 2 - proto: LockableButtonAtmospherics entities: @@ -146314,6 +148834,8 @@ entities: 8460: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonBrig entities: - uid: 4683 @@ -146329,6 +148851,8 @@ entities: 4811: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 28257 components: - type: MetaData @@ -146341,6 +148865,8 @@ entities: 4811: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonSecurity entities: - uid: 22953 @@ -146351,6 +148877,8 @@ entities: rot: 3.141592653589793 rad pos: 50.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: LockableButtonService entities: - uid: 4166 @@ -146366,6 +148894,8 @@ entities: 683: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 23551 components: - type: MetaData @@ -146379,6 +148909,8 @@ entities: 570: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 23556 components: - type: MetaData @@ -146392,6 +148924,8 @@ entities: 684: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 23557 components: - type: MetaData @@ -146404,6 +148938,8 @@ entities: 682: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 23558 components: - type: MetaData @@ -146416,6 +148952,8 @@ entities: 681: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 23559 components: - type: MetaData @@ -146428,6 +148966,8 @@ entities: 680: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - proto: LockerAtmosphericsFilled entities: - uid: 8897 @@ -146586,10 +149126,10 @@ entities: - type: Transform pos: 34.5,35.5 parent: 2 - - uid: 9474 + - uid: 18429 components: - type: Transform - pos: 36.5,48.5 + pos: 37.5,48.5 parent: 2 - uid: 23691 components: @@ -148212,16 +150752,16 @@ entities: - type: Transform pos: -38.5,-51.5 parent: 2 - - uid: 5749 - components: - - type: Transform - pos: 44.5,25.5 - parent: 2 - uid: 9310 components: - type: Transform pos: 58.5,7.5 parent: 2 + - uid: 20914 + components: + - type: Transform + pos: 45.5,25.5 + parent: 2 - uid: 21027 components: - type: Transform @@ -148264,6 +150804,11 @@ entities: parent: 2 - proto: MaintenanceToolSpawner entities: + - uid: 12876 + components: + - type: Transform + pos: 54.5,8.5 + parent: 2 - uid: 23172 components: - type: Transform @@ -148709,52 +151254,70 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2657 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4061 components: - type: Transform pos: 48.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11400 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11401 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11402 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11403 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14231 components: - type: Transform pos: 54.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29888 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: MonkeyCubeWrapped entities: - uid: 3150 @@ -148969,6 +151532,11 @@ entities: parent: 8002 - type: Physics canCollide: False + - uid: 31116 + components: + - type: Transform + pos: 61.546024,19.876612 + parent: 2 - proto: MysteryFigureBoxTrash entities: - uid: 30140 @@ -149006,6 +151574,12 @@ entities: - type: Transform pos: 11.55334,-34.190166 parent: 2 + - uid: 31127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.545727,20.994167 + parent: 2 - proto: NewsReaderCartridge entities: - uid: 19529 @@ -149064,11 +151638,6 @@ entities: - type: Transform pos: -45.5,-53.5 parent: 2 - - uid: 18929 - components: - - type: Transform - pos: 44.5,17.5 - parent: 2 - uid: 18932 components: - type: Transform @@ -149109,6 +151678,11 @@ entities: - type: Transform pos: 7.5,-6.5 parent: 21002 + - uid: 29163 + components: + - type: Transform + pos: 45.5,21.5 + parent: 2 - uid: 29490 components: - type: Transform @@ -149126,6 +151700,22 @@ entities: - type: Transform pos: -42.5,23.5 parent: 2 + - uid: 30941 + components: + - type: Transform + anchored: True + pos: 56.5,22.5 + parent: 2 + - type: Physics + bodyType: Static + - uid: 30942 + components: + - type: Transform + anchored: True + pos: 54.5,22.5 + parent: 2 + - type: Physics + bodyType: Static - proto: NitrousOxideTankFilled entities: - uid: 2056 @@ -149161,6 +151751,8 @@ entities: rot: 3.141592653589793 rad pos: -45.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23853 components: - type: Transform @@ -149186,18 +151778,22 @@ entities: - 23854 - 23855 - 23856 + - type: Fixtures + fixtures: {} - uid: 29984 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: NTDefaultCircuitBoard entities: - uid: 29358 components: - type: Transform - pos: 58.444633,13.5958 + pos: 58.391357,13.564787 parent: 2 - proto: NuclearBomb entities: @@ -149219,7 +151815,7 @@ entities: - uid: 29443 components: - type: Transform - pos: 58.485508,21.59031 + pos: 20.46843,-35.541214 parent: 2 - proto: OperatingTable entities: @@ -149266,6 +151862,11 @@ entities: - type: Transform pos: -23.5,-14.5 parent: 2 + - uid: 2364 + components: + - type: Transform + pos: 39.5,50.5 + parent: 2 - uid: 4221 components: - type: Transform @@ -149296,21 +151897,11 @@ entities: - type: Transform pos: -57.5,-21.5 parent: 2 - - uid: 9468 - components: - - type: Transform - pos: 38.5,50.5 - parent: 2 - uid: 9780 components: - type: Transform pos: 8.5,-35.5 parent: 2 - - uid: 18928 - components: - - type: Transform - pos: 44.5,16.5 - parent: 2 - uid: 18931 components: - type: Transform @@ -149341,6 +151932,11 @@ entities: - type: Transform pos: -46.5,-51.5 parent: 2 + - uid: 20243 + components: + - type: Transform + pos: 45.5,20.5 + parent: 2 - uid: 23424 components: - type: Transform @@ -149354,6 +151950,8 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingMonkey entities: - uid: 11651 @@ -149362,6 +151960,8 @@ entities: rot: 3.141592653589793 rad pos: -21.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingMoony entities: - uid: 23614 @@ -149369,6 +151969,8 @@ entities: - type: Transform pos: -35.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingOldGuitarist entities: - uid: 2013 @@ -149377,11 +151979,15 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,-44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29727 components: - type: Transform pos: -17.5,16.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingPersistenceOfMemory entities: - uid: 24192 @@ -149390,6 +151996,8 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingRedBlueYellow entities: - uid: 23624 @@ -149397,6 +152005,8 @@ entities: - type: Transform pos: -43.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingSadClown entities: - uid: 23622 @@ -149404,6 +152014,8 @@ entities: - type: Transform pos: -33.5,-44.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingSaturn entities: - uid: 23623 @@ -149411,6 +152023,8 @@ entities: - type: Transform pos: -36.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingSkeletonCigarette entities: - uid: 23179 @@ -149419,6 +152033,8 @@ entities: rot: 3.141592653589793 rad pos: 22.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingTheKiss entities: - uid: 23180 @@ -149427,6 +152043,8 @@ entities: rot: 3.141592653589793 rad pos: 16.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingTheSonOfMan entities: - uid: 23625 @@ -149434,13 +152052,14 @@ entities: - type: Transform pos: -37.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaladinCircuitBoard entities: - uid: 29449 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.360508,22.579893 + pos: 49.47715,20.75559 parent: 2 - proto: Paper entities: @@ -149820,7 +152439,7 @@ entities: - uid: 10176 components: - type: Transform - parent: 2695 + parent: 3594 - type: Physics canCollide: False - uid: 10837 @@ -150474,8 +153093,9 @@ entities: - uid: 29266 components: - type: Transform - pos: 29.769129,21.041245 - parent: 2 + parent: 4569 + - type: Physics + canCollide: False - type: Paper content: >+ [bold]=====================================================[/bold] @@ -150828,32 +153448,44 @@ entities: - uid: 2743 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.116163,20.673426 - parent: 2 + parent: 4097 + - type: Physics + canCollide: False - uid: 2744 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.209913,20.62655 - parent: 2 + parent: 4097 + - type: Physics + canCollide: False - uid: 2745 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.303663,20.5328 - parent: 2 + parent: 4097 + - type: Physics + canCollide: False - uid: 2746 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.303663,20.5328 - parent: 2 + parent: 4097 + - type: Physics + canCollide: False - uid: 2747 + components: + - type: Transform + parent: 4097 + - type: Physics + canCollide: False + - uid: 18433 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.225538,20.610926 + pos: 31.556246,20.624237 + parent: 2 + - uid: 31088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.629164,20.655487 parent: 2 - proto: PaperCNCSheet entities: @@ -151005,6 +153637,11 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 31120 + components: + - type: Transform + pos: 50.50912,14.420492 + parent: 2 - proto: Pen entities: - uid: 1052 @@ -151207,6 +153844,11 @@ entities: rot: 1.5707963267948966 rad pos: -47.527077,-35.26962 parent: 2 + - uid: 31071 + components: + - type: Transform + pos: 60.6833,16.735445 + parent: 2 - proto: PenCap entities: - uid: 2672 @@ -151271,7 +153913,7 @@ entities: - uid: 2675 components: - type: Transform - pos: 24.007292,15.691906 + pos: 23.993635,15.627417 parent: 2 - proto: PianoInstrument entities: @@ -151432,58 +154074,6 @@ entities: rot: 1.5707963267948966 rad pos: 37.5,-11.5 parent: 2 - - uid: 12832 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,18.5 - parent: 2 - - uid: 12833 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,18.5 - parent: 2 - - uid: 12834 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,19.5 - parent: 2 - - uid: 12835 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,20.5 - parent: 2 - - uid: 12836 - components: - - type: Transform - pos: 52.5,21.5 - parent: 2 - - uid: 12837 - components: - - type: Transform - pos: 50.5,21.5 - parent: 2 - - uid: 12838 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,20.5 - parent: 2 - - uid: 12839 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,19.5 - parent: 2 - - uid: 12840 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,18.5 - parent: 2 - uid: 14238 components: - type: Transform @@ -151663,10 +154253,10 @@ entities: parent: 2 - proto: PlayerStationAi entities: - - uid: 23510 + - uid: 12890 components: - type: Transform - pos: 51.5,16.5 + pos: 55.5,22.5 parent: 2 - proto: PlushieCarp entities: @@ -151769,6 +154359,11 @@ entities: - type: Transform pos: 60.5,-16.5 parent: 2 + - uid: 12877 + components: + - type: Transform + pos: 36.5,48.5 + parent: 2 - uid: 18067 components: - type: Transform @@ -151809,14 +154404,11 @@ entities: - type: Transform pos: 12.5,40.5 parent: 2 - - uid: 10728 + - uid: 12857 components: - type: Transform - anchored: True - pos: 50.5,20.5 + pos: 48.5,14.5 parent: 2 - - type: Physics - bodyType: Static - uid: 16211 components: - type: Transform @@ -151824,19 +154416,16 @@ entities: parent: 2 - proto: PortableGeneratorSuperPacman entities: - - uid: 10730 - components: - - type: Transform - anchored: True - pos: 52.5,20.5 - parent: 2 - - type: Physics - bodyType: Static - uid: 16213 components: - type: Transform pos: 12.5,41.5 parent: 2 + - uid: 23517 + components: + - type: Transform + pos: 48.5,13.5 + parent: 2 - proto: PortableScrubber entities: - uid: 8450 @@ -151893,6 +154482,8 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,38.5 parent: 21002 + - type: Fixtures + fixtures: {} - proto: PosterContrabandBeachStarYamamoto entities: - uid: 11972 @@ -151900,6 +154491,8 @@ entities: - type: Transform pos: 25.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandClown entities: - uid: 8814 @@ -151907,6 +154500,8 @@ entities: - type: Transform pos: -32.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandDonutCorp entities: - uid: 30713 @@ -151915,6 +154510,8 @@ entities: rot: 3.141592653589793 rad pos: -4.5,18.5 parent: 21002 + - type: Fixtures + fixtures: {} - proto: PosterContrabandEnlistGorlex entities: - uid: 30686 @@ -151923,6 +154520,8 @@ entities: rot: -1.5707963267948966 rad pos: 42.5,39.5 parent: 21002 + - type: Fixtures + fixtures: {} - proto: PosterContrabandFreeDrone entities: - uid: 29365 @@ -151931,6 +154530,8 @@ entities: rot: -1.5707963267948966 rad pos: 58.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandFunPolice entities: - uid: 16210 @@ -151939,11 +154540,15 @@ entities: rot: 3.141592653589793 rad pos: 7.5,25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19552 components: - type: Transform pos: 26.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandHackingGuide entities: - uid: 11884 @@ -151952,6 +154557,8 @@ entities: rot: -1.5707963267948966 rad pos: -51.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandMissingGloves entities: - uid: 23491 @@ -151960,6 +154567,8 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,39.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandMissingSpacepen entities: - uid: 30714 @@ -151968,6 +154577,8 @@ entities: rot: 3.141592653589793 rad pos: 17.5,-42.5 parent: 21002 + - type: Fixtures + fixtures: {} - proto: PosterContrabandTools entities: - uid: 28330 @@ -151975,17 +154586,23 @@ entities: - type: Transform pos: 22.5,35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28332 components: - type: Transform pos: -32.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28881 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,39.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitAnatomyPoster entities: - uid: 2117 @@ -151993,6 +154610,8 @@ entities: - type: Transform pos: -22.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitCarpMount entities: - uid: 28493 @@ -152000,6 +154619,8 @@ entities: - type: Transform pos: -56.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitDickGumshue entities: - uid: 19636 @@ -152007,6 +154628,8 @@ entities: - type: Transform pos: 42.5,19.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitDoNotQuestion entities: - uid: 3522 @@ -152014,6 +154637,8 @@ entities: - type: Transform pos: 28.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitEnlist entities: - uid: 3731 @@ -152022,6 +154647,8 @@ entities: rot: 1.5707963267948966 rad pos: 37.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitFoamForceAd entities: - uid: 11964 @@ -152030,6 +154657,8 @@ entities: rot: 1.5707963267948966 rad pos: -49.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitHelpOthers entities: - uid: 30621 @@ -152038,6 +154667,8 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitIan entities: - uid: 28865 @@ -152046,6 +154677,8 @@ entities: rot: -1.5707963267948966 rad pos: 56.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitJustAWeekAway entities: - uid: 28438 @@ -152054,12 +154687,16 @@ entities: rot: 3.141592653589793 rad pos: -22.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29722 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitMime entities: - uid: 23628 @@ -152067,6 +154704,8 @@ entities: - type: Transform pos: -37.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitNanomichiAd entities: - uid: 30215 @@ -152074,6 +154713,8 @@ entities: - type: Transform pos: -7.5,39.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitNoERP entities: - uid: 23428 @@ -152081,6 +154722,8 @@ entities: - type: Transform pos: -31.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitNTTGC entities: - uid: 30216 @@ -152088,6 +154731,8 @@ entities: - type: Transform pos: -10.5,39.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitPDAAd entities: - uid: 28483 @@ -152096,17 +154741,23 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-81.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28484 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-81.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28491 components: - type: Transform pos: -5.5,54.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitRenault entities: - uid: 28751 @@ -152114,6 +154765,8 @@ entities: - type: Transform pos: 42.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitReportCrimes entities: - uid: 14331 @@ -152122,11 +154775,15 @@ entities: rot: 1.5707963267948966 rad pos: 33.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28492 components: - type: Transform pos: -5.5,53.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyInternals entities: - uid: 30126 @@ -152134,6 +154791,8 @@ entities: - type: Transform pos: 2.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothEpi entities: - uid: 1051 @@ -152142,6 +154801,8 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothMeth entities: - uid: 8712 @@ -152150,6 +154811,8 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyReport entities: - uid: 20461 @@ -152158,6 +154821,8 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSecWatch entities: - uid: 30715 @@ -152166,6 +154831,8 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-46.5 parent: 21002 + - type: Fixtures + fixtures: {} - proto: PosterLegitStateLaws entities: - uid: 30622 @@ -152174,6 +154841,8 @@ entities: rot: -1.5707963267948966 rad pos: 33.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitThereIsNoGasGiant entities: - uid: 9176 @@ -152182,6 +154851,15 @@ entities: rot: 3.141592653589793 rad pos: -29.5,24.5 parent: 2 + - type: Fixtures + fixtures: {} + - uid: 31077 + components: + - type: Transform + pos: 55.5,26.5 + parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitTyrone entities: - uid: 30218 @@ -152189,6 +154867,8 @@ entities: - type: Transform pos: -7.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitVacation entities: - uid: 3247 @@ -152196,16 +154876,22 @@ entities: - type: Transform pos: 6.5,-81.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28489 components: - type: Transform pos: -11.5,-81.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28490 components: - type: Transform pos: -5.5,52.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitWalk entities: - uid: 30623 @@ -152214,6 +154900,8 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitWorkForAFuture entities: - uid: 30626 @@ -152222,6 +154910,8 @@ entities: rot: -1.5707963267948966 rad pos: 39.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PottedPlant1 entities: - uid: 28294 @@ -152353,21 +155043,11 @@ entities: - type: Transform pos: -19.5,-40.5 parent: 2 - - uid: 12957 - components: - - type: Transform - pos: 61.5,17.5 - parent: 2 - uid: 13009 components: - type: Transform pos: 19.5,8.5 parent: 2 - - uid: 13013 - components: - - type: Transform - pos: 58.5,11.5 - parent: 2 - uid: 14157 components: - type: Transform @@ -152533,6 +155213,11 @@ entities: - type: Transform pos: 38.5,4.5 parent: 2 + - uid: 30983 + components: + - type: Transform + pos: 61.5,16.5 + parent: 2 - proto: PottedPlantRD entities: - uid: 9902 @@ -152550,6 +155235,18 @@ entities: parent: 2 - type: PointLight enabled: False +- proto: PowerCellMedium + entities: + - uid: 21061 + components: + - type: Transform + pos: 61.412632,21.54738 + parent: 2 + - uid: 31111 + components: + - type: Transform + pos: 61.568882,21.370296 + parent: 2 - proto: PowerCellPotato entities: - uid: 13597 @@ -152676,12 +155373,6 @@ entities: - type: Transform pos: -52.5,-19.5 parent: 2 - - uid: 13060 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,19.5 - parent: 2 - uid: 22981 components: - type: Transform @@ -152697,6 +155388,16 @@ entities: - type: Transform pos: 31.5,31.5 parent: 2 + - uid: 31072 + components: + - type: Transform + pos: 52.5,16.5 + parent: 2 + - uid: 31113 + components: + - type: Transform + pos: 61.5,18.5 + parent: 2 - proto: PowerCellSmall entities: - uid: 23814 @@ -152718,6 +155419,12 @@ entities: rot: -1.5707963267948966 rad pos: -23.5,16.5 parent: 2 + - uid: 3589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,7.5 + parent: 2 - uid: 7182 components: - type: Transform @@ -152734,6 +155441,12 @@ entities: - type: Transform pos: -16.5,-46.5 parent: 2 + - uid: 12829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,30.5 + parent: 2 - uid: 13524 components: - type: Transform @@ -152901,24 +155614,12 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,-11.5 parent: 2 - - uid: 17437 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,31.5 - parent: 2 - uid: 17438 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,40.5 parent: 2 - - uid: 17440 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,25.5 - parent: 2 - uid: 17441 components: - type: Transform @@ -153075,16 +155776,16 @@ entities: - type: Transform pos: -6.5,26.5 parent: 2 - - uid: 18644 + - uid: 20272 components: - type: Transform - pos: 63.5,9.5 + rot: -1.5707963267948966 rad + pos: 44.5,32.5 parent: 2 - - uid: 20213 + - uid: 20501 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,27.5 + pos: 63.5,11.5 parent: 2 - uid: 20656 components: @@ -153126,6 +155827,12 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,-47.5 parent: 2 + - uid: 29162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,20.5 + parent: 2 - uid: 29957 components: - type: Transform @@ -153198,8 +155905,7 @@ entities: - uid: 29970 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,20.5 + pos: 42.5,25.5 parent: 2 - uid: 29971 components: @@ -153336,6 +156042,27 @@ entities: rot: 1.5707963267948966 rad pos: 19.5,18.5 parent: 2 + - uid: 31052 + components: + - type: Transform + pos: 55.5,25.5 + parent: 2 + - uid: 31053 + components: + - type: Transform + pos: 60.5,25.5 + parent: 2 + - uid: 31054 + components: + - type: Transform + pos: 50.5,25.5 + parent: 2 + - uid: 31055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,13.5 + parent: 2 - proto: Poweredlight entities: - uid: 68 @@ -154858,6 +157585,11 @@ entities: rot: 1.5707963267948966 rad pos: -30.5,36.5 parent: 2 + - uid: 12954 + components: + - type: Transform + pos: 56.5,20.5 + parent: 2 - uid: 13411 components: - type: Transform @@ -155024,29 +157756,6 @@ entities: rot: 3.141592653589793 rad pos: 14.5,31.5 parent: 2 - - uid: 17455 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,16.5 - parent: 2 - - uid: 17456 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,13.5 - parent: 2 - - uid: 17457 - components: - - type: Transform - pos: 51.5,22.5 - parent: 2 - - uid: 17458 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,16.5 - parent: 2 - uid: 17461 components: - type: Transform @@ -155388,12 +158097,6 @@ entities: rot: 1.5707963267948966 rad pos: -42.5,-27.5 parent: 2 - - uid: 23516 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,18.5 - parent: 2 - uid: 23765 components: - type: Transform @@ -155456,24 +158159,12 @@ entities: rot: 3.141592653589793 rad pos: -26.5,-0.5 parent: 2 - - uid: 29360 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,12.5 - parent: 2 - uid: 29447 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,-10.5 parent: 2 - - uid: 29452 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,22.5 - parent: 2 - uid: 29482 components: - type: Transform @@ -155502,6 +158193,35 @@ entities: rot: 3.141592653589793 rad pos: 36.5,-11.5 parent: 2 + - uid: 31048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,13.5 + parent: 2 + - uid: 31049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,13.5 + parent: 2 + - uid: 31050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,20.5 + parent: 2 + - uid: 31051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,20.5 + parent: 2 + - uid: 31056 + components: + - type: Transform + pos: 54.5,20.5 + parent: 2 - proto: PoweredlightEmpty entities: - uid: 12295 @@ -155625,11 +158345,11 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,-53.5 parent: 2 - - uid: 20254 + - uid: 20274 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,30.5 + rot: -1.5707963267948966 rad + pos: 56.5,32.5 parent: 2 - uid: 20783 components: @@ -155860,6 +158580,12 @@ entities: rot: 3.141592653589793 rad pos: -53.5,-40.5 parent: 2 + - uid: 12825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,29.5 + parent: 2 - uid: 13036 components: - type: Transform @@ -155961,12 +158687,6 @@ entities: - type: Transform pos: -48.5,-52.5 parent: 2 - - uid: 20487 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,26.5 - parent: 2 - uid: 20647 components: - type: Transform @@ -156574,6 +159294,12 @@ entities: rot: -1.5707963267948966 rad pos: 41.5,-7.5 parent: 2 + - uid: 884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,13.5 + parent: 2 - uid: 1397 components: - type: Transform @@ -156712,6 +159438,18 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-44.5 parent: 2 + - uid: 3953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,23.5 + parent: 2 + - uid: 3955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,20.5 + parent: 2 - uid: 4510 components: - type: Transform @@ -156724,12 +159462,6 @@ entities: rot: -1.5707963267948966 rad pos: 41.5,-8.5 parent: 2 - - uid: 5220 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,30.5 - parent: 2 - uid: 6171 components: - type: Transform @@ -157399,6 +160131,47 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-44.5 parent: 2 + - uid: 12738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,33.5 + parent: 2 + - uid: 12740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,33.5 + parent: 2 + - uid: 12837 + components: + - type: Transform + pos: 55.5,17.5 + parent: 2 + - uid: 12854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,15.5 + parent: 2 + - uid: 12858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,15.5 + parent: 2 + - uid: 12868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,16.5 + parent: 2 + - uid: 12869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,16.5 + parent: 2 - uid: 13010 components: - type: Transform @@ -157416,6 +160189,12 @@ entities: rot: -1.5707963267948966 rad pos: 41.5,-3.5 parent: 2 + - uid: 14683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,33.5 + parent: 2 - uid: 15041 components: - type: Transform @@ -157498,23 +160277,17 @@ entities: - type: Transform pos: -49.5,-56.5 parent: 2 - - uid: 20274 + - uid: 20264 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,26.5 + rot: 3.141592653589793 rad + pos: 50.5,33.5 parent: 2 - - uid: 20275 + - uid: 20486 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,27.5 - parent: 2 - - uid: 20488 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,32.5 + pos: 56.5,31.5 parent: 2 - uid: 22456 components: @@ -157762,6 +160535,12 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,15.5 parent: 2 + - uid: 29156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,20.5 + parent: 2 - uid: 29546 components: - type: Transform @@ -157784,6 +160563,90 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,36.5 parent: 2 + - uid: 30837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,25.5 + parent: 2 + - uid: 30997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,25.5 + parent: 2 + - uid: 30998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,25.5 + parent: 2 + - uid: 31096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,24.5 + parent: 2 + - uid: 31097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,25.5 + parent: 2 + - uid: 31098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,25.5 + parent: 2 + - uid: 31099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,25.5 + parent: 2 + - uid: 31100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,25.5 + parent: 2 + - uid: 31101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,25.5 + parent: 2 + - uid: 31102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,25.5 + parent: 2 + - uid: 31103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,25.5 + parent: 2 + - uid: 31104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,24.5 + parent: 2 + - uid: 31105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,25.5 + parent: 2 + - uid: 31106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,23.5 + parent: 2 - proto: RailingCorner entities: - uid: 64 @@ -158007,18 +160870,6 @@ entities: rot: 3.141592653589793 rad pos: -53.5,-56.5 parent: 2 - - uid: 20498 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,31.5 - parent: 2 - - uid: 20499 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,33.5 - parent: 2 - uid: 22457 components: - type: Transform @@ -158046,17 +160897,11 @@ entities: - type: Transform pos: 23.5,-19.5 parent: 2 - - uid: 29374 + - uid: 29293 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,30.5 - parent: 2 - - uid: 29375 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,30.5 + pos: 56.5,32.5 parent: 2 - uid: 29489 components: @@ -158087,6 +160932,18 @@ entities: rot: 1.5707963267948966 rad pos: 34.5,-23.5 parent: 2 + - uid: 31107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,25.5 + parent: 2 + - uid: 31108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,25.5 + parent: 2 - proto: RailingCornerSmall entities: - uid: 380 @@ -158130,6 +160987,12 @@ entities: rot: 3.141592653589793 rad pos: 17.5,10.5 parent: 2 + - uid: 2371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,23.5 + parent: 2 - uid: 2419 components: - type: Transform @@ -158142,6 +161005,12 @@ entities: rot: 3.141592653589793 rad pos: 27.5,8.5 parent: 2 + - uid: 3207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,14.5 + parent: 2 - uid: 3337 components: - type: Transform @@ -158432,6 +161301,22 @@ entities: rot: 1.5707963267948966 rad pos: -54.5,9.5 parent: 2 + - uid: 12742 + components: + - type: Transform + pos: 53.5,33.5 + parent: 2 + - uid: 12853 + components: + - type: Transform + pos: 56.5,14.5 + parent: 2 + - uid: 12859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,14.5 + parent: 2 - uid: 14320 components: - type: Transform @@ -158505,22 +161390,11 @@ entities: - type: Transform pos: -52.5,-56.5 parent: 2 - - uid: 20257 - components: - - type: Transform - pos: 53.5,30.5 - parent: 2 - - uid: 20276 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,28.5 - parent: 2 - - uid: 20389 + - uid: 20254 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,31.5 + pos: 56.5,30.5 parent: 2 - uid: 20390 components: @@ -158625,29 +161499,17 @@ entities: - type: Transform pos: -10.5,12.5 parent: 2 - - uid: 29376 + - uid: 29457 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,30.5 + rot: 3.141592653589793 rad + pos: 54.5,17.5 parent: 2 - - uid: 29377 + - uid: 29467 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,29.5 - parent: 2 - - uid: 29378 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,29.5 - parent: 2 - - uid: 29388 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,30.5 + rot: 1.5707963267948966 rad + pos: 56.5,17.5 parent: 2 - uid: 29486 components: @@ -158682,6 +161544,12 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,16.5 parent: 2 + - uid: 29866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,32.5 + parent: 2 - uid: 29997 components: - type: Transform @@ -159694,6 +162562,16 @@ entities: rot: 3.141592653589793 rad pos: -12.5,-51.5 parent: 2 + - uid: 31078 + components: + - type: Transform + pos: 62.5,16.5 + parent: 2 + - uid: 31079 + components: + - type: Transform + pos: 52.5,12.5 + parent: 2 - proto: RandomPosterContraband entities: - uid: 20650 @@ -159706,11 +162584,6 @@ entities: - type: Transform pos: 46.5,10.5 parent: 2 - - uid: 20720 - components: - - type: Transform - pos: 53.5,9.5 - parent: 2 - uid: 20722 components: - type: Transform @@ -159776,6 +162649,12 @@ entities: - type: Transform pos: -36.5,-18.5 parent: 2 + - uid: 29300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,8.5 + parent: 2 - uid: 30217 components: - type: Transform @@ -159926,20 +162805,10 @@ entities: - type: Transform pos: 11.5,24.5 parent: 2 - - uid: 29454 + - uid: 29442 components: - type: Transform - pos: 58.5,20.5 - parent: 2 - - uid: 29455 - components: - - type: Transform - pos: 62.5,14.5 - parent: 2 - - uid: 29456 - components: - - type: Transform - pos: 62.5,18.5 + pos: 51.5,26.5 parent: 2 - uid: 30624 components: @@ -159953,6 +162822,21 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,-26.5 parent: 2 + - uid: 31075 + components: + - type: Transform + pos: 57.5,21.5 + parent: 2 + - uid: 31076 + components: + - type: Transform + pos: 53.5,21.5 + parent: 2 + - uid: 31094 + components: + - type: Transform + pos: 59.5,26.5 + parent: 2 - proto: RandomProduce entities: - uid: 20761 @@ -160137,11 +163021,6 @@ entities: - type: Transform pos: 35.5,25.5 parent: 2 - - uid: 20705 - components: - - type: Transform - pos: 46.5,30.5 - parent: 2 - uid: 20706 components: - type: Transform @@ -160157,6 +163036,11 @@ entities: - type: Transform pos: 27.5,-23.5 parent: 2 + - uid: 29165 + components: + - type: Transform + pos: 45.5,23.5 + parent: 2 - uid: 30128 components: - type: Transform @@ -160855,15 +163739,23 @@ entities: rot: 1.5707963267948966 rad pos: 16.5,42.5 parent: 2 - - uid: 12753 + - uid: 12757 components: - type: Transform - pos: 55.5,16.5 + rot: 3.141592653589793 rad + pos: 52.5,17.5 parent: 2 - - uid: 12933 + - uid: 12881 components: - type: Transform - pos: 57.5,16.5 + rot: 3.141592653589793 rad + pos: 58.5,19.5 + parent: 2 + - uid: 13025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,17.5 parent: 2 - uid: 13508 components: @@ -160894,6 +163786,23 @@ entities: - type: Transform pos: 45.5,-22.5 parent: 2 + - uid: 18395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,17.5 + parent: 2 + - uid: 18409 + components: + - type: Transform + pos: 58.5,17.5 + parent: 2 + - uid: 18411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,17.5 + parent: 2 - uid: 18633 components: - type: Transform @@ -160917,16 +163826,6 @@ entities: rot: 1.5707963267948966 rad pos: 16.5,37.5 parent: 2 - - uid: 28510 - components: - - type: Transform - pos: 2.5,3.5 - parent: 21002 - - uid: 28511 - components: - - type: Transform - pos: 3.5,3.5 - parent: 21002 - uid: 28512 components: - type: Transform @@ -160947,6 +163846,57 @@ entities: - type: Transform pos: 6.5,-2.5 parent: 21002 + - uid: 29154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,19.5 + parent: 2 + - uid: 29158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,18.5 + parent: 2 + - uid: 29323 + components: + - type: Transform + pos: 56.5,19.5 + parent: 2 + - uid: 29325 + components: + - type: Transform + pos: 55.5,19.5 + parent: 2 + - uid: 29362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,17.5 + parent: 2 + - uid: 29425 + components: + - type: Transform + pos: 54.5,19.5 + parent: 2 + - uid: 29434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,18.5 + parent: 2 + - uid: 29437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,17.5 + parent: 2 + - uid: 29439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,17.5 + parent: 2 - uid: 29594 components: - type: Transform @@ -160970,6 +163920,44 @@ entities: rot: -1.5707963267948966 rad pos: 48.5,-11.5 parent: 2 +- proto: ReinforcedUraniumWindow + entities: + - uid: 13028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,22.5 + parent: 2 + - uid: 13038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,22.5 + parent: 2 + - uid: 13039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,22.5 + parent: 2 + - uid: 13040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,22.5 + parent: 2 + - uid: 13060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,22.5 + parent: 2 + - uid: 24380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,22.5 + parent: 2 - proto: ReinforcedWindow entities: - uid: 127 @@ -161970,11 +164958,6 @@ entities: - type: Transform pos: 36.5,51.5 parent: 2 - - uid: 6825 - components: - - type: Transform - pos: 38.5,51.5 - parent: 2 - uid: 6826 components: - type: Transform @@ -163174,12 +166157,6 @@ entities: rot: 1.5707963267948966 rad pos: -57.5,-33.5 parent: 2 - - uid: 10887 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,28.5 - parent: 2 - uid: 10902 components: - type: Transform @@ -163327,6 +166304,18 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,-57.5 parent: 2 + - uid: 12744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,30.5 + parent: 2 + - uid: 12752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,29.5 + parent: 2 - uid: 12845 components: - type: Transform @@ -163551,12 +166540,6 @@ entities: - type: Transform pos: 43.5,-2.5 parent: 2 - - uid: 18229 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,28.5 - parent: 2 - uid: 18360 components: - type: Transform @@ -163631,11 +166614,29 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-79.5 parent: 2 - - uid: 20256 + - uid: 20257 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,28.5 + rot: 1.5707963267948966 rad + pos: 49.5,31.5 + parent: 2 + - uid: 20263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,31.5 + parent: 2 + - uid: 20268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,31.5 + parent: 2 + - uid: 20387 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,31.5 parent: 2 - uid: 20662 components: @@ -163841,12 +166842,6 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,28.5 parent: 2 - - uid: 24009 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,28.5 - parent: 2 - uid: 24137 components: - type: Transform @@ -163988,6 +166983,11 @@ entities: - type: Transform pos: 46.5,-3.5 parent: 2 + - uid: 29299 + components: + - type: Transform + pos: 37.5,51.5 + parent: 2 - uid: 29597 components: - type: Transform @@ -164117,10 +167117,10 @@ entities: parent: 2 - proto: RobocopCircuitBoard entities: - - uid: 29442 + - uid: 12905 components: - type: Transform - pos: 61.45505,14.543717 + pos: 53.381123,13.600489 parent: 2 - proto: RockGuitarInstrument entities: @@ -164216,288 +167216,374 @@ entities: - type: Transform pos: -21.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4623 components: - type: Transform pos: -15.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4828 components: - type: Transform pos: 41.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4845 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9382 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9387 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9402 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9403 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9406 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9654 components: - type: Transform pos: 11.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11556 components: - type: Transform pos: 29.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12731 components: - type: Transform pos: -55.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13502 components: - type: Transform pos: -55.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14306 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16676 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16682 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16683 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16684 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16740 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16747 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17605 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18533 components: - type: Transform pos: -12.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18870 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20960 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23309 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23310 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23311 components: - type: Transform pos: 56.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23312 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23440 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23441 components: - type: Transform pos: -9.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23442 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23443 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23446 components: - type: Transform pos: -46.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23448 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23454 components: - type: Transform pos: 2.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23455 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23456 components: - type: Transform pos: -1.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23457 components: - type: Transform pos: -7.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23458 components: - type: Transform pos: -5.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23459 components: - type: Transform pos: -8.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23461 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23492 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,46.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23612 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,38.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23644 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,45.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23646 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24118 components: - type: Transform pos: 10.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28331 components: - type: Transform pos: 20.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28364 components: - type: Transform pos: -51.5,-11.5 parent: 2 - - uid: 29195 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,19.5 - parent: 2 - - uid: 29196 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,12.5 - parent: 2 + - type: Fixtures + fixtures: {} - uid: 29669 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SecurityTechFab entities: - uid: 28361 @@ -164771,7 +167857,7 @@ entities: - uid: 9691 components: - type: Transform - pos: 24.023485,16.190632 + pos: 23.951967,16.075333 parent: 2 - uid: 11880 components: @@ -164787,12 +167873,16 @@ entities: rot: 3.141592653589793 rad pos: 43.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23601 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: Shovel entities: - uid: 1269 @@ -165404,12 +168494,6 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,-54.5 parent: 2 - - uid: 12774 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,7.5 - parent: 2 - uid: 12955 components: - type: Transform @@ -165422,6 +168506,24 @@ entities: rot: -1.5707963267948966 rad pos: 62.5,9.5 parent: 2 + - uid: 20213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,10.5 + parent: 2 + - uid: 29469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,7.5 + parent: 2 + - uid: 29484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,11.5 + parent: 2 - uid: 29526 components: - type: Transform @@ -165527,14 +168629,6 @@ entities: - type: Transform pos: -56.500233,9.6115055 parent: 2 -- proto: SignAi - entities: - - uid: 23308 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,18.5 - parent: 2 - proto: SignAiUpload entities: - uid: 12285 @@ -165543,6 +168637,8 @@ entities: rot: -1.5707963267948966 rad pos: 59.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignalButtonDirectional entities: - uid: 1014 @@ -165558,6 +168654,8 @@ entities: 1050: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 1919 components: - type: MetaData @@ -165571,6 +168669,8 @@ entities: 7999: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 1920 components: - type: MetaData @@ -165584,6 +168684,8 @@ entities: 8000: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 2735 components: - type: MetaData @@ -165597,6 +168699,50 @@ entities: 2733: - - Pressed - Toggle + - type: Fixtures + fixtures: {} + - uid: 3210 + components: + - type: MetaData + name: space connector + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,14.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 29484: + - - Pressed + - Toggle + 20213: + - - Pressed + - Toggle + 12956: + - - Pressed + - Toggle + 12955: + - - Pressed + - Toggle + 29469: + - - Pressed + - Toggle + 29440: + - - Pressed + - Toggle + 20882: + - - Pressed + - Toggle + 20644: + - - Pressed + - Toggle + 20255: + - - Pressed + - Toggle + 23516: + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} - uid: 3749 components: - type: MetaData @@ -165610,6 +168756,8 @@ entities: 3921: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 3839 components: - type: MetaData @@ -165626,6 +168774,8 @@ entities: 23782: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 3840 components: - type: MetaData @@ -165639,6 +168789,8 @@ entities: 4811: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 3892 components: - type: MetaData @@ -165652,6 +168804,8 @@ entities: 3810: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 4033 components: - type: MetaData @@ -165665,6 +168819,8 @@ entities: 4035: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 4168 components: - type: MetaData @@ -165678,6 +168834,8 @@ entities: 4167: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 5382 components: - type: MetaData @@ -165691,6 +168849,8 @@ entities: 3921: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 7696 components: - type: MetaData @@ -165710,6 +168870,8 @@ entities: 7192: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 7697 components: - type: MetaData @@ -165729,6 +168891,8 @@ entities: 7042: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 7706 components: - type: MetaData @@ -165751,6 +168915,8 @@ entities: 7335: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 9642 components: - type: MetaData @@ -165770,6 +168936,8 @@ entities: 9638: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 9774 components: - type: MetaData @@ -165783,6 +168951,8 @@ entities: 16239: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 9781 components: - type: MetaData @@ -165796,6 +168966,8 @@ entities: 9718: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 10078 components: - type: MetaData @@ -165809,6 +168981,8 @@ entities: 9715: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 10588 components: - type: MetaData @@ -165827,6 +169001,8 @@ entities: 10591: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 15442 components: - type: MetaData @@ -165839,6 +169015,8 @@ entities: 3502: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 15451 components: - type: MetaData @@ -165852,6 +169030,8 @@ entities: 3502: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 21063 components: - type: MetaData @@ -165865,6 +169045,8 @@ entities: 28504: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 21064 components: - type: MetaData @@ -165878,6 +169060,8 @@ entities: 21068: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 22960 components: - type: MetaData @@ -165891,6 +169075,8 @@ entities: 22959: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 23768 components: - type: MetaData @@ -165904,6 +169090,8 @@ entities: 23766: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 23771 components: - type: MetaData @@ -165916,6 +169104,8 @@ entities: 23770: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 23773 components: - type: MetaData @@ -165929,6 +169119,8 @@ entities: 23772: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 23774 components: - type: MetaData @@ -165944,6 +169136,8 @@ entities: 23762: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 23775 components: - type: MetaData @@ -165957,6 +169151,8 @@ entities: 23761: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 23776 components: - type: MetaData @@ -165969,6 +169165,8 @@ entities: 24128: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 23777 components: - type: MetaData @@ -165982,6 +169180,8 @@ entities: 23763: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 23778 components: - type: MetaData @@ -165995,6 +169195,8 @@ entities: 23764: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 23779 components: - type: MetaData @@ -166007,6 +169209,8 @@ entities: 16214: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 23785 components: - type: MetaData @@ -166020,6 +169224,8 @@ entities: 23784: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 23829 components: - type: MetaData @@ -166033,6 +169239,8 @@ entities: 16797: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 24385 components: - type: Transform @@ -166044,6 +169252,8 @@ entities: 423: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 28356 components: - type: MetaData @@ -166057,6 +169267,8 @@ entities: 12133: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 28357 components: - type: MetaData @@ -166070,6 +169282,8 @@ entities: 12132: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 28358 components: - type: MetaData @@ -166083,6 +169297,8 @@ entities: 12131: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 28878 components: - type: MetaData @@ -166096,6 +169312,8 @@ entities: 23642: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 28900 components: - type: MetaData @@ -166114,6 +169332,8 @@ entities: 9295: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 29782 components: - type: MetaData @@ -166130,6 +169350,8 @@ entities: 1378: - - Pressed - Open + - type: Fixtures + fixtures: {} - uid: 30004 components: - type: MetaData @@ -166143,6 +169365,8 @@ entities: 23780: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 30014 components: - type: MetaData @@ -166164,6 +169388,8 @@ entities: 14391: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 30069 components: - type: MetaData @@ -166177,6 +169403,8 @@ entities: 3474: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 30265 components: - type: MetaData @@ -166190,6 +169418,56 @@ entities: 30310: - - Pressed - Toggle + - type: Fixtures + fixtures: {} + - uid: 30981 + components: + - type: MetaData + name: gas release R + - type: Transform + pos: 56.5,26.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12892: + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} + - uid: 30982 + components: + - type: MetaData + name: gas release L + - type: Transform + pos: 54.5,26.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 30935: + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} +- proto: SignalControlledValve + entities: + - uid: 12892 + components: + - type: Transform + pos: 56.5,23.5 + parent: 2 + - type: GasValve + open: False + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30935 + components: + - type: Transform + pos: 54.5,23.5 + parent: 2 + - type: GasValve + open: False + - type: AtmosPipeColor + color: '#FFAA00FF' - proto: SignalSwitchDirectional entities: - uid: 2694 @@ -166234,6 +169512,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 2696 components: - type: MetaData @@ -166261,6 +169541,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 3388 components: - type: MetaData @@ -166291,6 +169573,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 3800 components: - type: MetaData @@ -166320,6 +169604,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 4188 components: - type: MetaData @@ -166362,6 +169648,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 4507 components: - type: MetaData @@ -166404,6 +169692,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 4820 components: - type: MetaData @@ -166426,6 +169716,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 6175 components: - type: MetaData @@ -166451,6 +169743,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 6481 components: - type: MetaData @@ -166473,6 +169767,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 7698 components: - type: MetaData @@ -166498,6 +169794,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 7789 components: - type: MetaData @@ -166523,6 +169821,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 7865 components: - type: MetaData @@ -166567,6 +169867,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 8947 components: - type: MetaData @@ -166593,6 +169895,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 9775 components: - type: MetaData @@ -166625,6 +169929,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 10222 components: - type: MetaData @@ -166662,6 +169968,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 10393 components: - type: MetaData @@ -166687,6 +169995,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 11339 components: - type: MetaData @@ -166707,6 +170017,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 11986 components: - type: MetaData @@ -166727,6 +170039,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 12804 components: - type: MetaData @@ -166747,71 +170061,8 @@ entities: - Open - - Off - Close - - uid: 13038 - components: - - type: MetaData - name: space connector - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,11.5 - parent: 2 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 12956: - - - On - - Open - - - Off - - Close - 12955: - - - On - - Open - - - Off - - Close - 12774: - - - On - - Open - - - Off - - Close - 20644: - - - On - - Open - - - Off - - Close - 20255: - - - On - - Open - - - Off - - Close - 20268: - - - On - - Open - - - Off - - Close - - uid: 13400 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,18.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12801: - - - On - - Open - - - Off - - Close - 12802: - - - On - - Open - - - Off - - Close - 12803: - - - On - - Open - - - Off - - Close + - type: Fixtures + fixtures: {} - uid: 15445 components: - type: MetaData @@ -166831,6 +170082,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 16068 components: - type: MetaData @@ -166858,6 +170111,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 17733 components: - type: MetaData @@ -166895,6 +170150,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 18469 components: - type: Transform @@ -166935,6 +170192,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 18694 components: - type: MetaData @@ -166961,6 +170220,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 21017 components: - type: MetaData @@ -167018,6 +170279,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 24372 components: - type: MetaData @@ -167038,6 +170301,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 24386 components: - type: MetaData @@ -167062,6 +170327,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - proto: SignAnomaly entities: - uid: 16793 @@ -167070,12 +170337,16 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23200 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignArcade entities: - uid: 6863 @@ -167084,12 +170355,16 @@ entities: rot: -1.5707963267948966 rad pos: -47.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15737 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBar entities: - uid: 23186 @@ -167098,6 +170373,8 @@ entities: rot: 3.141592653589793 rad pos: -17.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBath entities: - uid: 28974 @@ -167106,18 +170383,24 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29046 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29781 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBio entities: - uid: 23187 @@ -167126,6 +170409,8 @@ entities: rot: 3.141592653589793 rad pos: -30.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBridge entities: - uid: 23188 @@ -167134,6 +170419,8 @@ entities: rot: 3.141592653589793 rad pos: 24.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCans entities: - uid: 8260 @@ -167142,6 +170429,8 @@ entities: rot: -1.5707963267948966 rad pos: -32.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCargo entities: - uid: 23190 @@ -167150,6 +170439,8 @@ entities: rot: 3.141592653589793 rad pos: -46.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCargoDock entities: - uid: 23191 @@ -167158,6 +170449,8 @@ entities: rot: 3.141592653589793 rad pos: -61.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignChapel entities: - uid: 23192 @@ -167166,6 +170459,8 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignChem entities: - uid: 8921 @@ -167174,6 +170469,8 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCloning entities: - uid: 23193 @@ -167182,6 +170479,8 @@ entities: rot: 3.141592653589793 rad pos: -22.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignConference entities: - uid: 23194 @@ -167190,6 +170489,8 @@ entities: rot: 3.141592653589793 rad pos: 28.5,16.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCryo entities: - uid: 6028 @@ -167198,11 +170499,15 @@ entities: rot: -1.5707963267948966 rad pos: -43.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23799 components: - type: Transform pos: -45.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDangerMed entities: - uid: 889 @@ -167211,18 +170516,24 @@ entities: rot: 3.141592653589793 rad pos: 19.5,-52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7938 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28305 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,5.5 parent: 21002 + - type: Fixtures + fixtures: {} - proto: SignDirectionalBridge entities: - uid: 20978 @@ -167231,12 +170542,16 @@ entities: rot: 1.5707963267948966 rad pos: 5.5165973,-1.8227005 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20998 components: - type: Transform rot: 3.141592653589793 rad pos: 32.500874,2.5446026 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalChapel entities: - uid: 1279 @@ -167245,11 +170560,15 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3461 components: - type: Transform pos: 2.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalChemistry entities: - uid: 20974 @@ -167257,6 +170576,8 @@ entities: - type: Transform pos: -1.4649258,-4.6710877 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalCryo entities: - uid: 20976 @@ -167265,6 +170586,8 @@ entities: rot: -1.5707963267948966 rad pos: -4.5113826,-1.2714531 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalDorms entities: - uid: 20985 @@ -167273,6 +170596,8 @@ entities: rot: -1.5707963267948966 rad pos: -4.4699364,2.5505779 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalEng entities: - uid: 20977 @@ -167281,12 +170606,16 @@ entities: rot: 3.141592653589793 rad pos: 5.522138,2.6120837 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20997 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.4812675,33.33204 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalEvac entities: - uid: 20979 @@ -167295,35 +170624,47 @@ entities: rot: 1.5707963267948966 rad pos: 5.5276074,2.4069471 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20986 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5332532,-28.346897 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20988 components: - type: Transform rot: 3.141592653589793 rad pos: -1.497997,-40.258747 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20995 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.461353,-1.2455269 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20999 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.525524,2.687672 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28601 components: - type: Transform pos: -0.50126964,39.711143 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalFood entities: - uid: 14128 @@ -167331,36 +170672,48 @@ entities: - type: Transform pos: -0.5,39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20987 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5332532,-28.565647 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20989 components: - type: Transform rot: 3.141592653589793 rad pos: -1.497997,-40.456665 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20994 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.465195,-1.4434437 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21000 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.525524,2.4793384 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29721 components: - type: Transform rot: 3.141592653589793 rad pos: -1.4826567,5.7890882 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalGravity entities: - uid: 5192 @@ -167369,23 +170722,31 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5193 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5206 components: - type: Transform pos: 32.5,41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20984 components: - type: Transform rot: 3.141592653589793 rad pos: -4.4699364,2.7693279 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalHop entities: - uid: 18363 @@ -167393,12 +170754,16 @@ entities: - type: Transform pos: 48.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20973 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5115004,-1.6256199 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalHydro entities: - uid: 20981 @@ -167407,6 +170772,8 @@ entities: rot: 3.141592653589793 rad pos: 5.524472,2.2030704 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalJanitor entities: - uid: 20968 @@ -167415,6 +170782,8 @@ entities: rot: 1.5707963267948966 rad pos: 5.5120444,-1.1898417 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalLibrary entities: - uid: 20969 @@ -167423,12 +170792,16 @@ entities: rot: 3.141592653589793 rad pos: 5.527905,2.8014636 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20996 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.4812675,33.537514 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalMed entities: - uid: 20970 @@ -167436,12 +170809,16 @@ entities: - type: Transform pos: -1.4676661,-4.2297864 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20991 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.497997,-40.882515 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSalvage entities: - uid: 20967 @@ -167450,6 +170827,8 @@ entities: rot: -1.5707963267948966 rad pos: -43.471596,2.8032153 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSci entities: - uid: 20971 @@ -167457,12 +170836,16 @@ entities: - type: Transform pos: -1.4676661,-4.4485364 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20990 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.4875805,-40.663765 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSec entities: - uid: 20972 @@ -167471,6 +170854,8 @@ entities: rot: 1.5707963267948966 rad pos: 5.5115004,-1.4068699 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSupply entities: - uid: 20966 @@ -167479,12 +170864,16 @@ entities: rot: -1.5707963267948966 rad pos: -43.471596,2.630097 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20982 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.511603,-1.4910889 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalWash entities: - uid: 20965 @@ -167492,12 +170881,16 @@ entities: - type: Transform pos: -43.471596,2.411347 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20983 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.511603,-1.7098389 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignElectricalMed entities: - uid: 3742 @@ -167505,171 +170898,231 @@ entities: - type: Transform pos: 56.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3745 components: - type: Transform pos: 52.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3853 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4516 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24515 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,64.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 24517 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,60.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 24520 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,57.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 24544 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,66.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 24579 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,50.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28123 components: - type: Transform rot: 3.141592653589793 rad pos: 95.5,3.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28143 components: - type: Transform rot: 3.141592653589793 rad pos: 95.5,18.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28148 components: - type: Transform rot: 3.141592653589793 rad pos: 95.5,13.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28161 components: - type: Transform rot: 1.5707963267948966 rad pos: 92.5,44.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28167 components: - type: Transform rot: 1.5707963267948966 rad pos: 88.5,53.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28174 components: - type: Transform rot: 1.5707963267948966 rad pos: 83.5,60.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28183 components: - type: Transform rot: 1.5707963267948966 rad pos: 73.5,64.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28191 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,66.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28198 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,66.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28214 components: - type: Transform pos: 92.5,-19.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28227 components: - type: Transform rot: 3.141592653589793 rad pos: 95.5,-11.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28233 components: - type: Transform pos: 88.5,-27.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28234 components: - type: Transform pos: 79.5,-36.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28235 components: - type: Transform pos: 79.5,-36.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28236 components: - type: Transform pos: 70.5,-40.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28237 components: - type: Transform pos: 55.5,-44.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28239 components: - type: Transform pos: 39.5,-44.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28241 components: - type: Transform pos: 30.5,-44.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28243 components: - type: Transform rot: -1.5707963267948966 rad pos: 94.5,34.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28254 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,42.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28255 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,32.5 parent: 21002 + - type: Fixtures + fixtures: {} - proto: SignEngine entities: - uid: 23195 @@ -167678,6 +171131,8 @@ entities: rot: 3.141592653589793 rad pos: 25.5,24.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEngineering entities: - uid: 9293 @@ -167686,12 +171141,16 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23196 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEscapePods entities: - uid: 23197 @@ -167700,6 +171159,8 @@ entities: rot: 3.141592653589793 rad pos: 32.5,47.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignExamroom entities: - uid: 8923 @@ -167708,6 +171169,8 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignFire entities: - uid: 28553 @@ -167715,6 +171178,8 @@ entities: - type: Transform pos: -27.5,34.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignGenpop entities: - uid: 4825 @@ -167723,18 +171188,24 @@ entities: rot: 3.141592653589793 rad pos: 36.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14163 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14310 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignGravity entities: - uid: 9201 @@ -167743,6 +171214,8 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,34.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignHead entities: - uid: 857 @@ -167751,47 +171224,63 @@ entities: rot: 3.141592653589793 rad pos: 33.5,16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7939 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9604 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,45.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10797 components: - type: Transform pos: -28.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23313 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23314 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28593 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 30401 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignHydro1 entities: - uid: 23182 @@ -167800,6 +171289,8 @@ entities: rot: 3.141592653589793 rad pos: 2.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignInterrogation entities: - uid: 3683 @@ -167808,6 +171299,8 @@ entities: rot: -1.5707963267948966 rad pos: 33.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignJanitor entities: - uid: 8924 @@ -167816,6 +171309,8 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignLaserMed entities: - uid: 29432 @@ -167823,21 +171318,29 @@ entities: - type: Transform pos: 62.5,6.5 parent: 2 - - uid: 29433 + - type: Fixtures + fixtures: {} + - uid: 29485 components: - type: Transform - pos: 56.5,14.5 + pos: 62.5,12.5 parent: 2 - - uid: 29434 + - type: Fixtures + fixtures: {} + - uid: 31121 components: - type: Transform - pos: 56.5,18.5 + pos: 64.5,6.5 parent: 2 - - uid: 29435 + - type: Fixtures + fixtures: {} + - uid: 31122 components: - type: Transform - pos: 62.5,10.5 + pos: 64.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignLawyer entities: - uid: 3448 @@ -167846,18 +171349,24 @@ entities: rot: -1.5707963267948966 rad pos: 43.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8925 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17280 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignLibrary entities: - uid: 8928 @@ -167866,14 +171375,8 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,35.5 parent: 2 -- proto: SignMagneticsMed - entities: - - uid: 29453 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,20.5 - parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMedical entities: - uid: 10161 @@ -167882,12 +171385,16 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10162 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMorgue entities: - uid: 8931 @@ -167896,12 +171403,16 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8932 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignNTMine entities: - uid: 23483 @@ -167910,12 +171421,16 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,5.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 23630 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-0.5 parent: 21002 + - type: Fixtures + fixtures: {} - proto: SignPrison entities: - uid: 23631 @@ -167924,18 +171439,24 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-0.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 23637 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-14.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 23638 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-24.5 parent: 21002 + - type: Fixtures + fixtures: {} - proto: SignPsychology entities: - uid: 2070 @@ -167944,23 +171465,31 @@ entities: rot: -1.5707963267948966 rad pos: -33.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2076 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2077 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10584 components: - type: Transform pos: -36.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRestroom entities: - uid: 29255 @@ -167969,6 +171498,8 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,35.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRobo entities: - uid: 23199 @@ -167977,6 +171508,8 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSalvage entities: - uid: 28902 @@ -167985,6 +171518,8 @@ entities: rot: -1.5707963267948966 rad pos: -52.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignScience entities: - uid: 28906 @@ -167993,14 +171528,8 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-40.5 parent: 2 -- proto: SignSecureMed - entities: - - uid: 3044 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,20.5 - parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecurity entities: - uid: 1348 @@ -168009,23 +171538,31 @@ entities: rot: 1.5707963267948966 rad pos: 33.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3519 components: - type: Transform pos: 30.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3764 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8935 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignServer entities: - uid: 28903 @@ -168034,6 +171571,8 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignShipDock entities: - uid: 8514 @@ -168042,85 +171581,123 @@ entities: rot: -1.5707963267948966 rad pos: 52.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignShock entities: + - uid: 12864 + components: + - type: Transform + pos: 57.5,28.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 24216 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,59.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24217 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,62.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24236 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,62.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24237 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,70.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24238 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,70.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24239 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,70.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24240 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,70.5 parent: 2 + - type: Fixtures + fixtures: {} + - uid: 29164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,21.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 29289 + components: + - type: Transform + pos: 62.5,28.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 29465 components: - type: Transform pos: 64.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29466 components: - type: Transform pos: 64.5,19.5 parent: 2 - - uid: 29467 - components: - - type: Transform - pos: 56.5,25.5 - parent: 2 - - uid: 29468 - components: - - type: Transform - pos: 61.5,25.5 - parent: 2 - - uid: 29469 - components: - - type: Transform - pos: 45.5,21.5 - parent: 2 + - type: Fixtures + fixtures: {} - uid: 29470 components: - type: Transform pos: 49.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29471 components: - type: Transform pos: 45.5,14.5 parent: 2 + - type: Fixtures + fixtures: {} + - uid: 31123 + components: + - type: Transform + pos: 49.5,28.5 + parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSmoking entities: - uid: 24212 @@ -168128,11 +171705,8 @@ entities: - type: Transform pos: -10.5,-33.5 parent: 2 - - uid: 29297 - components: - - type: Transform - pos: 62.5,12.5 - parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSpace entities: - uid: 880 @@ -168141,86 +171715,116 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,38.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 885 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-81.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 890 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7984 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8249 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8936 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9162 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9297 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23354 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28314 components: - type: Transform pos: 96.5,27.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28315 components: - type: Transform pos: 43.5,67.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28316 components: - type: Transform pos: 96.5,-4.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28317 components: - type: Transform pos: 47.5,-45.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28437 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,-54.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28864 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-81.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSurgery entities: - uid: 8937 @@ -168229,6 +171833,8 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignTelecomms entities: - uid: 9562 @@ -168236,6 +171842,8 @@ entities: - type: Transform pos: -30.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignTheater entities: - uid: 2198 @@ -168243,6 +171851,8 @@ entities: - type: Transform pos: -32.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignToolStorage entities: - uid: 5794 @@ -168251,6 +171861,8 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignVirology entities: - uid: 28907 @@ -168259,6 +171871,8 @@ entities: rot: -1.5707963267948966 rad pos: -30.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignXenobio entities: - uid: 7850 @@ -168267,6 +171881,8 @@ entities: rot: -1.5707963267948966 rad pos: -9.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SingularityGenerator entities: - uid: 16956 @@ -168494,25 +172110,6 @@ entities: - type: Transform pos: 42.5,-45.5 parent: 2 - - uid: 10731 - components: - - type: MetaData - name: AI SMES B - - type: Transform - pos: 52.5,19.5 - parent: 2 - - uid: 10743 - components: - - type: MetaData - name: AI SMES A - - type: Transform - pos: 50.5,19.5 - parent: 2 - - uid: 13023 - components: - - type: Transform - pos: 49.5,27.5 - parent: 2 - uid: 19639 components: - type: MetaData @@ -168535,11 +172132,23 @@ entities: - type: Transform pos: 3.5,-6.5 parent: 21002 + - uid: 24125 + components: + - type: MetaData + name: E Solars + - type: Transform + pos: 51.5,30.5 + parent: 2 - uid: 24747 components: - type: Transform pos: 22.5,-24.5 parent: 21002 + - uid: 29167 + components: + - type: Transform + pos: 48.5,15.5 + parent: 2 - proto: SmokingPipe entities: - uid: 16103 @@ -170699,6 +174308,26 @@ entities: - type: Transform pos: -25.5,-41.5 parent: 2 + - uid: 30839 + components: + - type: Transform + pos: -27.5,-38.5 + parent: 2 + - uid: 30840 + components: + - type: Transform + pos: -27.5,-41.5 + parent: 2 + - uid: 30844 + components: + - type: Transform + pos: -25.5,-39.5 + parent: 2 + - uid: 30845 + components: + - type: Transform + pos: -24.5,-40.5 + parent: 2 - proto: SpawnMobCorgi entities: - uid: 24191 @@ -170818,11 +174447,6 @@ entities: - type: Transform pos: -16.5,34.5 parent: 2 - - uid: 4079 - components: - - type: Transform - pos: 45.5,28.5 - parent: 2 - uid: 23565 components: - type: Transform @@ -170838,6 +174462,11 @@ entities: - type: Transform pos: -52.5,-26.5 parent: 2 + - uid: 29452 + components: + - type: Transform + pos: 44.5,31.5 + parent: 2 - proto: SpawnMobParrot entities: - uid: 676 @@ -171032,12 +174661,6 @@ entities: - type: Transform pos: -57.5,-29.5 parent: 2 - - uid: 29074 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,18.5 - parent: 2 - uid: 30135 components: - type: Transform @@ -171879,6 +175502,12 @@ entities: rot: 1.5707963267948966 rad pos: 44.5,-12.5 parent: 2 + - uid: 3196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,13.5 + parent: 2 - uid: 4040 components: - type: Transform @@ -171901,6 +175530,12 @@ entities: rot: 1.5707963267948966 rad pos: 44.5,-13.5 parent: 2 + - uid: 12860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,13.5 + parent: 2 - uid: 20755 components: - type: Transform @@ -172074,6 +175709,11 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,-23.5 parent: 2 + - uid: 12856 + components: + - type: Transform + pos: 55.5,14.5 + parent: 2 - uid: 28344 components: - type: Transform @@ -172121,10 +175761,10 @@ entities: parent: 2 - proto: StationAiUploadComputer entities: - - uid: 10660 + - uid: 29468 components: - type: Transform - pos: 59.5,19.5 + pos: 55.5,16.5 parent: 2 - proto: StationAnchor entities: @@ -172138,8 +175778,7 @@ entities: - uid: 29450 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.91259,22.59031 + pos: 61.487568,19.28684 parent: 2 - proto: StationMap entities: @@ -172149,62 +175788,84 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18574 components: - type: Transform pos: -47.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18643 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23439 components: - type: Transform pos: 51.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23449 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23451 components: - type: Transform pos: -1.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23452 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23453 components: - type: Transform pos: 2.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23462 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23493 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28042 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,0.5 parent: 21002 + - type: Fixtures + fixtures: {} - proto: StationMapCircuitboard entities: - uid: 5814 @@ -172551,13 +176212,6 @@ entities: - type: Transform pos: -52.5,-25.5 parent: 2 - - uid: 12831 - components: - - type: MetaData - name: AI substation - - type: Transform - pos: 51.5,19.5 - parent: 2 - uid: 12958 components: - type: MetaData @@ -172575,6 +176229,11 @@ entities: - type: Transform pos: 23.5,-24.5 parent: 21002 + - uid: 29166 + components: + - type: Transform + pos: 48.5,16.5 + parent: 2 - proto: SuitStorageAtmos entities: - uid: 8905 @@ -172843,21 +176502,11 @@ entities: - type: Transform pos: 39.5,-26.5 parent: 2 - - uid: 3953 - components: - - type: Transform - pos: 39.5,-24.5 - parent: 2 - uid: 3954 components: - type: Transform pos: 39.5,-28.5 parent: 2 - - uid: 3955 - components: - - type: Transform - pos: 39.5,-25.5 - parent: 2 - uid: 3956 components: - type: Transform @@ -172926,6 +176575,16 @@ entities: - type: Transform pos: 48.5,-20.5 parent: 2 + - uid: 15443 + components: + - type: Transform + pos: 39.5,-24.5 + parent: 2 + - uid: 21077 + components: + - type: Transform + pos: 39.5,-25.5 + parent: 2 - uid: 30024 components: - type: Transform @@ -173027,14 +176686,6 @@ entities: setupAvailableNetworks: - SurveillanceCameraCommand id: Captain's Bedroom - - uid: 20882 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,6.5 - parent: 2 - - type: SurveillanceCamera - id: EVA - uid: 20891 components: - type: Transform @@ -173062,40 +176713,6 @@ entities: - SurveillanceCameraCommand nameSet: True id: Briefing - - uid: 20911 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,16.5 - parent: 2 - - type: SurveillanceCamera - id: AI Core - - uid: 20912 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,16.5 - parent: 2 - - type: SurveillanceCamera - id: AI Control - - uid: 20913 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,8.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - id: AI Spaceway - - uid: 20914 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,18.5 - parent: 2 - - type: SurveillanceCamera - id: AI - uid: 20963 components: - type: Transform @@ -173103,28 +176720,6 @@ entities: parent: 2 - type: SurveillanceCamera id: Telecoms - - uid: 29135 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,23.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Compliance N - - uid: 29137 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,9.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Compliance S - uid: 29141 components: - type: Transform @@ -173146,17 +176741,82 @@ entities: - SurveillanceCameraCommand nameSet: True id: QM's Bedroom - - uid: 29457 + - uid: 31041 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,22.5 + pos: 54.5,13.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraCommand nameSet: True - id: Law Storage + id: AI upload + - uid: 31042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,19.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI board storage 1 + - uid: 31043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,19.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI board Storage 2 + - uid: 31044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,25.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI core 1 + - uid: 31045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,25.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI core 2 + - uid: 31046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,11.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI bridge + - uid: 31047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,26.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI maints 1 - proto: SurveillanceCameraEngineering entities: - uid: 20897 @@ -173566,27 +177226,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Anchorage - - uid: 29484 - components: - - type: Transform - pos: 49.5,26.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: E Solars - - uid: 29485 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,28.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: E Solars Catwalk - proto: SurveillanceCameraGeneral entities: - uid: 7089 @@ -173638,6 +177277,11 @@ entities: rot: 1.5707963267948966 rad pos: 61.5,3.5 parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Evac 2 - uid: 20951 components: - type: Transform @@ -173756,6 +177400,11 @@ entities: rot: 1.5707963267948966 rad pos: 61.5,-4.5 parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Evac 1 - uid: 29035 components: - type: Transform @@ -174139,6 +177788,17 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Gambling Den + - uid: 31129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,1.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Evac 3 - proto: SurveillanceCameraMedical entities: - uid: 20915 @@ -174764,6 +178424,17 @@ entities: - SurveillanceCameraSecurity nameSet: True id: perma retention north + - uid: 31130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-30.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Lockerroom - proto: SurveillanceCameraService entities: - uid: 3264 @@ -175734,6 +179405,18 @@ entities: rot: -1.5707963267948966 rad pos: -56.5,-34.5 parent: 2 + - uid: 13021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,19.5 + parent: 2 + - uid: 13073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,21.5 + parent: 2 - uid: 14253 components: - type: Transform @@ -175821,11 +179504,6 @@ entities: - type: Transform pos: 42.5,-15.5 parent: 2 - - uid: 20253 - components: - - type: Transform - pos: 51.5,22.5 - parent: 2 - uid: 22351 components: - type: Transform @@ -176029,36 +179707,66 @@ entities: - type: Transform pos: -14.5,19.5 parent: 2 - - uid: 29436 + - uid: 29023 components: - type: Transform - pos: 58.5,21.5 + rot: -1.5707963267948966 rad + pos: 50.5,13.5 parent: 2 - - uid: 29437 + - uid: 29137 components: - type: Transform - pos: 58.5,22.5 + rot: 3.141592653589793 rad + pos: 50.5,21.5 parent: 2 - - uid: 29438 + - uid: 29149 components: - type: Transform - pos: 59.5,22.5 + rot: 3.141592653589793 rad + pos: 61.5,18.5 parent: 2 - - uid: 29439 + - uid: 29152 components: - type: Transform - pos: 60.5,22.5 + rot: 3.141592653589793 rad + pos: 61.5,20.5 parent: 2 - - uid: 29440 + - uid: 29153 components: - type: Transform - pos: 61.5,22.5 + rot: 3.141592653589793 rad + pos: 61.5,19.5 parent: 2 - - uid: 29441 + - uid: 29426 components: - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,18.5 + parent: 2 + - uid: 29427 + components: + - type: Transform + rot: 3.141592653589793 rad pos: 61.5,21.5 parent: 2 + - uid: 29428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,14.5 + parent: 2 + - uid: 29433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,20.5 + parent: 2 + - uid: 29456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,21.5 + parent: 2 - uid: 30249 components: - type: Transform @@ -176097,6 +179805,21 @@ entities: - type: Transform pos: -45.5,-35.5 parent: 2 + - uid: 31058 + components: + - type: Transform + pos: 52.5,16.5 + parent: 2 + - uid: 31059 + components: + - type: Transform + pos: 60.5,16.5 + parent: 2 + - uid: 31060 + components: + - type: Transform + pos: 59.5,16.5 + parent: 2 - proto: TableCarpet entities: - uid: 7942 @@ -176347,48 +180070,34 @@ entities: - type: Transform pos: 43.5,-34.5 parent: 2 - - uid: 13006 - components: - - type: Transform - pos: 58.5,19.5 - parent: 2 - - uid: 13007 - components: - - type: Transform - pos: 61.5,19.5 - parent: 2 - - uid: 13011 - components: - - type: Transform - pos: 58.5,18.5 - parent: 2 - - uid: 13012 - components: - - type: Transform - pos: 58.5,13.5 - parent: 2 - - uid: 13014 - components: - - type: Transform - pos: 58.5,14.5 - parent: 2 - uid: 13070 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-16.5 parent: 2 - - uid: 29361 + - uid: 18415 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,13.5 + rot: 3.141592653589793 rad + pos: 52.5,13.5 parent: 2 - - uid: 29362 + - uid: 18416 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,14.5 + rot: 3.141592653589793 rad + pos: 53.5,13.5 + parent: 2 + - uid: 18432 + components: + - type: Transform + pos: 57.5,13.5 + parent: 2 + - uid: 29360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,13.5 parent: 2 - uid: 29909 components: @@ -178692,6 +182401,13 @@ entities: - type: Transform pos: -45.681465,-31.433119 parent: 2 +- proto: ToyAi + entities: + - uid: 31115 + components: + - type: Transform + pos: 55.475132,25.468586 + parent: 2 - proto: ToyAmongPequeno entities: - uid: 30091 @@ -178707,6 +182423,13 @@ entities: parent: 8002 - type: Physics canCollide: False +- proto: ToyReticence + entities: + - uid: 31124 + components: + - type: Transform + pos: 52.508877,21.605362 + parent: 2 - proto: ToyRubberDuck entities: - uid: 3734 @@ -178813,6 +182536,300 @@ entities: - type: Transform pos: 20.246368,3.9232254 parent: 21002 + - uid: 30848 + components: + - type: Transform + pos: -24.617859,-39.4461 + parent: 2 + - type: Storage + storedItems: + 30849: + position: 0,0 + _rotation: South + 30850: + position: 1,0 + _rotation: South + 30851: + position: 2,0 + _rotation: South + 30852: + position: 3,0 + _rotation: South + 30853: + position: 4,0 + _rotation: South + 30854: + position: 5,0 + _rotation: South + 30855: + position: 6,0 + _rotation: South + 30856: + position: 7,0 + _rotation: South + 30857: + position: 0,1 + _rotation: South + 30858: + position: 1,1 + _rotation: South + 30859: + position: 2,1 + _rotation: South + 30860: + position: 3,1 + _rotation: South + 30861: + position: 4,1 + _rotation: South + 30862: + position: 7,1 + _rotation: South + 30863: + position: 0,2 + _rotation: South + 30864: + position: 1,2 + _rotation: South + 30865: + position: 2,2 + _rotation: South + 30866: + position: 3,2 + _rotation: South + 30867: + position: 4,2 + _rotation: South + 30868: + position: 5,2 + _rotation: South + 30869: + position: 6,2 + _rotation: South + 30870: + position: 2,3 + _rotation: South + 30871: + position: 3,3 + _rotation: South + 30872: + position: 4,3 + _rotation: South + 30873: + position: 5,3 + _rotation: South + 30874: + position: 7,3 + _rotation: South + 30875: + position: 0,4 + _rotation: South + 30876: + position: 1,4 + _rotation: South + 30877: + position: 6,4 + _rotation: South + 30878: + position: 2,5 + _rotation: East + 30879: + position: 7,5 + _rotation: South + 30880: + position: 4,5 + _rotation: East + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 30849 + - 30850 + - 30851 + - 30852 + - 30853 + - 30854 + - 30855 + - 30856 + - 30857 + - 30858 + - 30859 + - 30860 + - 30861 + - 30862 + - 30863 + - 30864 + - 30865 + - 30866 + - 30867 + - 30868 + - 30869 + - 30870 + - 30871 + - 30872 + - 30873 + - 30874 + - 30875 + - 30876 + - 30877 + - 30878 + - 30879 + - 30880 + - uid: 30883 + components: + - type: Transform + pos: -26.711609,-40.050266 + parent: 2 + - type: Storage + storedItems: + 30884: + position: 0,0 + _rotation: South + 30885: + position: 1,0 + _rotation: South + 30886: + position: 2,0 + _rotation: South + 30887: + position: 3,0 + _rotation: South + 30888: + position: 4,0 + _rotation: South + 30889: + position: 5,0 + _rotation: South + 30890: + position: 6,0 + _rotation: South + 30891: + position: 7,0 + _rotation: South + 30892: + position: 2,1 + _rotation: South + 30893: + position: 3,1 + _rotation: South + 30894: + position: 4,1 + _rotation: South + 30895: + position: 5,1 + _rotation: South + 30896: + position: 6,1 + _rotation: South + 30897: + position: 7,1 + _rotation: South + 30898: + position: 0,2 + _rotation: South + 30899: + position: 1,2 + _rotation: South + 30900: + position: 2,2 + _rotation: South + 30901: + position: 3,2 + _rotation: South + 30902: + position: 4,2 + _rotation: South + 30903: + position: 5,2 + _rotation: South + 30904: + position: 6,2 + _rotation: South + 30905: + position: 7,2 + _rotation: South + 30906: + position: 0,3 + _rotation: South + 30907: + position: 1,3 + _rotation: South + 30908: + position: 6,3 + _rotation: South + 30909: + position: 7,3 + _rotation: South + 30910: + position: 2,4 + _rotation: South + 30911: + position: 3,4 + _rotation: South + 30912: + position: 4,4 + _rotation: South + 30913: + position: 7,4 + _rotation: East + 30914: + position: 0,5 + _rotation: South + 30915: + position: 1,5 + _rotation: South + 30916: + position: 3,5 + _rotation: South + 30917: + position: 4,5 + _rotation: East + 30918: + position: 6,5 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 30884 + - 30885 + - 30886 + - 30887 + - 30888 + - 30889 + - 30890 + - 30891 + - 30892 + - 30893 + - 30894 + - 30895 + - 30896 + - 30897 + - 30898 + - 30899 + - 30900 + - 30901 + - 30902 + - 30903 + - 30904 + - 30905 + - 30906 + - 30907 + - 30908 + - 30909 + - 30910 + - 30911 + - 30912 + - 30913 + - 30914 + - 30915 + - 30916 + - 30917 + - 30918 - proto: TrashBananaPeel entities: - uid: 3484 @@ -178825,6 +182842,12 @@ entities: - type: Transform pos: 13.830492,29.010149 parent: 2 + - uid: 30917 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False - proto: TrashCherryPit entities: - uid: 4046 @@ -178877,6 +182900,11 @@ entities: - type: Transform pos: -32.484524,43.639366 parent: 2 + - uid: 31126 + components: + - type: Transform + pos: 50.31656,14.556666 + parent: 2 - proto: TreasureCoinIron entities: - uid: 3752 @@ -179878,12 +183906,16 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1469 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: VendingMachineWinter entities: - uid: 11934 @@ -179918,29 +183950,39 @@ entities: rot: -1.5707963267948966 rad pos: 32.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4329 components: - type: Transform pos: 40.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9895 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11386 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23602 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WallmountTelescreenFrame entities: - uid: 2379 @@ -179948,6 +183990,8 @@ entities: - type: Transform pos: 25.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WallmountTelevision entities: - uid: 3581 @@ -179955,56 +183999,76 @@ entities: - type: Transform pos: 3.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3582 components: - type: Transform pos: 27.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3583 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3585 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3587 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5408 components: - type: Transform pos: 48.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5420 components: - type: Transform pos: -18.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9936 components: - type: Transform pos: 7.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19457 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20658 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WallReinforced entities: - uid: 3 @@ -181669,12 +185733,6 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,16.5 parent: 2 - - uid: 2364 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,21.5 - parent: 2 - uid: 2374 components: - type: Transform @@ -182557,26 +186615,6 @@ entities: - type: Transform pos: 45.5,19.5 parent: 2 - - uid: 3194 - components: - - type: Transform - pos: 45.5,20.5 - parent: 2 - - uid: 3195 - components: - - type: Transform - pos: 45.5,21.5 - parent: 2 - - uid: 3196 - components: - - type: Transform - pos: 45.5,22.5 - parent: 2 - - uid: 3197 - components: - - type: Transform - pos: 45.5,23.5 - parent: 2 - uid: 3198 components: - type: Transform @@ -182602,21 +186640,6 @@ entities: - type: Transform pos: 38.5,23.5 parent: 2 - - uid: 3207 - components: - - type: Transform - pos: 45.5,24.5 - parent: 2 - - uid: 3208 - components: - - type: Transform - pos: 45.5,25.5 - parent: 2 - - uid: 3210 - components: - - type: Transform - pos: 45.5,27.5 - parent: 2 - uid: 3211 components: - type: Transform @@ -183985,12 +188008,24 @@ entities: rot: 1.5707963267948966 rad pos: 46.5,-44.5 parent: 2 + - uid: 5219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,27.5 + parent: 2 - uid: 5221 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,28.5 parent: 2 + - uid: 5222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,13.5 + parent: 2 - uid: 5223 components: - type: Transform @@ -184716,18 +188751,6 @@ entities: rot: 1.5707963267948966 rad pos: 41.5,35.5 parent: 2 - - uid: 6541 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,25.5 - parent: 2 - - uid: 6543 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,27.5 - parent: 2 - uid: 6544 components: - type: Transform @@ -184740,12 +188763,6 @@ entities: rot: 1.5707963267948966 rad pos: 47.5,28.5 parent: 2 - - uid: 6547 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,29.5 - parent: 2 - uid: 6548 components: - type: Transform @@ -185069,21 +189086,6 @@ entities: - type: Transform pos: 32.5,55.5 parent: 2 - - uid: 6812 - components: - - type: Transform - pos: 37.5,48.5 - parent: 2 - - uid: 6813 - components: - - type: Transform - pos: 37.5,50.5 - parent: 2 - - uid: 6814 - components: - - type: Transform - pos: 37.5,51.5 - parent: 2 - uid: 6815 components: - type: Transform @@ -188289,24 +192291,6 @@ entities: rot: 1.5707963267948966 rad pos: 55.5,9.5 parent: 2 - - uid: 10958 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,9.5 - parent: 2 - - uid: 10959 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,9.5 - parent: 2 - - uid: 10960 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,9.5 - parent: 2 - uid: 10961 components: - type: Transform @@ -189108,182 +193092,151 @@ entities: rot: -1.5707963267948966 rad pos: -47.5,-42.5 parent: 2 + - uid: 12699 + components: + - type: Transform + pos: 57.5,28.5 + parent: 2 + - uid: 12700 + components: + - type: Transform + pos: 58.5,28.5 + parent: 2 + - uid: 12701 + components: + - type: Transform + pos: 60.5,28.5 + parent: 2 + - uid: 12702 + components: + - type: Transform + pos: 59.5,28.5 + parent: 2 - uid: 12703 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,25.5 + pos: 61.5,28.5 parent: 2 - - uid: 12704 + - uid: 12707 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,25.5 + pos: 54.5,26.5 parent: 2 - - uid: 12706 + - uid: 12712 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,25.5 + pos: 52.5,26.5 parent: 2 - - uid: 12709 + - uid: 12713 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,21.5 + pos: 50.5,26.5 parent: 2 - uid: 12714 components: - type: Transform - pos: 56.5,18.5 + pos: 51.5,26.5 parent: 2 - - uid: 12716 + - uid: 12715 components: - type: Transform - pos: 57.5,13.5 + pos: 53.5,26.5 parent: 2 - uid: 12718 components: - type: Transform - pos: 56.5,14.5 + pos: 49.5,26.5 parent: 2 - - uid: 12732 + - uid: 12719 components: - type: Transform - pos: 47.5,12.5 + pos: 61.5,26.5 parent: 2 - - uid: 12733 + - uid: 12720 components: - type: Transform - pos: 47.5,13.5 + pos: 59.5,26.5 parent: 2 - - uid: 12734 + - uid: 12721 components: - type: Transform - pos: 47.5,14.5 + pos: 60.5,26.5 parent: 2 - - uid: 12735 + - uid: 12722 components: - type: Transform - pos: 47.5,15.5 + pos: 57.5,26.5 parent: 2 - - uid: 12736 + - uid: 12723 components: - type: Transform - pos: 47.5,16.5 + pos: 58.5,26.5 parent: 2 - - uid: 12737 - components: - - type: Transform - pos: 47.5,17.5 - parent: 2 - - uid: 12738 - components: - - type: Transform - pos: 47.5,18.5 - parent: 2 - - uid: 12739 - components: - - type: Transform - pos: 47.5,19.5 - parent: 2 - - uid: 12740 - components: - - type: Transform - pos: 47.5,20.5 - parent: 2 - - uid: 12742 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,25.5 - parent: 2 - - uid: 12743 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,25.5 - parent: 2 - - uid: 12744 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,25.5 - parent: 2 - - uid: 12749 - components: - - type: Transform - pos: 55.5,19.5 - parent: 2 - - uid: 12750 - components: - - type: Transform - pos: 55.5,18.5 - parent: 2 - - uid: 12751 - components: - - type: Transform - pos: 57.5,12.5 - parent: 2 - - uid: 12752 - components: - - type: Transform - pos: 57.5,14.5 - parent: 2 - - uid: 12754 - components: - - type: Transform - pos: 55.5,14.5 - parent: 2 - - uid: 12755 - components: - - type: Transform - pos: 55.5,13.5 - parent: 2 - - uid: 12756 - components: - - type: Transform - pos: 55.5,12.5 - parent: 2 - - uid: 12757 - components: - - type: Transform - pos: 54.5,12.5 - parent: 2 - - uid: 12758 - components: - - type: Transform - pos: 53.5,12.5 - parent: 2 - - uid: 12759 - components: - - type: Transform - pos: 52.5,12.5 - parent: 2 - - uid: 12760 - components: - - type: Transform - pos: 51.5,12.5 - parent: 2 - - uid: 12761 - components: - - type: Transform - pos: 50.5,12.5 - parent: 2 - - uid: 12762 + - uid: 12724 components: - type: Transform pos: 49.5,12.5 parent: 2 + - uid: 12725 + components: + - type: Transform + pos: 53.5,12.5 + parent: 2 + - uid: 12726 + components: + - type: Transform + pos: 52.5,12.5 + parent: 2 + - uid: 12727 + components: + - type: Transform + pos: 51.5,12.5 + parent: 2 + - uid: 12729 + components: + - type: Transform + pos: 56.5,12.5 + parent: 2 + - uid: 12730 + components: + - type: Transform + pos: 58.5,12.5 + parent: 2 + - uid: 12732 + components: + - type: Transform + pos: 57.5,12.5 + parent: 2 + - uid: 12733 + components: + - type: Transform + pos: 59.5,12.5 + parent: 2 + - uid: 12735 + components: + - type: Transform + pos: 59.5,11.5 + parent: 2 + - uid: 12753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,30.5 + parent: 2 + - uid: 12755 + components: + - type: Transform + pos: 48.5,26.5 + parent: 2 - uid: 12763 components: - type: Transform - pos: 48.5,12.5 + pos: 64.5,26.5 parent: 2 - uid: 12764 components: - type: Transform - pos: 57.5,11.5 + pos: 56.5,26.5 parent: 2 - uid: 12765 components: @@ -189318,161 +193271,55 @@ entities: - uid: 12771 components: - type: Transform - pos: 57.5,18.5 + pos: 55.5,26.5 parent: 2 - uid: 12772 components: - type: Transform - pos: 57.5,19.5 + pos: 64.5,27.5 parent: 2 - uid: 12773 components: - type: Transform - pos: 57.5,20.5 - parent: 2 - - uid: 12775 - components: - - type: Transform - pos: 57.5,22.5 - parent: 2 - - uid: 12776 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,23.5 - parent: 2 - - uid: 12777 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,25.5 - parent: 2 - - uid: 12778 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,25.5 + pos: 64.5,28.5 parent: 2 - uid: 12779 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,25.5 + pos: 63.5,28.5 parent: 2 - uid: 12780 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,25.5 + pos: 62.5,28.5 parent: 2 - uid: 12782 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,25.5 - parent: 2 - - uid: 12783 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,20.5 + rot: 1.5707963267948966 rad + pos: 47.5,17.5 parent: 2 - uid: 12784 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,22.5 + rot: 1.5707963267948966 rad + pos: 47.5,15.5 parent: 2 - uid: 12790 components: - type: Transform - pos: 51.5,15.5 - parent: 2 - - uid: 12791 - components: - - type: Transform - pos: 51.5,17.5 - parent: 2 - - uid: 12792 - components: - - type: Transform - pos: 52.5,16.5 - parent: 2 - - uid: 12793 - components: - - type: Transform - pos: 52.5,15.5 - parent: 2 - - uid: 12794 - components: - - type: Transform - pos: 52.5,17.5 - parent: 2 - - uid: 12805 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,23.5 - parent: 2 - - uid: 12806 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,23.5 - parent: 2 - - uid: 12807 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,23.5 - parent: 2 - - uid: 12808 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,23.5 - parent: 2 - - uid: 12809 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,23.5 + pos: 48.5,12.5 parent: 2 - uid: 12810 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,23.5 - parent: 2 - - uid: 12811 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,23.5 - parent: 2 - - uid: 12812 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,23.5 - parent: 2 - - uid: 12813 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,23.5 - parent: 2 - - uid: 12814 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,22.5 + pos: 50.5,12.5 parent: 2 - uid: 12815 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,21.5 + rot: 1.5707963267948966 rad + pos: 47.5,16.5 parent: 2 - uid: 12819 components: @@ -189480,6 +193327,18 @@ entities: rot: 3.141592653589793 rad pos: 48.5,-10.5 parent: 2 + - uid: 12839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,14.5 + parent: 2 + - uid: 12841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,12.5 + parent: 2 - uid: 12844 components: - type: Transform @@ -189504,75 +193363,89 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,-47.5 parent: 2 + - uid: 12865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,21.5 + parent: 2 + - uid: 12866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,19.5 + parent: 2 + - uid: 12891 + components: + - type: Transform + pos: 55.5,28.5 + parent: 2 + - uid: 12902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,23.5 + parent: 2 + - uid: 12904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,21.5 + parent: 2 + - uid: 12916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,17.5 + parent: 2 + - uid: 12917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,18.5 + parent: 2 + - uid: 12918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,22.5 + parent: 2 + - uid: 12922 + components: + - type: Transform + pos: 63.5,12.5 + parent: 2 + - uid: 12927 + components: + - type: Transform + pos: 54.5,12.5 + parent: 2 + - uid: 12932 + components: + - type: Transform + pos: 55.5,12.5 + parent: 2 - uid: 12940 components: - type: Transform - pos: 58.5,20.5 + rot: 1.5707963267948966 rad + pos: 55.5,21.5 parent: 2 - uid: 12941 components: - type: Transform - pos: 59.5,20.5 - parent: 2 - - uid: 12943 - components: - - type: Transform - pos: 61.5,20.5 - parent: 2 - - uid: 12944 - components: - - type: Transform - pos: 62.5,20.5 - parent: 2 - - uid: 12945 - components: - - type: Transform - pos: 62.5,19.5 - parent: 2 - - uid: 12946 - components: - - type: Transform - pos: 62.5,18.5 - parent: 2 - - uid: 12947 - components: - - type: Transform - pos: 62.5,17.5 - parent: 2 - - uid: 12948 - components: - - type: Transform - pos: 62.5,16.5 - parent: 2 - - uid: 12949 - components: - - type: Transform - pos: 62.5,15.5 - parent: 2 - - uid: 12950 - components: - - type: Transform - pos: 62.5,14.5 - parent: 2 - - uid: 12951 - components: - - type: Transform - pos: 62.5,13.5 - parent: 2 - - uid: 12952 - components: - - type: Transform - pos: 62.5,12.5 + rot: 1.5707963267948966 rad + pos: 54.5,21.5 parent: 2 - uid: 12953 components: - type: Transform - pos: 62.5,11.5 + pos: 38.5,51.5 parent: 2 - - uid: 12954 + - uid: 12957 components: - type: Transform - pos: 62.5,10.5 + pos: 62.5,16.5 parent: 2 - uid: 12986 components: @@ -189596,17 +193469,56 @@ entities: - type: Transform pos: 59.5,10.5 parent: 2 + - uid: 13006 + components: + - type: Transform + pos: 62.5,13.5 + parent: 2 + - uid: 13013 + components: + - type: Transform + pos: 62.5,22.5 + parent: 2 + - uid: 13014 + components: + - type: Transform + pos: 62.5,26.5 + parent: 2 + - uid: 13015 + components: + - type: Transform + pos: 62.5,25.5 + parent: 2 - uid: 13017 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,27.5 + pos: 62.5,24.5 parent: 2 - - uid: 13021 + - uid: 13020 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,27.5 + pos: 62.5,23.5 + parent: 2 + - uid: 13023 + components: + - type: Transform + pos: 62.5,15.5 + parent: 2 + - uid: 13026 + components: + - type: Transform + pos: 62.5,14.5 + parent: 2 + - uid: 13061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,21.5 + parent: 2 + - uid: 13064 + components: + - type: Transform + pos: 62.5,12.5 parent: 2 - uid: 13067 components: @@ -189717,6 +193629,11 @@ entities: - type: Transform pos: 30.5,31.5 parent: 2 + - uid: 13747 + components: + - type: Transform + pos: 51.5,28.5 + parent: 2 - uid: 13960 components: - type: Transform @@ -189786,12 +193703,6 @@ entities: rot: -1.5707963267948966 rad pos: 48.5,-3.5 parent: 2 - - uid: 14683 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,25.5 - parent: 2 - uid: 14805 components: - type: Transform @@ -189864,6 +193775,11 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,48.5 parent: 2 + - uid: 17129 + components: + - type: Transform + pos: 62.5,19.5 + parent: 2 - uid: 17215 components: - type: Transform @@ -189911,6 +193827,26 @@ entities: rot: 1.5707963267948966 rad pos: 54.5,-20.5 parent: 2 + - uid: 17437 + components: + - type: Transform + pos: 62.5,20.5 + parent: 2 + - uid: 17440 + components: + - type: Transform + pos: 62.5,21.5 + parent: 2 + - uid: 17455 + components: + - type: Transform + pos: 62.5,17.5 + parent: 2 + - uid: 17456 + components: + - type: Transform + pos: 62.5,18.5 + parent: 2 - uid: 18052 components: - type: Transform @@ -190010,6 +193946,11 @@ entities: rot: 1.5707963267948966 rad pos: 37.5,9.5 parent: 2 + - uid: 18370 + components: + - type: Transform + pos: 52.5,28.5 + parent: 2 - uid: 18406 components: - type: Transform @@ -190022,6 +193963,18 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-79.5 parent: 2 + - uid: 18410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,24.5 + parent: 2 + - uid: 18424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,22.5 + parent: 2 - uid: 18628 components: - type: Transform @@ -190046,6 +193999,12 @@ entities: rot: 1.5707963267948966 rad pos: -46.5,-50.5 parent: 2 + - uid: 18930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,28.5 + parent: 2 - uid: 19043 components: - type: Transform @@ -190194,18 +194153,63 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,-81.5 parent: 2 + - uid: 20259 + components: + - type: Transform + pos: 56.5,28.5 + parent: 2 + - uid: 20262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,31.5 + parent: 2 + - uid: 20267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,31.5 + parent: 2 - uid: 20273 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,28.5 parent: 2 + - uid: 20488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,21.5 + parent: 2 + - uid: 20495 + components: + - type: Transform + pos: 48.5,28.5 + parent: 2 + - uid: 20497 + components: + - type: Transform + pos: 49.5,28.5 + parent: 2 + - uid: 20500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,21.5 + parent: 2 - uid: 20610 components: - type: Transform rot: 3.141592653589793 rad pos: -60.5,-8.5 parent: 2 + - uid: 20646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,19.5 + parent: 2 - uid: 20659 components: - type: Transform @@ -191309,6 +195313,12 @@ entities: rot: 3.141592653589793 rad pos: -0.5,44.5 parent: 2 + - uid: 23759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,25.5 + parent: 2 - uid: 23783 components: - type: Transform @@ -192513,61 +196523,26 @@ entities: rot: 1.5707963267948966 rad pos: 50.5,-20.5 parent: 2 - - uid: 29293 + - uid: 29196 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,25.5 + rot: 1.5707963267948966 rad + pos: 46.5,20.5 parent: 2 - uid: 29294 components: - type: Transform pos: -15.5,-61.5 parent: 2 - - uid: 29300 + - uid: 29297 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,22.5 + pos: 38.5,48.5 parent: 2 - - uid: 29301 + - uid: 29298 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,23.5 - parent: 2 - - uid: 29302 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,23.5 - parent: 2 - - uid: 29303 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,23.5 - parent: 2 - - uid: 29304 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,23.5 - parent: 2 - - uid: 29309 - components: - - type: Transform - pos: 63.5,10.5 - parent: 2 - - uid: 29310 - components: - - type: Transform - pos: 64.5,10.5 - parent: 2 - - uid: 29311 - components: - - type: Transform - pos: 64.5,11.5 + pos: 38.5,50.5 parent: 2 - uid: 29312 components: @@ -192624,17 +196599,17 @@ entities: - type: Transform pos: 64.5,22.5 parent: 2 - - uid: 29323 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,23.5 - parent: 2 - uid: 29334 components: - type: Transform pos: 63.5,6.5 parent: 2 + - uid: 29339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,22.5 + parent: 2 - uid: 29348 components: - type: Transform @@ -192650,30 +196625,12 @@ entities: - type: Transform pos: 63.5,5.5 parent: 2 - - uid: 29413 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,25.5 - parent: 2 - - uid: 29415 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,25.5 - parent: 2 - uid: 29421 components: - type: Transform rot: 3.141592653589793 rad pos: 64.5,25.5 parent: 2 - - uid: 29422 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,25.5 - parent: 2 - uid: 29423 components: - type: Transform @@ -192686,17 +196643,23 @@ entities: rot: 3.141592653589793 rad pos: 64.5,23.5 parent: 2 - - uid: 29425 + - uid: 29438 components: - type: Transform rot: 3.141592653589793 rad - pos: 58.5,25.5 + pos: 48.5,20.5 parent: 2 - - uid: 29431 + - uid: 29453 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,21.5 + rot: 1.5707963267948966 rad + pos: 46.5,25.5 + parent: 2 + - uid: 29454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,24.5 parent: 2 - uid: 29481 components: @@ -192709,6 +196672,12 @@ entities: rot: 3.141592653589793 rad pos: -60.5,-9.5 parent: 2 + - uid: 29577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,23.5 + parent: 2 - uid: 29593 components: - type: Transform @@ -192725,6 +196694,18 @@ entities: - type: Transform pos: -14.5,-60.5 parent: 2 + - uid: 29833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,26.5 + parent: 2 + - uid: 29865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,22.5 + parent: 2 - uid: 29962 components: - type: Transform @@ -192802,6 +196783,18 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,24.5 parent: 2 + - uid: 31131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,3.5 + parent: 21002 + - uid: 31132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 21002 - proto: WallReinforcedRust entities: - uid: 24425 @@ -195984,11 +199977,6 @@ entities: - type: Transform pos: 45.5,32.5 parent: 2 - - uid: 9739 - components: - - type: Transform - pos: 45.5,31.5 - parent: 2 - uid: 9750 components: - type: Transform @@ -196958,6 +200946,12 @@ entities: rot: 1.5707963267948966 rad pos: -34.5,-52.5 parent: 2 + - uid: 13029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,26.5 + parent: 2 - uid: 13033 components: - type: Transform @@ -197128,11 +201122,6 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,33.5 parent: 2 - - uid: 17129 - components: - - type: Transform - pos: 44.5,24.5 - parent: 2 - uid: 17434 components: - type: Transform @@ -197540,6 +201529,12 @@ entities: rot: -1.5707963267948966 rad pos: 42.5,-44.5 parent: 2 + - uid: 29195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,27.5 + parent: 2 - uid: 29369 components: - type: Transform @@ -198437,22 +202432,30 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28304 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,5.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28505 components: - type: Transform pos: 5.5,-0.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28552 components: - type: Transform pos: -25.5,34.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningCO2 entities: - uid: 8912 @@ -198461,6 +202464,8 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningN2 entities: - uid: 8913 @@ -198469,12 +202474,16 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28302 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-8.5 parent: 21002 + - type: Fixtures + fixtures: {} - proto: WarningN2O entities: - uid: 8914 @@ -198483,6 +202492,8 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningO2 entities: - uid: 8915 @@ -198491,12 +202502,16 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28303 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-12.5 parent: 21002 + - type: Fixtures + fixtures: {} - proto: WarningPlasma entities: - uid: 6196 @@ -198505,6 +202520,8 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,16.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningTritium entities: - uid: 8920 @@ -198513,6 +202530,8 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,24.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningWaste entities: - uid: 8699 @@ -198521,18 +202540,24 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8938 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9479 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WaterCooler entities: - uid: 593 @@ -198735,6 +202760,11 @@ entities: - type: Transform pos: 43.5,-35.5 parent: 2 + - uid: 31112 + components: + - type: Transform + pos: 49.5,21.5 + parent: 2 - proto: WeaponDisabler entities: - uid: 28507 @@ -198763,14 +202793,159 @@ entities: - type: Transform pos: 48.66992,-38.664413 parent: 2 +- proto: WeaponEnergyTurretAI + entities: + - uid: 17458 + components: + - type: Transform + pos: 60.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12911 + - uid: 24379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12911 + - uid: 30245 + components: + - type: Transform + pos: 63.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18428 + - 3208 + - uid: 31109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12911 + - uid: 31110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12911 +- proto: WeaponEnergyTurretAIControlPanel + entities: + - uid: 3208 + components: + - type: MetaData + name: AI bridge turret control + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,13.5 + parent: 2 + - type: DeviceList + devices: + - 30245 + - uid: 12911 + components: + - type: MetaData + name: AI turret control + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 17458 + - 24379 + - 31109 + - 31110 + - uid: 18428 + components: + - type: MetaData + name: AI bridge turret + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,5.5 + parent: 2 + - type: DeviceList + devices: + - 30245 - proto: WeaponEnergyTurretSecurity entities: + - uid: 21076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12903 - uid: 30411 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-0.5 parent: 21002 + - type: DeviceNetwork + deviceLists: + - 31093 + - 31090 + - 31091 + - 31092 +- proto: WeaponEnergyTurretSecurityControlPanel + entities: + - uid: 12903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-18.5 + parent: 2 + - type: DeviceList + devices: + - 21076 + - uid: 31090 + components: + - type: Transform + pos: -0.5,2.5 + parent: 21002 + - type: DeviceList + devices: + - 30411 + - uid: 31091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,1.5 + parent: 21002 + - type: DeviceList + devices: + - 30411 + - uid: 31092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 21002 + - type: DeviceList + devices: + - 30411 + - uid: 31093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 21002 + - type: DeviceList + devices: + - 30411 - proto: WeaponGrapplingGun entities: - uid: 10217 @@ -198909,38 +203084,6 @@ entities: rot: -1.5707963267948966 rad pos: 42.421173,-41.240723 parent: 2 -- proto: WeaponTurretSyndicateBroken - entities: - - uid: 20501 - components: - - type: Transform - pos: 63.5,8.5 - parent: 2 - - uid: 28812 - components: - - type: Transform - pos: 48.5,22.5 - parent: 2 - - uid: 28813 - components: - - type: Transform - pos: 48.5,13.5 - parent: 2 - - uid: 28814 - components: - - type: Transform - pos: 48.5,18.5 - parent: 2 - - uid: 29833 - components: - - type: Transform - pos: 54.5,13.5 - parent: 2 - - uid: 30245 - components: - - type: Transform - pos: 54.5,22.5 - parent: 2 - proto: WeldingFuelTankFull entities: - uid: 4298 @@ -199216,17 +203359,6 @@ entities: parent: 2 - proto: WindoorSecureCommandLocked entities: - - uid: 12796 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,16.5 - parent: 2 - - uid: 12841 - components: - - type: Transform - pos: 51.5,21.5 - parent: 2 - uid: 30289 components: - type: Transform @@ -200564,16 +204696,6 @@ entities: - type: Transform pos: 7.5,2.5 parent: 21002 - - uid: 21060 - components: - - type: Transform - pos: 2.5,4.5 - parent: 21002 - - uid: 21061 - components: - - type: Transform - pos: 3.5,4.5 - parent: 21002 - uid: 22277 components: - type: Transform @@ -200705,7 +204827,7 @@ entities: pos: 24.5,2.5 parent: 21002 - type: Door - secondsUntilStateChange: -660121.25 + secondsUntilStateChange: -685379.4 state: Opening - uid: 28863 components: diff --git a/Resources/Maps/packed.yml b/Resources/Maps/packed.yml index 69c83395d1..c371d2f04c 100644 --- a/Resources/Maps/packed.yml +++ b/Resources/Maps/packed.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Map - engineVersion: 264.0.0 + engineVersion: 265.0.0 forkId: "" forkVersion: "" - time: 07/22/2025 16:27:25 - entityCount: 15464 + time: 08/17/2025 18:39:31 + entityCount: 15905 maps: - 126 grids: @@ -15,12 +15,15 @@ nullspace: [] tilemap: 0: Space 3: FloorArcadeRed + 11: FloorAstroAsteroidSandBorderless + 7: FloorAstroGrass 14: FloorBar 16: FloorBlue 17: FloorBlueCircuit 21: FloorCarpetOffice 29: FloorDark 1: FloorDarkDiagonal + 13: FloorDarkMini 34: FloorDarkMono 41: FloorEighties 44: FloorFreezer @@ -36,6 +39,7 @@ tilemap: 80: FloorShowroom 91: FloorSteel 5: FloorSteelCheckerDark + 12: FloorSteelDamaged 98: FloorSteelDirty 100: FloorSteelLime 101: FloorSteelMini @@ -43,11 +47,14 @@ tilemap: 106: FloorTechMaint 107: FloorTechMaint2 6: FloorTechMaint3 + 8: FloorTechMaintDark 110: FloorWhite 114: FloorWhiteMini + 9: FloorWhitePlastic 120: FloorWood 122: Lattice 123: Plating + 10: PlatingDamaged entities: - proto: "" entities: @@ -73,19 +80,19 @@ entities: version: 7 0,-1: ind: 0,-1 - tiles: ewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAMAHQAAAAADAB0AAAAAAwAdAAAAAAEAHQAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAMAHQAAAAADAB0AAAAAAgAdAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAADAB0AAAAAAQAdAAAAAAMAHQAAAAADAB0AAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAMAHQAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAABAB0AAAAAAgAdAAAAAAEAHQAAAAABAB0AAAAAAwB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAQAdAAAAAAIAHQAAAAAAAB0AAAAAAAAdAAAAAAIAewAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAOgAAAAAAADoAAAAAAAA6AAAAAAAAOgAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAACAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAAAAFsAAAAAAAB7AAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAIAHQAAAAAAAB0AAAAAAQB7AAAAAAAAHQAAAAACAB0AAAAAAgBrAAAAAAAAewAAAAAAAHsAAAAAAAA6AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAMAewAAAAAAAB0AAAAAAwAdAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAOgAAAAAAAFsAAAAAAABbAAAAAAMAWwAAAAABAHsAAAAAAAAdAAAAAAMAHQAAAAACAHsAAAAAAABbAAAAAAIAWwAAAAAAAB0AAAAAAgAdAAAAAAAAHQAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAADAB0AAAAAAQB7AAAAAAAAWwAAAAADAFsAAAAAAgB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAMAWwAAAAAAAFsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAMAWwAAAAACAFsAAAAAAgBbAAAAAAIAWwAAAAACAFsAAAAAAwBbAAAAAAEAWwAAAAABAFsAAAAAAgBbAAAAAAAAWwAAAAABAFsAAAAAAQBbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAEAWwAAAAADAFsAAAAAAwBbAAAAAAEAWwAAAAADAFsAAAAAAQBbAAAAAAMAWwAAAAAAAA== + tiles: ewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAMAHQAAAAADAB0AAAAAAwAdAAAAAAEAHQAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAMAHQAAAAADAB0AAAAAAgAdAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAADAB0AAAAAAQAdAAAAAAMAHQAAAAADAB0AAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAMAHQAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAABAB0AAAAAAgAdAAAAAAEAHQAAAAABAB0AAAAAAwB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAQAdAAAAAAIAHQAAAAAAAB0AAAAAAAAdAAAAAAIAewAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAOgAAAAAAADoAAAAAAAA6AAAAAAAAOgAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAACAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAAAAFsAAAAAAAB7AAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAIAHQAAAAAAAB0AAAAAAQB7AAAAAAAAHQAAAAACAB0AAAAAAgBrAAAAAAAAewAAAAAAAHsAAAAAAAA6AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAMAewAAAAAAAB0AAAAAAwAdAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAOgAAAAAAAFsAAAAAAABbAAAAAAMAWwAAAAABAHsAAAAAAAAdAAAAAAMAHQAAAAACAHsAAAAAAABbAAAAAAIAWwAAAAAAAB0AAAAAAgAdAAAAAAAAHQAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAADAB0AAAAAAQB7AAAAAAAAWwAAAAADAFsAAAAAAgB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAMAWwAAAAAAAFsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAMAWwAAAAACAFsAAAAAAgBbAAAAAAIAWwAAAAACAFsAAAAAAwBbAAAAAAEAWwAAAAABAFsAAAAAAgBbAAAAAAAAWwAAAAABAFsAAAAAAQBbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAEAWwAAAAADAFsAAAAAAwBbAAAAAAEAWwAAAAADAFsAAAAAAQBbAAAAAAMAWwAAAAAAAA== version: 7 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAGoAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAQB7AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAFsAAAAAAABbAAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAABAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAAHsAAAAAAAAiAAAAAAIAWwAAAAADAFsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAGoAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAQB7AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAFsAAAAAAABbAAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAABAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAAHsAAAAAAAAiAAAAAAIAWwAAAAADAFsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAA== version: 7 0,-2: ind: 0,-2 - tiles: ewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAEAWwAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAABbAAAAAAMAWwAAAAACAFsAAAAAAgB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAABqAAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAIAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAEAWwAAAAACAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAwB6AAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAGoAAAAAAABrAAAAAAAAagAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAABrAAAAAAAAawAAAAAAAGsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAagAAAAAAAGsAAAAAAABqAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAA== + tiles: ewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAEAWwAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAABbAAAAAAMAWwAAAAACAFsAAAAAAgB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAABqAAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAIAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAEAWwAAAAACAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAwB6AAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAGoAAAAAAABrAAAAAAAAagAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAABrAAAAAAAAawAAAAAAAGsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAagAAAAAAAGsAAAAAAABqAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAA== version: 7 0,1: ind: 0,1 - tiles: egAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB4AAAAAAIAeAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAMAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAHQAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHgAAAAAAgB4AAAAAAAAeAAAAAAAAHgAAAAAAQB4AAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB4AAAAAAEAeAAAAAACAHgAAAAAAAB4AAAAAAMAeAAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAADAHsAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAgBbAAAAAAIAWwAAAAABAFsAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAAAAFsAAAAAAgBbAAAAAAEAWwAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAQBbAAAAAAIAWwAAAAAAAFsAAAAAAQBbAAAAAAMAWwAAAAADAFsAAAAAAABbAAAAAAAAWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAADAFsAAAAAAwBbAAAAAAEAWwAAAAACAFsAAAAAAQBbAAAAAAEAWwAAAAACAFsAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAADAFsAAAAAAQBbAAAAAAAAWwAAAAAAAFsAAAAAAgBbAAAAAAMAWwAAAAADAFsAAAAAAgBbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAMAWwAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAAAWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAEAWwAAAAABAFsAAAAAAgBbAAAAAAMAWwAAAAAAAFsAAAAAAgBbAAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAWwAAAAADAFsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAEAWwAAAAADAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAEAWwAAAAAAAFsAAAAAAwBbAAAAAAAAWwAAAAABAFsAAAAAAQBrAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAwB7AAAAAAAAHQAAAAABAB0AAAAAAAAdAAAAAAIAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAAAAFsAAAAAAQBbAAAAAAEAewAAAAAAACIAAAAAAwAiAAAAAAEAIgAAAAACAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAACAFsAAAAAAgBbAAAAAAAAWwAAAAACAHsAAAAAAAAiAAAAAAEAIgAAAAADACIAAAAAAQB7AAAAAAAAewAAAAAAAA== + tiles: egAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB4AAAAAAIAeAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAMAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAHQAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHgAAAAAAgB4AAAAAAAAeAAAAAAAAHgAAAAAAQB4AAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB4AAAAAAEAeAAAAAACAHgAAAAAAAB4AAAAAAMAeAAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAADAHsAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAgBbAAAAAAIAWwAAAAABAFsAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAAAAFsAAAAAAgBbAAAAAAEAWwAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAQBbAAAAAAIAWwAAAAAAAFsAAAAAAQBbAAAAAAMAWwAAAAADAFsAAAAAAABbAAAAAAAAWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAADAFsAAAAAAwBbAAAAAAEAWwAAAAACAFsAAAAAAQBbAAAAAAEAWwAAAAACAFsAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAADAFsAAAAAAQBbAAAAAAAAWwAAAAAAAFsAAAAAAgBbAAAAAAMAWwAAAAADAFsAAAAAAgBbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAMAWwAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAAAWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAEAWwAAAAABAFsAAAAAAgBbAAAAAAMAWwAAAAAAAFsAAAAAAgBbAAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAWwAAAAADAFsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAEAWwAAAAADAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAEAWwAAAAAAAFsAAAAAAwBbAAAAAAAAWwAAAAABAFsAAAAAAQBrAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAABAB0AAAAAAAAdAAAAAAIAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAAAAFsAAAAAAQBbAAAAAAEAewAAAAAAACIAAAAAAwAiAAAAAAEAIgAAAAACAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAACAFsAAAAAAgBbAAAAAAAAWwAAAAACAHsAAAAAAAAiAAAAAAEAIgAAAAADACIAAAAAAQB7AAAAAAAAewAAAAAAAA== version: 7 1,0: ind: 1,0 @@ -93,15 +100,15 @@ entities: version: 7 1,-1: ind: 1,-1 - tiles: ewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAIAWwAAAAADAB0AAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAAAWwAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAACAHsAAAAAAABbAAAAAAEAWwAAAAACAFsAAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAACAHgAAAAAAAB4AAAAAAAAHQAAAAABAB0AAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAQBbAAAAAAIAewAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAwB4AAAAAAIAeAAAAAABAB0AAAAAAAAdAAAAAAMAHQAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAACAHsAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAMAeAAAAAAAAHgAAAAAAQAdAAAAAAEAHQAAAAADAB0AAAAAAQBbAAAAAAAAWwAAAAADAFsAAAAAAgAdAAAAAAMALAAAAAAAACwAAAAAAAAsAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAABAHgAAAAAAAB4AAAAAAAAHQAAAAACAB0AAAAAAgB7AAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAEAewAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAIAWwAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAMAWwAAAAACAFsAAAAAAAB7AAAAAAAAPgAAAAAAAD4AAAAAAAAOAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAwBbAAAAAAEAewAAAAAAAD4AAAAAAAA+AAAAAAAADgAAAAACAB0AAAAAAgAdAAAAAAAAeAAAAAACAHgAAAAAAwB4AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAABQAAAAACAFsAAAAAAQBbAAAAAAMAWwAAAAABAFsAAAAAAwAOAAAAAAMADgAAAAABAA4AAAAAAwAdAAAAAAIAHQAAAAADAHgAAAAAAAB4AAAAAAAAeAAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAAUAAAAAAwBbAAAAAAIAWwAAAAADAFsAAAAAAAB7AAAAAAAADgAAAAABAA4AAAAAAAAOAAAAAAMAHQAAAAAAAB0AAAAAAwB4AAAAAAEAeAAAAAADAHgAAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAABbAAAAAAIAewAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAFsAAAAAAAB7AAAAAAAAeAAAAAABAHgAAAAAAgB4AAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAIAWwAAAAACAHsAAAAAAAAOAAAAAAMADgAAAAAAAA4AAAAAAgBbAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAACAFsAAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAgBbAAAAAAIAWwAAAAADAFsAAAAAAABbAAAAAAMAWwAAAAAAAFsAAAAAAwBbAAAAAAAAWwAAAAACAFsAAAAAAgBbAAAAAAAAWwAAAAACAFsAAAAAAgBbAAAAAAEAWwAAAAABAA== + tiles: EQAAAAAAABEAAAAAAAAdAAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAIAWwAAAAADAB0AAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAAAWwAAAAACAHsAAAAAAAB7AAAAAAAAHQAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAACAHsAAAAAAABbAAAAAAEAWwAAAAACAFsAAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAACAHgAAAAAAAB4AAAAAAAAHQAAAAABAB0AAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAQBbAAAAAAIAewAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAwB4AAAAAAIAeAAAAAABAB0AAAAAAAAdAAAAAAMAHQAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAACAHsAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAMAeAAAAAAAAHgAAAAAAQAdAAAAAAEAHQAAAAADAB0AAAAAAQBbAAAAAAAAWwAAAAADAFsAAAAAAgAdAAAAAAMALAAAAAAAACwAAAAAAAAsAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAABAHgAAAAAAAB4AAAAAAAAHQAAAAACAB0AAAAAAgB7AAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAEAewAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAIAWwAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAMAWwAAAAACAFsAAAAAAAB7AAAAAAAAPgAAAAAAAD4AAAAAAAAOAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAwBbAAAAAAEAewAAAAAAAD4AAAAAAAA+AAAAAAAADgAAAAACAB0AAAAAAgAdAAAAAAAAeAAAAAACAHgAAAAAAwB4AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAABQAAAAACAFsAAAAAAQBbAAAAAAMAWwAAAAABAFsAAAAAAwAOAAAAAAMADgAAAAABAA4AAAAAAwAdAAAAAAIAHQAAAAADAHgAAAAAAAB4AAAAAAAAeAAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAAUAAAAAAwBbAAAAAAIAWwAAAAADAFsAAAAAAAB7AAAAAAAADgAAAAABAA4AAAAAAAAOAAAAAAMAHQAAAAAAAB0AAAAAAwB4AAAAAAEAeAAAAAADAHgAAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAABbAAAAAAIAewAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAFsAAAAAAAB7AAAAAAAAeAAAAAABAHgAAAAAAgB4AAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAIAWwAAAAACAHsAAAAAAAAOAAAAAAMADgAAAAAAAA4AAAAAAgBbAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAACAFsAAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAgBbAAAAAAIAWwAAAAADAFsAAAAAAABbAAAAAAMAWwAAAAAAAFsAAAAAAwBbAAAAAAAAWwAAAAACAFsAAAAAAgBbAAAAAAAAWwAAAAACAFsAAAAAAgBbAAAAAAEAWwAAAAABAA== version: 7 1,-2: ind: 1,-2 - tiles: agAAAAAAAFsAAAAAAwBbAAAAAAEAewAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAMAWwAAAAADAFsAAAAAAwBbAAAAAAAAWwAAAAABAFsAAAAAAQBbAAAAAAEAWwAAAAABAHsAAAAAAABbAAAAAAIAWwAAAAACAHsAAAAAAABbAAAAAAEAWwAAAAACAFsAAAAAAgBbAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAwB7AAAAAAAAWwAAAAADAFsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAMAWwAAAAABAFsAAAAAAgBbAAAAAAEAWwAAAAACAFsAAAAAAwBbAAAAAAAAWwAAAAADAFsAAAAAAQBbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAMAWwAAAAADAFsAAAAAAQBbAAAAAAEAWwAAAAACAFsAAAAAAQBbAAAAAAIAWwAAAAACAFsAAAAAAgBbAAAAAAIAWwAAAAAAAFsAAAAAAQBbAAAAAAAAewAAAAAAAFsAAAAAAABbAAAAAAIAWwAAAAADAHsAAAAAAABbAAAAAAEAWwAAAAADAFsAAAAAAwBbAAAAAAIAWwAAAAABAFsAAAAAAQBbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAEAWwAAAAADAHsAAAAAAAB7AAAAAAAAWwAAAAABAHsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAEAWwAAAAADAFsAAAAAAQBbAAAAAAEAWwAAAAACAFsAAAAAAgBbAAAAAAMAWwAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAEAWwAAAAABAFsAAAAAAQBbAAAAAAMAWwAAAAADAFsAAAAAAABbAAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAMAWwAAAAAAAFsAAAAAAABbAAAAAAEAWwAAAAADAFsAAAAAAwBbAAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAIAWwAAAAACAFsAAAAAAwBbAAAAAAEAWwAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAwBbAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAFsAAAAAAABbAAAAAAIAWwAAAAACAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAACAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAwBbAAAAAAMAWwAAAAADAB0AAAAAAwB7AAAAAAAAWwAAAAABAFsAAAAAAwBbAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAABEAAAAAAAB7AAAAAAAAHQAAAAACAHsAAAAAAABbAAAAAAIAWwAAAAADAFsAAAAAAAAdAAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAMAWwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAARAAAAAAAAawAAAAAAAB0AAAAAAwB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAIAHQAAAAACAB0AAAAAAQBbAAAAAAEAWwAAAAACAFsAAAAAAQB7AAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAEAEQAAAAAAAHsAAAAAAAAdAAAAAAEAewAAAAAAAFsAAAAAAgBbAAAAAAEAWwAAAAABAB0AAAAAAwB7AAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAMAWwAAAAAAAFsAAAAAAwBbAAAAAAAAWwAAAAABAA== + tiles: agAAAAAAAFsAAAAAAwBbAAAAAAEAewAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAMAWwAAAAADAFsAAAAAAwBbAAAAAAAAWwAAAAABAFsAAAAAAQBbAAAAAAEAWwAAAAABAHsAAAAAAABbAAAAAAIAWwAAAAACAHsAAAAAAABbAAAAAAEAWwAAAAACAFsAAAAAAgBbAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAwB7AAAAAAAAWwAAAAADAFsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAMAWwAAAAABAFsAAAAAAgBbAAAAAAEAWwAAAAACAFsAAAAAAwBbAAAAAAAAWwAAAAADAFsAAAAAAQBbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAMAWwAAAAADAFsAAAAAAQBbAAAAAAEAWwAAAAACAFsAAAAAAQBbAAAAAAIAWwAAAAACAFsAAAAAAgBbAAAAAAIAWwAAAAAAAFsAAAAAAQBbAAAAAAAAewAAAAAAAFsAAAAAAABbAAAAAAIAWwAAAAADAHsAAAAAAABbAAAAAAEAWwAAAAADAFsAAAAAAwBbAAAAAAIAWwAAAAABAFsAAAAAAQBbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAEAWwAAAAADAHsAAAAAAAB7AAAAAAAAWwAAAAABAHsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAEAWwAAAAADAFsAAAAAAQBbAAAAAAEAWwAAAAACAFsAAAAAAgBbAAAAAAMAWwAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAEAWwAAAAABAFsAAAAAAQBbAAAAAAMAWwAAAAADAFsAAAAAAABbAAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAMAWwAAAAAAAFsAAAAAAABbAAAAAAEAWwAAAAADAFsAAAAAAwBbAAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAIAWwAAAAACAFsAAAAAAwBbAAAAAAEAWwAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAwBbAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAFsAAAAAAABbAAAAAAIAWwAAAAACAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAACAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAEQAAAAAAABEAAAAAAAAdAAAAAAAAewAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAB0AAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAwBbAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHsAAAAAAABbAAAAAAIAWwAAAAADAFsAAAAAAAAdAAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAMAWwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAARAAAAAAAAEQAAAAAAAB0AAAAAAwB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAIAHQAAAAACAB0AAAAAAQBbAAAAAAEAWwAAAAACAFsAAAAAAQB7AAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAEAWwAAAAABAB0AAAAAAwB7AAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAMAWwAAAAAAAFsAAAAAAwBbAAAAAAAAWwAAAAABAA== version: 7 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHsAAAAAAAB4AAAAAAEAeAAAAAABAHgAAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB7AAAAAAAAeAAAAAADAHgAAAAAAAB4AAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAewAAAAAAAHgAAAAAAQB4AAAAAAEAeAAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAwB7AAAAAAAAegAAAAAAAHsAAAAAAABbAAAAAAIAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAAdAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAAAHQAAAAADAHsAAAAAAABbAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAHgAAAAAAgB4AAAAAAMAeAAAAAADAB0AAAAAAQB7AAAAAAAAWwAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAB4AAAAAAIAeAAAAAADAHgAAAAAAgAdAAAAAAMAHQAAAAABAFsAAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAeAAAAAAAAHgAAAAAAQB4AAAAAAIAHQAAAAADAHsAAAAAAABbAAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHsAAAAAAAB4AAAAAAEAeAAAAAABAHgAAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB7AAAAAAAAeAAAAAADAHgAAAAAAAB4AAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAewAAAAAAAHgAAAAAAQB4AAAAAAEAeAAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAwB7AAAAAAAAegAAAAAAAHsAAAAAAABbAAAAAAIAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAAdAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAAAHQAAAAADAHsAAAAAAABbAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAHgAAAAAAgB4AAAAAAMAeAAAAAADAB0AAAAAAQB7AAAAAAAAWwAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAB4AAAAAAIAeAAAAAADAHgAAAAAAgAdAAAAAAMAHQAAAAABAFsAAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAeAAAAAAAAHgAAAAAAQB4AAAAAAIAHQAAAAADAHsAAAAAAABbAAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAA== version: 7 1,-3: ind: 1,-3 @@ -117,15 +124,15 @@ entities: version: 7 1,1: ind: 1,1 - tiles: eAAAAAABAHsAAAAAAAAFAAAAAAEAewAAAAAAAHsAAAAAAABbAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAwB7AAAAAAAABQAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAABAHsAAAAAAABbAAAAAAMAWwAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAEAewAAAAAAAAUAAAAAAQBbAAAAAAIAWwAAAAAAAFsAAAAAAQB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAwBbAAAAAAMAWwAAAAACAFsAAAAAAQBbAAAAAAIAWwAAAAAAAFsAAAAAAABbAAAAAAMAWwAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAABAHsAAAAAAABbAAAAAAMAWwAAAAADAFsAAAAAAQBbAAAAAAMAWwAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAADAFsAAAAAAwBbAAAAAAIAWwAAAAABAFsAAAAAAQBbAAAAAAEAWwAAAAADAFsAAAAAAgB7AAAAAAAAWwAAAAAAAFsAAAAAAwB7AAAAAAAAewAAAAAAAFsAAAAAAwBbAAAAAAIAWwAAAAABAFsAAAAAAABbAAAAAAMAWwAAAAACAFsAAAAAAwBbAAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAgBbAAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAMAWwAAAAACAFsAAAAAAwBbAAAAAAIAWwAAAAADAFsAAAAAAwBbAAAAAAMAWwAAAAABAFsAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAACAHsAAAAAAABbAAAAAAMAWwAAAAACAFsAAAAAAgBbAAAAAAMAWwAAAAAAAFsAAAAAAwBbAAAAAAAAWwAAAAADAFsAAAAAAgBbAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAACAFsAAAAAAABbAAAAAAAAWwAAAAABAB0AAAAAAgAdAAAAAAEAHQAAAAABAHsAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAIAWwAAAAADAHsAAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAgB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAAAewAAAAAAAB0AAAAAAQAdAAAAAAAAHQAAAAADAHsAAAAAAAB4AAAAAAIAeAAAAAACAHgAAAAAAgB4AAAAAAMAeAAAAAAAAHgAAAAAAAB4AAAAAAEAWwAAAAADAFsAAAAAAQBbAAAAAAIAWwAAAAAAAHsAAAAAAAAdAAAAAAIAHQAAAAAAAB0AAAAAAwB7AAAAAAAAeAAAAAAAAHgAAAAAAgB4AAAAAAIAeAAAAAAAAHgAAAAAAAB4AAAAAAIAeAAAAAADAFsAAAAAAgBbAAAAAAAAWwAAAAADAFsAAAAAAwB7AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAMAewAAAAAAAHgAAAAAAgB4AAAAAAIAeAAAAAACAHgAAAAAAAB4AAAAAAMAeAAAAAACAHgAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAA== + tiles: eAAAAAABAHsAAAAAAAAFAAAAAAEAewAAAAAAAHsAAAAAAABbAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAwB7AAAAAAAABQAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAABAHsAAAAAAAAIAAAAAAAACAAAAAAAAB0AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAEAewAAAAAAAAUAAAAAAQBbAAAAAAIAWwAAAAAAAFsAAAAAAQB7AAAAAAAACAAAAAAAAAgAAAAAAAAdAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAMAWwAAAAACAFsAAAAAAQBbAAAAAAIAWwAAAAAAAFsAAAAAAABbAAAAAAMAWwAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAABAHsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAMAWwAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAADAFsAAAAAAwBbAAAAAAIAWwAAAAABAFsAAAAAAQBbAAAAAAEAWwAAAAADAFsAAAAAAgB7AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAewAAAAAAAFsAAAAAAwBbAAAAAAIAWwAAAAABAFsAAAAAAABbAAAAAAMAWwAAAAACAFsAAAAAAwBbAAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAEAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAgBbAAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAMAWwAAAAACAFsAAAAAAwBbAAAAAAIAWwAAAAADAHsAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAACAHsAAAAAAABbAAAAAAMAWwAAAAACAFsAAAAAAgBbAAAAAAMAWwAAAAAAAFsAAAAAAwBrAAAAAAAAHQAAAAAAAAUAAAAAAAAFAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAACAFsAAAAAAABbAAAAAAAAewAAAAAAAB0AAAAAAgAdAAAAAAAAHQAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAIAWwAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAgBrAAAAAAAAHQAAAAAAAB0AAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAAAawAAAAAAAB0AAAAAAQAdAAAAAAAAawAAAAAAAHsAAAAAAAB4AAAAAAIAeAAAAAACAHgAAAAAAgB4AAAAAAMAeAAAAAAAAHgAAAAAAAB4AAAAAAEAeAAAAAAAAFsAAAAAAQBbAAAAAAIAWwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAAAAHgAAAAAAgB4AAAAAAIAeAAAAAAAAHgAAAAAAAB4AAAAAAIAeAAAAAADAHgAAAAAAABbAAAAAAAAWwAAAAADAFsAAAAAAwBbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAewAAAAAAAHgAAAAAAgB4AAAAAAIAeAAAAAACAHgAAAAAAAB4AAAAAAMAeAAAAAACAHgAAAAAAAB4AAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAA== version: 7 2,0: ind: 2,0 - tiles: WwAAAAACAFsAAAAAAgBbAAAAAAMAWwAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAEAWwAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAAAAFsAAAAAAgBbAAAAAAMAWwAAAAADAFsAAAAAAABbAAAAAAMAWwAAAAAAAFsAAAAAAwBbAAAAAAIAWwAAAAACAFsAAAAAAABbAAAAAAIAewAAAAAAAHsAAAAAAABbAAAAAAMAewAAAAAAAHsAAAAAAAAFAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAMAWwAAAAACAHsAAAAAAABuAAAAAAMAbgAAAAABAG4AAAAAAABuAAAAAAMAewAAAAAAAHsAAAAAAAA+AAAAAAAAewAAAAAAAD4AAAAAAAB7AAAAAAAAPgAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAABAFsAAAAAAAB7AAAAAAAAbgAAAAAAAG4AAAAAAABuAAAAAAEAbgAAAAACAB0AAAAAAQB7AAAAAAAAHQAAAAADAHsAAAAAAAAdAAAAAAEAewAAAAAAAD4AAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAEAewAAAAAAAG4AAAAAAgBuAAAAAAEAbgAAAAADAG4AAAAAAwAdAAAAAAAAewAAAAAAAB0AAAAAAQAdAAAAAAEAHQAAAAABAB0AAAAAAAAdAAAAAAEAewAAAAAAAFsAAAAAAABbAAAAAAEAWwAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAPgAAAAAAAB0AAAAAAgAdAAAAAAMAHQAAAAADAB0AAAAAAQAdAAAAAAEAHQAAAAADAHsAAAAAAABbAAAAAAEAWwAAAAAAAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAD4AAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAQAdAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAIAWwAAAAABAFsAAAAAAABbAAAAAAEAawAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAAA+AAAAAAAAewAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAEAWwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAADAHsAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAMAHQAAAAACAHsAAAAAAABbAAAAAAIAWwAAAAADAFsAAAAAAgB7AAAAAAAANgAAAAAAADYAAAAAAAAdAAAAAAMAHQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAABbAAAAAAIAHQAAAAAAAB0AAAAAAwAdAAAAAAMAHQAAAAAAAB0AAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAFsAAAAAAABbAAAAAAMAWwAAAAAAAHsAAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAwAdAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAADAFsAAAAAAAB7AAAAAAAAawAAAAAAAGsAAAAAAAB7AAAAAAAAHQAAAAACAFsAAAAAAgBbAAAAAAIAWwAAAAACAFsAAAAAAABbAAAAAAIAWwAAAAACAFsAAAAAAQBbAAAAAAEAWwAAAAACAFsAAAAAAQBbAAAAAAIAWwAAAAABAFsAAAAAAwBbAAAAAAEAWwAAAAABAFsAAAAAAwBbAAAAAAEAWwAAAAABAFsAAAAAAwBbAAAAAAEAWwAAAAABAFsAAAAAAQBbAAAAAAEAWwAAAAABAFsAAAAAAQBbAAAAAAIAWwAAAAACAFsAAAAAAgBbAAAAAAMAWwAAAAABAFsAAAAAAgBbAAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAIAWwAAAAAAAFsAAAAAAwBbAAAAAAMAWwAAAAABAFsAAAAAAgBbAAAAAAMAWwAAAAADAFsAAAAAAABbAAAAAAEAWwAAAAABAFsAAAAAAABbAAAAAAEAWwAAAAACAA== + tiles: WwAAAAACAFsAAAAAAgBbAAAAAAMAWwAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAEAWwAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAAAAFsAAAAAAgBbAAAAAAMAWwAAAAADAFsAAAAAAABbAAAAAAMAWwAAAAAAAFsAAAAAAwBbAAAAAAIAWwAAAAACAFsAAAAAAABbAAAAAAIAewAAAAAAAHsAAAAAAABbAAAAAAMAewAAAAAAAHsAAAAAAAAFAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAMAWwAAAAACAHsAAAAAAABuAAAAAAMAbgAAAAABAG4AAAAAAABuAAAAAAMAewAAAAAAAHsAAAAAAAA+AAAAAAAAewAAAAAAAD4AAAAAAAB7AAAAAAAAPgAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAABAFsAAAAAAAB7AAAAAAAAbgAAAAAAAG4AAAAAAABuAAAAAAEAbgAAAAACAB0AAAAAAQB7AAAAAAAAHQAAAAADAHsAAAAAAAAdAAAAAAEAewAAAAAAAD4AAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAEAewAAAAAAAG4AAAAAAgBuAAAAAAEAbgAAAAADAG4AAAAAAwAdAAAAAAAAewAAAAAAAB0AAAAAAQAdAAAAAAEAHQAAAAABAB0AAAAAAAAdAAAAAAEAewAAAAAAAFsAAAAAAABbAAAAAAEAWwAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAPgAAAAAAAB0AAAAAAgAdAAAAAAMAHQAAAAADAB0AAAAAAQAdAAAAAAEAHQAAAAADAHsAAAAAAABbAAAAAAEAWwAAAAAAAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAD4AAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAQAdAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAIAWwAAAAABAFsAAAAAAABbAAAAAAEAawAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAAA+AAAAAAAAewAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAEAWwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAADAHsAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAMAHQAAAAACAHsAAAAAAABbAAAAAAIAWwAAAAADAFsAAAAAAgB7AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAABbAAAAAAIAHQAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAFsAAAAAAABbAAAAAAMAWwAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAADAFsAAAAAAAB7AAAAAAAAawAAAAAAAGsAAAAAAAB7AAAAAAAAHQAAAAACAFsAAAAAAgBbAAAAAAIAWwAAAAACAFsAAAAAAABbAAAAAAIAWwAAAAACAFsAAAAAAQBbAAAAAAEAWwAAAAACAFsAAAAAAQBbAAAAAAIAWwAAAAABAFsAAAAAAwBbAAAAAAEAWwAAAAABAFsAAAAAAwBbAAAAAAEAWwAAAAABAFsAAAAAAwBbAAAAAAEAWwAAAAABAFsAAAAAAQBbAAAAAAEAWwAAAAABAFsAAAAAAQBbAAAAAAIAWwAAAAACAFsAAAAAAgBbAAAAAAMAWwAAAAABAFsAAAAAAgBbAAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAIAWwAAAAAAAFsAAAAAAwBbAAAAAAMAWwAAAAABAFsAAAAAAgBbAAAAAAMAWwAAAAADAFsAAAAAAABbAAAAAAEAWwAAAAABAFsAAAAAAABbAAAAAAEAWwAAAAACAA== version: 7 2,-1: ind: 2,-1 - tiles: WwAAAAACAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAIATQAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAFsAAAAAAwBbAAAAAAAAewAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAHQAAAAACAE0AAAAAAAB7AAAAAAAAegAAAAAAAAAAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAADAFsAAAAAAQBbAAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAWwAAAAADAFsAAAAAAgBbAAAAAAAAWwAAAAACAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAAAdAAAAAAIAWwAAAAADAFsAAAAAAwBbAAAAAAAAWwAAAAACAFsAAAAAAAB7AAAAAAAAeAAAAAACAHgAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAMAewAAAAAAAC8AAAAAAAAvAAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAABAFsAAAAAAQBbAAAAAAEAeAAAAAACAHgAAAAAAwB4AAAAAAMAewAAAAAAAFsAAAAAAABbAAAAAAIAWwAAAAABAHsAAAAAAAAvAAAAAAAALwAAAAAAAHsAAAAAAAAdAAAAAAEAHQAAAAABAB0AAAAAAQAdAAAAAAMAewAAAAAAAB0AAAAAAwAdAAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAALwAAAAAAAC8AAAAAAAAOAAAAAAAADgAAAAADAA4AAAAAAwAOAAAAAAIADgAAAAABAB0AAAAAAwAdAAAAAAIAHQAAAAABAB0AAAAAAgBbAAAAAAMAWwAAAAACAFsAAAAAAABbAAAAAAEAWwAAAAAAAFsAAAAAAABbAAAAAAAADgAAAAABAA4AAAAAAwAOAAAAAAIADgAAAAACAA4AAAAAAgAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAEAWwAAAAABADoAAAAAAAA6AAAAAAAAOgAAAAAAADoAAAAAAAA6AAAAAAAAWwAAAAABAA4AAAAAAQAOAAAAAAMADgAAAAACAA4AAAAAAgAOAAAAAAIAHQAAAAACAB0AAAAAAgAdAAAAAAMAewAAAAAAAFsAAAAAAwA6AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAMAOgAAAAAAAFsAAAAAAQAOAAAAAAMADgAAAAACAA4AAAAAAQAOAAAAAAIADgAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAABAHsAAAAAAABbAAAAAAAAOgAAAAAAAB0AAAAAAQAdAAAAAAMAHQAAAAAAADoAAAAAAABbAAAAAAMADgAAAAACAA4AAAAAAgAOAAAAAAMADgAAAAABAA4AAAAAAgAdAAAAAAMAHQAAAAADAB0AAAAAAQAdAAAAAAEAWwAAAAACADoAAAAAAAA6AAAAAAAAOgAAAAAAADoAAAAAAAA6AAAAAAAAWwAAAAAAAA4AAAAAAgAOAAAAAAIADgAAAAACAA4AAAAAAAAOAAAAAAMAewAAAAAAAB0AAAAAAQAdAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAQB7AAAAAAAAOgAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAADAHsAAAAAAABbAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAEAWwAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAEAWwAAAAADAFsAAAAAAwBbAAAAAAAAWwAAAAACAFsAAAAAAgBbAAAAAAIAWwAAAAADAFsAAAAAAgBbAAAAAAIAWwAAAAACAFsAAAAAAgBbAAAAAAMAWwAAAAAAAA== + tiles: WwAAAAACAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAIATQAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAFsAAAAAAwBbAAAAAAAAewAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAHQAAAAACAE0AAAAAAAB7AAAAAAAAegAAAAAAAAAAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAADAFsAAAAAAQBbAAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAWwAAAAADAFsAAAAAAgBbAAAAAAAAWwAAAAACAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAAAdAAAAAAIAWwAAAAADAFsAAAAAAwBbAAAAAAAAWwAAAAACAFsAAAAAAAB4AAAAAAAAeAAAAAACAHgAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAMAewAAAAAAAC8AAAAAAAAvAAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAABAFsAAAAAAQBbAAAAAAEAeAAAAAACAHgAAAAAAwB4AAAAAAMAewAAAAAAAFsAAAAAAABbAAAAAAIAWwAAAAABAHsAAAAAAAAvAAAAAAAALwAAAAAAAHsAAAAAAAAdAAAAAAEAHQAAAAABAB0AAAAAAQAdAAAAAAMAewAAAAAAAB0AAAAAAwAdAAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAALwAAAAAAAC8AAAAAAAAOAAAAAAAADgAAAAADAA4AAAAAAwAOAAAAAAIADgAAAAABAB0AAAAAAwAdAAAAAAIAHQAAAAABAB0AAAAAAgBbAAAAAAMAWwAAAAACAFsAAAAAAABbAAAAAAEAWwAAAAAAAFsAAAAAAABbAAAAAAAADgAAAAABAA4AAAAAAwAOAAAAAAIADgAAAAACAA4AAAAAAgAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAEAWwAAAAABADoAAAAAAAA6AAAAAAAAOgAAAAAAADoAAAAAAAA6AAAAAAAAWwAAAAABAA4AAAAAAQAOAAAAAAMADgAAAAACAA4AAAAAAgAOAAAAAAIAHQAAAAACAB0AAAAAAgAdAAAAAAMAewAAAAAAAFsAAAAAAwA6AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAMAOgAAAAAAAFsAAAAAAQAOAAAAAAMADgAAAAACAA4AAAAAAQAOAAAAAAIADgAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAABAHsAAAAAAABbAAAAAAAAOgAAAAAAAB0AAAAAAQAdAAAAAAMAHQAAAAAAADoAAAAAAABbAAAAAAMADgAAAAACAA4AAAAAAgAOAAAAAAMADgAAAAABAA4AAAAAAgAdAAAAAAMAHQAAAAADAB0AAAAAAQAdAAAAAAEAWwAAAAACADoAAAAAAAA6AAAAAAAAOgAAAAAAADoAAAAAAAA6AAAAAAAAWwAAAAAAAA4AAAAAAgAOAAAAAAIADgAAAAACAA4AAAAAAAAOAAAAAAMAewAAAAAAAB0AAAAAAQAdAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAQB7AAAAAAAAOgAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAADAHsAAAAAAABbAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAEAWwAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAEAWwAAAAADAFsAAAAAAwBbAAAAAAAAWwAAAAACAFsAAAAAAgBbAAAAAAIAWwAAAAADAFsAAAAAAgBbAAAAAAIAWwAAAAACAFsAAAAAAgBbAAAAAAMAWwAAAAAAAA== version: 7 1,-4: ind: 1,-4 @@ -141,11 +148,11 @@ entities: version: 7 -1,-3: ind: -1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAA== version: 7 -2,-3: ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAA== version: 7 3,-1: ind: 3,-1 @@ -161,23 +168,23 @@ entities: version: 7 1,2: ind: 1,2 - tiles: ewAAAAAAAHgAAAAAAwB4AAAAAAMAeAAAAAABAHgAAAAAAAB4AAAAAAEAeAAAAAADAHgAAAAAAABbAAAAAAEAWwAAAAACAFsAAAAAAABbAAAAAAIAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAMAeAAAAAADAHgAAAAAAAB4AAAAAAEAeAAAAAACAHgAAAAAAAB4AAAAAAIAWwAAAAADAFsAAAAAAgBbAAAAAAIAWwAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAWwAAAAACAFsAAAAAAgBbAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAwBbAAAAAAMAWwAAAAAAAFsAAAAAAwBbAAAAAAAAWwAAAAADAFsAAAAAAgBbAAAAAAMAWwAAAAAAAFsAAAAAAgBbAAAAAAMAWwAAAAAAAHsAAAAAAAA2AAAAAAAANgAAAAAAAFsAAAAAAwBbAAAAAAEAWwAAAAACAFsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAAAdAAAAAAIAHQAAAAADAB0AAAAAAQB7AAAAAAAAWwAAAAACAFsAAAAAAwBbAAAAAAEAWwAAAAABAFsAAAAAAQBbAAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAAAewAAAAAAABEAAAAAAAARAAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAQB7AAAAAAAAHQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAIAHQAAAAADAB0AAAAAAgB7AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAACAB0AAAAAAQB7AAAAAAAAHQAAAAABAHgAAAAAAQB7AAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAEAewAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAAAdAAAAAAIAewAAAAAAAB0AAAAAAQB4AAAAAAEAewAAAAAAAB0AAAAAAQA2AAAAAAAAHQAAAAAAAHsAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAAAAHsAAAAAAAAdAAAAAAAAeAAAAAAAAHsAAAAAAAAdAAAAAAMANgAAAAAAAB0AAAAAAgB7AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAwB7AAAAAAAAHQAAAAADAHgAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAIAHQAAAAABAHsAAAAAAAB7AAAAAAAAHQAAAAADAHsAAAAAAAAdAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAMAHQAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAEAHQAAAAABAB0AAAAAAAAdAAAAAAMAewAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAEAHQAAAAADAB0AAAAAAwAdAAAAAAMAHQAAAAADAB0AAAAAAAAdAAAAAAEAHQAAAAACAB0AAAAAAQAAAAAAAAAAegAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAEAHQAAAAABAB0AAAAAAQAdAAAAAAMAHQAAAAACAB0AAAAAAAAdAAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAABAB0AAAAAAgAdAAAAAAEAHQAAAAACAB0AAAAAAQAdAAAAAAEAHQAAAAABAB0AAAAAAAAdAAAAAAAAHQAAAAABAA== + tiles: ewAAAAAAAHgAAAAAAwB4AAAAAAMAeAAAAAABAHgAAAAAAAB4AAAAAAEAeAAAAAADAHgAAAAAAAB4AAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAMAeAAAAAADAHgAAAAAAAB4AAAAAAEAeAAAAAACAHgAAAAAAAB4AAAAAAIAeAAAAAAAAFsAAAAAAgBbAAAAAAIAWwAAAAACAFsAAAAAAABbAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAWwAAAAACAFsAAAAAAgBbAAAAAAMAWwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAwBbAAAAAAMAWwAAAAAAAFsAAAAAAwBbAAAAAAAAWwAAAAADAFsAAAAAAgBbAAAAAAMAWwAAAAAAAFsAAAAAAgBbAAAAAAMAWwAAAAAAAFsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAwBbAAAAAAEAWwAAAAACAFsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAABbAAAAAAAAewAAAAAAAFsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAwBbAAAAAAEAWwAAAAABAFsAAAAAAQBbAAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAAAWwAAAAAAAHsAAAAAAABbAAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAQB7AAAAAAAAHQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAIAHQAAAAADAB0AAAAAAgB7AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAACAB0AAAAAAQB7AAAAAAAAeAAAAAAAAHgAAAAAAQB7AAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAEAewAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAAAdAAAAAAIAewAAAAAAAHgAAAAAAAB4AAAAAAEAewAAAAAAAB0AAAAAAQA2AAAAAAAAHQAAAAAAAHsAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAAAAHsAAAAAAAB4AAAAAAAAeAAAAAAAAHsAAAAAAAAdAAAAAAMANgAAAAAAAB0AAAAAAgB7AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAwB7AAAAAAAAeAAAAAAAAHgAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAIAHQAAAAABAHsAAAAAAAB7AAAAAAAAHQAAAAADAHsAAAAAAAAdAAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAMAHQAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAEAHQAAAAABAB0AAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAEAHQAAAAADAB0AAAAAAwAdAAAAAAMAHQAAAAADAB0AAAAAAAAdAAAAAAEAHQAAAAACAB0AAAAAAQAAAAAAAAAAegAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAEAHQAAAAABAB0AAAAAAQAdAAAAAAMAHQAAAAACAB0AAAAAAAAdAAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAABAB0AAAAAAgAdAAAAAAEAHQAAAAACAB0AAAAAAQAdAAAAAAEAHQAAAAABAB0AAAAAAAAdAAAAAAAAHQAAAAABAA== version: 7 2,1: ind: 2,1 - tiles: ewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAQB7AAAAAAAAewAAAAAAAFsAAAAAAwBbAAAAAAIAWwAAAAACAFsAAAAAAQBbAAAAAAEAWwAAAAAAAFsAAAAAAgAdAAAAAAIAHQAAAAACAB0AAAAAAAAdAAAAAAIAewAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHsAAAAAAABbAAAAAAIAWwAAAAADAFsAAAAAAgBbAAAAAAAAWwAAAAAAAFsAAAAAAQBbAAAAAAMAHQAAAAACAB0AAAAAAQAdAAAAAAAAHQAAAAACAHsAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAQBbAAAAAAEAWwAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAAAAB0AAAAAAQAdAAAAAAAAHQAAAAABAB0AAAAAAAB7AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAEAWwAAAAACAFsAAAAAAABbAAAAAAMAWwAAAAABAFsAAAAAAgB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHsAAAAAAABbAAAAAAAAewAAAAAAAGsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAQBbAAAAAAIAWwAAAAABAHsAAAAAAAAdAAAAAAEAHQAAAAADAHsAAAAAAAAdAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAQBbAAAAAAIAWwAAAAADAFsAAAAAAQAdAAAAAAMAHQAAAAACAB0AAAAAAAAdAAAAAAMAHQAAAAACAHsAAAAAAAAdAAAAAAEAHQAAAAACAB0AAAAAAgB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAADAFsAAAAAAwBbAAAAAAEAewAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAADAB0AAAAAAgAdAAAAAAMAewAAAAAAAHsAAAAAAABbAAAAAAMAWwAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAACAHsAAAAAAABNAAAAAAAAHQAAAAABAB0AAAAAAgBNAAAAAAAAewAAAAAAAB0AAAAAAwAdAAAAAAEAHQAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAACAB0AAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAwAdAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAwB7AAAAAAAAewAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAADAFsAAAAAAQAdAAAAAAAAewAAAAAAAE0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAgBNAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAAAAFsAAAAAAABbAAAAAAMAHQAAAAABAHsAAAAAAABNAAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAEATQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAwBbAAAAAAEAWwAAAAABAB0AAAAAAAB7AAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAMAWwAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAABAFsAAAAAAwBbAAAAAAAAWwAAAAADAFsAAAAAAABbAAAAAAEAWwAAAAACAFsAAAAAAwBbAAAAAAIAWwAAAAABAFsAAAAAAQBrAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAQBbAAAAAAEAWwAAAAABAFsAAAAAAwBbAAAAAAMAWwAAAAABAFsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAEAawAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAA== + tiles: ewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAwBbAAAAAAIAWwAAAAACAB0AAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB7AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAHQAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAAAAHsAAAAAAABbAAAAAAIAWwAAAAADAFsAAAAAAgAdAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAewAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAB0AAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAQBbAAAAAAEAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAawAAAAAAAB0AAAAAAAAdAAAAAAAAewAAAAAAAFsAAAAAAgB7AAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAawAAAAAAAFAAAAAAAABQAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHsAAAAAAABQAAAAAAAAUAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAFAAAAAAAABQAAAAAAAB0AAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAB7AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAewAAAAAAAB0AAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAAAdAAAAAAAAawAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAHQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAAAAFsAAAAAAAB7AAAAAAAAHQAAAAABAFsAAAAAAABbAAAAAAAAWwAAAAAAAB0AAAAAAAB7AAAAAAAACQAAAAAAAG4AAAAAAAAJAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAwBbAAAAAAEAewAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAewAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAABbAAAAAAMAWwAAAAADAFsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAAAWwAAAAADAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAAAAGsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAQBbAAAAAAEAWwAAAAABAFsAAAAAAwBbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAEAWwAAAAAAAFsAAAAAAABrAAAAAAAAWwAAAAAAAA== version: 7 2,2: ind: 2,2 - tiles: ewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAABAB0AAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAEAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAABrAAAAAAAANgAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAgAdAAAAAAAAHQAAAAABAHsAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAawAAAAAAAB0AAAAAAQB7AAAAAAAAewAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAARAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAwB4AAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAEAeAAAAAAAAHgAAAAAAgB4AAAAAAMAeAAAAAACAHgAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAACAHgAAAAAAAB4AAAAAAMAewAAAAAAAHgAAAAAAAB4AAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHgAAAAAAwB4AAAAAAEAeAAAAAACAHsAAAAAAAB4AAAAAAIAeAAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB4AAAAAAIAeAAAAAADAHgAAAAAAQB7AAAAAAAAHQAAAAAAAHgAAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAHQAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAQB7AAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAIAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAawAAAAAAAGoAAAAAAABqAAAAAAAAHQAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAA== + tiles: ewAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAAAAGoAAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAABAB0AAAAAAAB7AAAAAAAATQAAAAAAAB0AAAAAAAAdAAAAAAAAewAAAAAAAFsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHsAAAAAAABbAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAgAdAAAAAAAAHQAAAAABAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAB7AAAAAAAAWwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAewAAAAAAAFsAAAAAAAB7AAAAAAAAWwAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAAAAHgAAAAAAwB4AAAAAAEAewAAAAAAAFsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAAB4AAAAAAEAeAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAACAHgAAAAAAAB7AAAAAAAAeAAAAAAAAHgAAAAAAAB7AAAAAAAADAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAGsAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAwB4AAAAAAEAeAAAAAAAAHgAAAAAAAB4AAAAAAIAewAAAAAAAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB7AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAHQAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAYgAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAQB7AAAAAAAAAAAAAAAAAHsAAAAAAABiAAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAADAAAAAAAAGIAAAAAAABbAAAAAAAAewAAAAAAAFsAAAAAAAAdAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAIAewAAAAAAAAAAAAAAAAB7AAAAAAAAWwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAewAAAAAAAFsAAAAAAABbAAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAYgAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAA== version: 7 1,3: ind: 1,3 - tiles: AAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAIAHQAAAAADAB0AAAAAAwAdAAAAAAEAHQAAAAACAB0AAAAAAgAdAAAAAAMAHQAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAIAHQAAAAADAB0AAAAAAwAdAAAAAAEAHQAAAAACAB0AAAAAAgAdAAAAAAMAHQAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 2,3: ind: 2,3 - tiles: HQAAAAADAHsAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: HQAAAAADAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 4,-1: ind: 4,-1 @@ -185,59 +192,59 @@ entities: version: 7 4,-2: ind: 4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAwB4AAAAAAAAeAAAAAABAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAagAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAwB4AAAAAAAAeAAAAAABAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAagAAAAAAAA== version: 7 3,0: ind: 3,0 - tiles: bgAAAAABAG4AAAAAAABuAAAAAAMAbgAAAAACAG4AAAAAAwBuAAAAAAMAbgAAAAACAG4AAAAAAwBuAAAAAAMAHQAAAAABAB0AAAAAAQAdAAAAAAEAHQAAAAACAB0AAAAAAwBuAAAAAAAAbgAAAAAAAHsAAAAAAABuAAAAAAMAbgAAAAABAG4AAAAAAQB7AAAAAAAAewAAAAAAAG4AAAAAAQBuAAAAAAIAbgAAAAADAG4AAAAAAgBuAAAAAAIAbgAAAAAAAG4AAAAAAwBuAAAAAAIAbgAAAAADAG4AAAAAAQB7AAAAAAAAbgAAAAACAG4AAAAAAQBuAAAAAAEAbgAAAAAAAG4AAAAAAwBuAAAAAAEAbgAAAAAAAG4AAAAAAQBuAAAAAAEAbgAAAAADAG4AAAAAAABuAAAAAAEAbgAAAAACAG4AAAAAAwBuAAAAAAIAbgAAAAABAG4AAAAAAwBuAAAAAAEAbgAAAAACAG4AAAAAAQBuAAAAAAAAbgAAAAAAAG4AAAAAAQBuAAAAAAAAbgAAAAAAAG4AAAAAAQBuAAAAAAAAbgAAAAACAG4AAAAAAABuAAAAAAMAbgAAAAABAHsAAAAAAABuAAAAAAEAbgAAAAACAG4AAAAAAQBuAAAAAAIAbgAAAAABAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAbgAAAAACAG4AAAAAAgBuAAAAAAEAbgAAAAAAAG4AAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAGsAAAAAAABrAAAAAAAAHQAAAAABAG4AAAAAAABuAAAAAAEAbgAAAAABAHsAAAAAAAAdAAAAAAEAHQAAAAAAAHsAAAAAAAAdAAAAAAAAeAAAAAADAHgAAAAAAwB4AAAAAAMAHQAAAAAAAGsAAAAAAABrAAAAAAAAawAAAAAAAB0AAAAAAwBuAAAAAAEAbgAAAAAAAG4AAAAAAgB7AAAAAAAAHQAAAAABAGsAAAAAAAB7AAAAAAAAHQAAAAABAHgAAAAAAQB4AAAAAAMAeAAAAAACAB0AAAAAAgAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAABAB0AAAAAAAAdAAAAAAAAewAAAAAAAB0AAAAAAABrAAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAwAdAAAAAAMAHQAAAAADAB0AAAAAAQAdAAAAAAIAHQAAAAABAB0AAAAAAgAdAAAAAAAAHQAAAAADAHsAAAAAAAAdAAAAAAMAawAAAAAAAHsAAAAAAAAdAAAAAAEAHQAAAAADAB0AAAAAAAAdAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAbgAAAAACAHsAAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAEAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAHQAAAAADAG4AAAAAAQBuAAAAAAIAbgAAAAADAG4AAAAAAwBuAAAAAAIAbgAAAAABAG4AAAAAAwBuAAAAAAEAbgAAAAACAG4AAAAAAABuAAAAAAMAbgAAAAADAG4AAAAAAABuAAAAAAIAbgAAAAAAAB0AAAAAAgBuAAAAAAEAbgAAAAABAG4AAAAAAQBuAAAAAAEAbgAAAAADAG4AAAAAAwBuAAAAAAAAbgAAAAACAG4AAAAAAwBuAAAAAAAAewAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAAdAAAAAAMAbgAAAAAAAG4AAAAAAgBuAAAAAAMAbgAAAAABAG4AAAAAAgBuAAAAAAEAbgAAAAACAG4AAAAAAgBuAAAAAAEAbgAAAAABAA== + tiles: bgAAAAABAG4AAAAAAABuAAAAAAMAbgAAAAACAG4AAAAAAwBuAAAAAAMAbgAAAAACAG4AAAAAAwBuAAAAAAMAHQAAAAABAB0AAAAAAQAdAAAAAAEAHQAAAAACAB0AAAAAAwBuAAAAAAAAbgAAAAAAAHsAAAAAAABuAAAAAAMAbgAAAAABAG4AAAAAAQB7AAAAAAAAewAAAAAAAG4AAAAAAQBuAAAAAAIAbgAAAAADAG4AAAAAAgBuAAAAAAIAbgAAAAAAAG4AAAAAAwBuAAAAAAIAbgAAAAADAG4AAAAAAQB7AAAAAAAAbgAAAAACAG4AAAAAAQBuAAAAAAEAbgAAAAAAAG4AAAAAAwBuAAAAAAEAbgAAAAAAAG4AAAAAAQBuAAAAAAEAbgAAAAADAG4AAAAAAABuAAAAAAEAbgAAAAACAG4AAAAAAwBuAAAAAAIAbgAAAAABAG4AAAAAAwBuAAAAAAEAbgAAAAACAG4AAAAAAQBuAAAAAAAAbgAAAAAAAG4AAAAAAQBuAAAAAAAAbgAAAAAAAG4AAAAAAQBuAAAAAAAAbgAAAAACAG4AAAAAAABuAAAAAAMAbgAAAAABAHsAAAAAAABuAAAAAAEAbgAAAAACAG4AAAAAAQBuAAAAAAIAbgAAAAABAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAbgAAAAACAG4AAAAAAgBuAAAAAAEAbgAAAAAAAG4AAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAcgAAAAAAAHIAAAAAAAByAAAAAAAAewAAAAAAAGsAAAAAAAANAAAAAAAAawAAAAAAAHsAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAHsAAAAAAABrAAAAAAAADQAAAAAAAGsAAAAAAAB7AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAewAAAAAAAFsAAAAAAABrAAAAAAAAewAAAAAAAGsAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAABrAAAAAAAAawAAAAAAAA0AAAAAAABrAAAAAAAAewAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAABbAAAAAAAAawAAAAAAAHsAAAAAAABrAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAewAAAAAAAGsAAAAAAAANAAAAAAAAawAAAAAAAHsAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAawAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABrAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAawAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABMAAAAAAAATAAAAAAAAEwAAAAAAABMAAAAAAAATAAAAAAAAFsAAAAAAABbAAAAAAAAewAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAA== version: 7 4,0: ind: 4,0 - tiles: bgAAAAACAG4AAAAAAwBuAAAAAAMAbgAAAAACAG4AAAAAAABuAAAAAAMAewAAAAAAAHsAAAAAAAAdAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAG4AAAAAAAB7AAAAAAAAewAAAAAAAG4AAAAAAgBuAAAAAAIAbgAAAAAAAG4AAAAAAwBuAAAAAAAAbgAAAAABAB0AAAAAAAAdAAAAAAIAHQAAAAACAB0AAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAMAHQAAAAACAB0AAAAAAQBuAAAAAAMAbgAAAAAAAG4AAAAAAwBuAAAAAAEAbgAAAAABAG4AAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAAAdAAAAAAMAHQAAAAABAB0AAAAAAwAdAAAAAAIAbgAAAAADAG4AAAAAAABuAAAAAAIAbgAAAAADAG4AAAAAAQB7AAAAAAAAewAAAAAAAG4AAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAAAewAAAAAAAG4AAAAAAQBuAAAAAAIAbgAAAAADAG4AAAAAAwBuAAAAAAIAewAAAAAAAG4AAAAAAQBuAAAAAAMAbgAAAAABAG4AAAAAAABuAAAAAAMAewAAAAAAAB0AAAAAAAAdAAAAAAIAHQAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAbgAAAAACAHsAAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAgBuAAAAAAMAbgAAAAADAHsAAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAG4AAAAAAQB7AAAAAAAAbgAAAAABAG4AAAAAAwBuAAAAAAMAbgAAAAABAG4AAAAAAgB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAG4AAAAAAABuAAAAAAMAbgAAAAACAG4AAAAAAgBuAAAAAAEAbgAAAAACAFsAAAAAAgBuAAAAAAEAbgAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAwBuAAAAAAEAbgAAAAAAAG4AAAAAAAB7AAAAAAAAbgAAAAAAAG4AAAAAAwB7AAAAAAAAewAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAG4AAAAAAwBuAAAAAAMAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAMAbgAAAAACAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAG4AAAAAAQB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAIAewAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAbgAAAAABAG4AAAAAAwAdAAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAIAHQAAAAABAB0AAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: bgAAAAACAG4AAAAAAwBuAAAAAAMAbgAAAAACAG4AAAAAAABuAAAAAAMAewAAAAAAAHsAAAAAAAAdAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAG4AAAAAAAB7AAAAAAAAewAAAAAAAG4AAAAAAgBuAAAAAAIAbgAAAAAAAG4AAAAAAwBuAAAAAAAAbgAAAAABAB0AAAAAAAAdAAAAAAIAHQAAAAACAB0AAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAMAHQAAAAACAB0AAAAAAQBuAAAAAAMAbgAAAAAAAG4AAAAAAwBuAAAAAAEAbgAAAAABAG4AAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAAAdAAAAAAMAHQAAAAABAB0AAAAAAwAdAAAAAAIAbgAAAAADAG4AAAAAAABuAAAAAAIAbgAAAAADAG4AAAAAAQB7AAAAAAAAewAAAAAAAG4AAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAAAewAAAAAAAG4AAAAAAQBuAAAAAAIAbgAAAAADAG4AAAAAAwBuAAAAAAIAewAAAAAAAG4AAAAAAQBuAAAAAAMAbgAAAAABAG4AAAAAAABuAAAAAAMAewAAAAAAAB0AAAAAAAAdAAAAAAIAHQAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAbgAAAAACAHsAAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAgBuAAAAAAMAbgAAAAADAHsAAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAG4AAAAAAQB7AAAAAAAAbgAAAAABAG4AAAAAAwBuAAAAAAMAbgAAAAABAG4AAAAAAgB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAG4AAAAAAABuAAAAAAMAbgAAAAACAG4AAAAAAgBuAAAAAAEAbgAAAAACAGsAAAAAAABuAAAAAAEAbgAAAAABAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAwBuAAAAAAEAbgAAAAAAAG4AAAAAAAB7AAAAAAAAbgAAAAAAAG4AAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAG4AAAAAAwBuAAAAAAMAewAAAAAAAD4AAAAAAAA+AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAA+AAAAAAAAPgAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAABqAAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAewAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAWwAAAAAAAGsAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 5,0: ind: 5,0 - tiles: ewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAAAQAdAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAIAHQAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAwB7AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGoAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAAAAHgAAAAAAwB7AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAACAHsAAAAAAAB4AAAAAAIAewAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAQB7AAAAAAAAeAAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAAAQAdAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAIAHQAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAwB7AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAAAAHgAAAAAAwB7AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAACAHsAAAAAAAB4AAAAAAIAewAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAQB7AAAAAAAAeAAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 3,1: ind: 3,1 - tiles: ewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAACAHsAAAAAAABuAAAAAAMAbgAAAAACAHsAAAAAAABuAAAAAAMAbgAAAAABABEAAAAAAAAdAAAAAAMAEQAAAAAAAG4AAAAAAABuAAAAAAIAbgAAAAABAG4AAAAAAQBuAAAAAAMAbgAAAAAAAG4AAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAbgAAAAACAG4AAAAAAgARAAAAAAAAHQAAAAADABEAAAAAAABuAAAAAAEAbgAAAAAAAG4AAAAAAgBuAAAAAAAAbgAAAAABAG4AAAAAAwBuAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAG4AAAAAAwBuAAAAAAIAbgAAAAAAAG4AAAAAAQBuAAAAAAEAbgAAAAABAG4AAAAAAwBuAAAAAAMAbgAAAAADAG4AAAAAAwBuAAAAAAEAbgAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAIAbgAAAAADAG4AAAAAAQBuAAAAAAIAbgAAAAACAG4AAAAAAABuAAAAAAIAbgAAAAAAAG4AAAAAAwBuAAAAAAIAbgAAAAABAG4AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAbgAAAAADAG4AAAAAAABuAAAAAAEAEQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAADAB0AAAAAAAAdAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAbgAAAAADAG4AAAAAAABuAAAAAAIAbgAAAAACAG4AAAAAAQBuAAAAAAMAbgAAAAACAHsAAAAAAABuAAAAAAMAbgAAAAADAHsAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAB7AAAAAAAAbgAAAAACAG4AAAAAAABuAAAAAAMAbgAAAAABAG4AAAAAAQBuAAAAAAAAbgAAAAABAG4AAAAAAABuAAAAAAEAbgAAAAADAG4AAAAAAgB7AAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAMAHQAAAAACAG4AAAAAAgBuAAAAAAEAbgAAAAADAG4AAAAAAQBuAAAAAAIAbgAAAAACAG4AAAAAAABuAAAAAAIAbgAAAAAAAG4AAAAAAgBuAAAAAAIAewAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAHsAAAAAAABuAAAAAAMAbgAAAAAAAG4AAAAAAwBuAAAAAAEAbgAAAAAAAG4AAAAAAQBuAAAAAAEAbgAAAAABAG4AAAAAAgBuAAAAAAEAbgAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAE0AAAAAAABNAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAABNAAAAAAAATQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAAQAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAMAHQAAAAABAB0AAAAAAQB7AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAA== + tiles: ewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAABrAAAAAAAAawAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAHsAAAAAAABuAAAAAAMAbgAAAAABABEAAAAAAAB7AAAAAAAAEQAAAAAAAG4AAAAAAABuAAAAAAIAbgAAAAABAG4AAAAAAQBuAAAAAAMAbgAAAAAAAG4AAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAbgAAAAACAG4AAAAAAgBuAAAAAAAAbgAAAAAAAG4AAAAAAABuAAAAAAEAbgAAAAAAAG4AAAAAAgBuAAAAAAAAbgAAAAABAG4AAAAAAwBuAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAG4AAAAAAwBuAAAAAAIAbgAAAAAAAG4AAAAAAQBuAAAAAAEAbgAAAAABAG4AAAAAAwBuAAAAAAMAbgAAAAADAG4AAAAAAwBuAAAAAAEAbgAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAIAbgAAAAADABEAAAAAAAB7AAAAAAAAEQAAAAAAAG4AAAAAAABuAAAAAAIAbgAAAAAAAG4AAAAAAwBuAAAAAAIAbgAAAAABAG4AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAbgAAAAADAG4AAAAAAAARAAAAAAAAewAAAAAAABEAAAAAAAB7AAAAAAAAbgAAAAAAAG4AAAAAAABuAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAACAHsAAAAAAABuAAAAAAMAbgAAAAACAG4AAAAAAABuAAAAAAAAagAAAAAAAHsAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAB7AAAAAAAAbgAAAAACAG4AAAAAAABuAAAAAAMAbgAAAAAAAG4AAAAAAQBrAAAAAAAAbgAAAAABAG4AAAAAAABuAAAAAAAAbgAAAAAAAGoAAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAAAdAAAAAAMAawAAAAAAAG4AAAAAAgBuAAAAAAEAbgAAAAADAG4AAAAAAQBuAAAAAAIAawAAAAAAAG4AAAAAAABuAAAAAAIAbgAAAAAAAG4AAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAMAbgAAAAAAAG4AAAAAAwBuAAAAAAEAbgAAAAAAAHsAAAAAAABuAAAAAAEAbgAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAA0AAAAAAAANAAAAAAAAawAAAAAAAE0AAAAAAABNAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABNAAAAAAAATQAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAATQAAAAAAAE0AAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAABrAAAAAAAATAAAAAAAAEwAAAAAAABMAAAAAAAATAAAAAAAAEwAAAAAAABMAAAAAAAAWwAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAA== version: 7 3,3: ind: 3,3 - tiles: ewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ewAAAAAAAFsAAAAAAABiAAAAAAAAWwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAAAAGIAAAAAAABbAAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAHsAAAAAAABbAAAAAAAAYgAAAAAAAFsAAAAAAABMAAAAAAAATAAAAAAAAEwAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAAB7AAAAAAAAewAAAAAAAGIAAAAAAAB7AAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAADAAAAAAAAHsAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 3,2: ind: 3,2 - tiles: ewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAWwAAAAADAFsAAAAAAwBbAAAAAAAAWwAAAAACAB0AAAAAAQAdAAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAMAWwAAAAACAFsAAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAAAAFsAAAAAAQBbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAMAewAAAAAAAB0AAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAEAHQAAAAAAAB0AAAAAAQBbAAAAAAEAWwAAAAADAFsAAAAAAgACAAAAAAIAWwAAAAACAHsAAAAAAAAdAAAAAAMAewAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAwAdAAAAAAIAWwAAAAAAAFsAAAAAAwAdAAAAAAAAHQAAAAACAHsAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAB0AAAAAAQAdAAAAAAMAHQAAAAABAFsAAAAAAQBbAAAAAAAAewAAAAAAAB0AAAAAAwB7AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAAAAAAAAAAHsAAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAwBbAAAAAAIAWwAAAAABAHsAAAAAAAAdAAAAAAIAewAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAAAdAAAAAAIAWwAAAAACAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAewAAAAAAAB0AAAAAAgAdAAAAAAEAHQAAAAACAFsAAAAAAQBbAAAAAAIAHQAAAAAAAB0AAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAADAB0AAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAgB7AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAA== + tiles: TAAAAAAAAEwAAAAAAABMAAAAAAAATAAAAAAAAEwAAAAAAABMAAAAAAAAWwAAAAAAAGsAAAAAAAAdAAAAAAAAHQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAAAAHsAAAAAAAALAAAAAAAACwAAAAAAAHsAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAAB7AAAAAAAACwAAAAAAAAsAAAAAAAB7AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAAsAAAAAAAALAAAAAAAAewAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAAAAHsAAAAAAAAGAAAAAAAABgAAAAAAAHsAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB7AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAAAAB0AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHsAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHsAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB7AAAAAAAABQAAAAAAAAoAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAB7AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAewAAAAAAAHgAAAAAAAB4AAAAAAAAewAAAAAAAHgAAAAAAAB4AAAAAAAAewAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAewAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABiAAAAAAAAYgAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAHsAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAABbAAAAAAAAYgAAAAAAAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAABqAAAAAAAAWwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAA== version: 7 4,1: ind: 4,1 - tiles: bgAAAAADAHsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAAAdAAAAAAEAHQAAAAABAB0AAAAAAgB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAABiAAAAAAAAewAAAAAAAHsAAAAAAABiAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAWwAAAAADAFsAAAAAAgB7AAAAAAAAYgAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAIAHQAAAAADAGoAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAGIAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAgB7AAAAAAAAHQAAAAABAB0AAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAbgAAAAAAAHsAAAAAAABbAAAAAAMAWwAAAAABAHsAAAAAAAAdAAAAAAAAewAAAAAAAB0AAAAAAgAdAAAAAAIAAQAAAAACAAEAAAAAAwB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAG4AAAAAAwB7AAAAAAAAewAAAAAAAGIAAAAAAABrAAAAAAAAHQAAAAAAAHsAAAAAAAAdAAAAAAIAHQAAAAABAAEAAAAAAAABAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAAAewAAAAAAAHsAAAAAAABiAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAbgAAAAACAHsAAAAAAABiAAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGIAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABNAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAQB7AAAAAAAAeAAAAAACAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAATQAAAAAAAHsAAAAAAABiAAAAAAAAewAAAAAAAGsAAAAAAAB4AAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAAQAAAAAAAB7AAAAAAAAYgAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAEAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAB0AAAAAAAB6AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAAB4AAAAAAEAeAAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAIAegAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAADAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAHQAAAAACAA== + tiles: WwAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAAAdAAAAAAEAHQAAAAABAB0AAAAAAgB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAWwAAAAADAGIAAAAAAABiAAAAAAAAYgAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAIAHQAAAAADAGoAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAGIAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAgB7AAAAAAAAHQAAAAABAB0AAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAagAAAAAAAHsAAAAAAABbAAAAAAMAWwAAAAABAHsAAAAAAAAdAAAAAAAAewAAAAAAAB0AAAAAAgAdAAAAAAIAAQAAAAACAAEAAAAAAwB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAGIAAAAAAABrAAAAAAAAHQAAAAAAAHsAAAAAAAAdAAAAAAIAHQAAAAABAAEAAAAAAAABAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAbgAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGIAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABNAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAGoAAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAATQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAE0AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAB0AAAAAAABrAAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAIAegAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAHsAAAAAAABbAAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAHQAAAAACAA== version: 7 4,2: ind: 4,2 - tiles: AAAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAGsAAAAAAAB4AAAAAAMAeAAAAAAAAHgAAAAAAgB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAACAHsAAAAAAAB4AAAAAAIAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAMAeAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAMAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAgB7AAAAAAAAeAAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAABrAAAAAAAAeAAAAAACAHgAAAAAAgB7AAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAIAeAAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAAB6AAAAAAAATAAAAAADAHoAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABMAAAAAAMAegAAAAAAAEwAAAAAAgBrAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAABAHoAAAAAAABMAAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAagAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAgB6AAAAAAAATAAAAAABAA== + tiles: egAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAABbAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAWwAAAAAAAHsAAAAAAAAHAAAAAAAAWwAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAAABwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAAABwAAAAAAAAcAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAAB4AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHgAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAeAAAAAACAHgAAAAAAgB4AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAAB4AAAAAAIAeAAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAA== version: 7 4,3: ind: 4,3 - tiles: ewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAgB6AAAAAAAATAAAAAACAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABMAAAAAAEAegAAAAAAAEwAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 5,-1: ind: 5,-1 - tiles: ewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABuAAAAAAMAbgAAAAACAG4AAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABAG4AAAAAAQBuAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG4AAAAAAwBuAAAAAAAAbgAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABuAAAAAAEAbgAAAAACAG4AAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADAG4AAAAAAQBuAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG4AAAAAAABuAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABuAAAAAAAAbgAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADAG4AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABuAAAAAAMAbgAAAAACAG4AAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABAG4AAAAAAQBuAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG4AAAAAAwBuAAAAAAAAbgAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABuAAAAAAEAbgAAAAACAG4AAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADAG4AAAAAAQBuAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG4AAAAAAABuAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABuAAAAAAAAbgAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADAG4AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 5,-2: ind: 5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAEwAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAEwAAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAEwAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAEwAAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 5,2: ind: 5,2 - tiles: ewAAAAAAAB0AAAAAAQB7AAAAAAAAewAAAAAAAE0AAAAAAAA2AAAAAAAATQAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAIAHQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAHsAAAAAAAAdAAAAAAIAHQAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAE0AAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAwB7AAAAAAAAHQAAAAAAAB0AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAAHoAAAAAAABMAAAAAAIAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAQB6AAAAAAAATAAAAAACAAAAAAAAAABMAAAAAAEAegAAAAAAAEwAAAAAAQAAAAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABMAAAAAAEAegAAAAAAAEwAAAAAAgB6AAAAAAAATAAAAAACAHoAAAAAAABMAAAAAAMAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAABAHoAAAAAAABMAAAAAAIAegAAAAAAAEwAAAAAAQB6AAAAAAAATAAAAAABAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAAB6AAAAAAAATAAAAAACAAAAAAAAAABMAAAAAAAAegAAAAAAAEwAAAAAAQB6AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ewAAAAAAAB0AAAAAAQB7AAAAAAAAewAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAIAHQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAHsAAAAAAAAdAAAAAAIAHQAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAwB7AAAAAAAAHQAAAAAAAB0AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 5,3: ind: 5,3 - tiles: egAAAAAAAEwAAAAAAwB6AAAAAAAATAAAAAADAHoAAAAAAABMAAAAAAAAegAAAAAAAEwAAAAAAQAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAABMAAAAAAIAegAAAAAAAEwAAAAAAgAAAAAAAAAATAAAAAAAAHoAAAAAAABMAAAAAAIAAAAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAATAAAAAACAHoAAAAAAABMAAAAAAEAegAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 3,-3: ind: 3,-3 @@ -245,11 +252,11 @@ entities: version: 7 6,-2: ind: 6,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAACkAAAAAAAApAAAAAAAAKQAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAApAAAAAAAAKQAAAAAAACkAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAKQAAAAAAACkAAAAAAAApAAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAEwAAAAAAwBMAAAAAAEATAAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAACkAAAAAAAApAAAAAAAAKQAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAMAbgAAAAABAHsAAAAAAAB7AAAAAAAAHQAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAbgAAAAADAG4AAAAAAABuAAAAAAMAbgAAAAAAAG4AAAAAAABuAAAAAAMAbgAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAEwAAAAAAgBMAAAAAAAATAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAG4AAAAAAQBuAAAAAAAAbgAAAAACAG4AAAAAAwBuAAAAAAAAbgAAAAABAG4AAAAAAgB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAAAbgAAAAABAG4AAAAAAgBuAAAAAAEAbgAAAAACAG4AAAAAAQBuAAAAAAAAHQAAAAACAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAbgAAAAADAG4AAAAAAABuAAAAAAAAbgAAAAACAG4AAAAAAABuAAAAAAAAbgAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAACkAAAAAAAApAAAAAAAAKQAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAApAAAAAAAAKQAAAAAAACkAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAKQAAAAAAACkAAAAAAAApAAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAEwAAAAAAwBMAAAAAAEATAAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAACkAAAAAAAApAAAAAAAAKQAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAGsAAAAAAABuAAAAAAMAbgAAAAABAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAABrAAAAAAAAbgAAAAADAG4AAAAAAABuAAAAAAMAbgAAAAAAAG4AAAAAAABuAAAAAAMAbgAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAEwAAAAAAgBMAAAAAAAATAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAG4AAAAAAQBuAAAAAAAAbgAAAAACAG4AAAAAAwBuAAAAAAAAbgAAAAABAG4AAAAAAgB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAAAbgAAAAABAG4AAAAAAgBuAAAAAAEAbgAAAAACAG4AAAAAAQBuAAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAbgAAAAADAG4AAAAAAABuAAAAAAAAbgAAAAACAG4AAAAAAABuAAAAAAAAbgAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAA== version: 7 6,-1: ind: 6,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAbgAAAAADAG4AAAAAAgBuAAAAAAMAbgAAAAAAAG4AAAAAAQBuAAAAAAMAbgAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAABQAAAAAAAAUAAAAAAAAHsAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAUAAAAAAAAFAAAAAAAABbAAAAAAIAFQAAAAAAABUAAAAAAAAVAAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAbgAAAAADAG4AAAAAAgBuAAAAAAMAbgAAAAAAAG4AAAAAAQBuAAAAAAMAbgAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAABQAAAAAAAAUAAAAAAAAHsAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAUAAAAAAAAFAAAAAAAABrAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 7,-2: ind: 7,-2 @@ -261,7 +268,7 @@ entities: version: 7 5,1: ind: 5,1 - tiles: egAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABNAAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAMAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAABEAAAAAAAA2AAAAAAAAEQAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAABAB0AAAAAAAAdAAAAAAIAHQAAAAABABEAAAAAAAARAAAAAAAAEQAAAAAAAB0AAAAAAgAdAAAAAAIATQAAAAAAAHsAAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAQB7AAAAAAAAEQAAAAAAAB0AAAAAAQAdAAAAAAEAHQAAAAABADYAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAiAAAAAAMAHQAAAAABAB0AAAAAAQAdAAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAMAHQAAAAADADYAAAAAAAAdAAAAAAIAIgAAAAAAAB0AAAAAAgARAAAAAAAAewAAAAAAAHsAAAAAAAA2AAAAAAAAHQAAAAACAB0AAAAAAwBNAAAAAAAAewAAAAAAABEAAAAAAAAdAAAAAAEAEQAAAAAAAHsAAAAAAAARAAAAAAAAHQAAAAACAB0AAAAAAwAdAAAAAAMANgAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAA== + tiles: egAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAMAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAADYAAAAAAAA2AAAAAAAANgAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAABAB0AAAAAAAAdAAAAAAIAHQAAAAABABEAAAAAAAARAAAAAAAAEQAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAAAAHsAAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAQB7AAAAAAAAEQAAAAAAAB0AAAAAAQAdAAAAAAEAHQAAAAABADYAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAiAAAAAAMAHQAAAAABAB0AAAAAAQAdAAAAAAAAHQAAAAACAE0AAAAAAAAdAAAAAAMAHQAAAAADADYAAAAAAAAdAAAAAAIAIgAAAAAAAB0AAAAAAgBNAAAAAAAAewAAAAAAAHsAAAAAAAA2AAAAAAAAHQAAAAACAB0AAAAAAwAdAAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAAAAHsAAAAAAAARAAAAAAAAHQAAAAACAB0AAAAAAwAdAAAAAAMANgAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAA== version: 7 3,-4: ind: 3,-4 @@ -269,7 +276,7 @@ entities: version: 7 -2,-2: ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGoAAAAAAAB7AAAAAAAAIgAAAAACAFsAAAAAAABbAAAAAAAAWwAAAAABAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAgB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAAHsAAAAAAAAiAAAAAAIAWwAAAAACAFsAAAAAAgBbAAAAAAIAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAABAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAABAFsAAAAAAgB7AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAIAWwAAAAADACIAAAAAAgB7AAAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGoAAAAAAAB7AAAAAAAAIgAAAAACAFsAAAAAAABbAAAAAAAAWwAAAAABAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAgB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAAHsAAAAAAAAiAAAAAAIAWwAAAAACAFsAAAAAAgBbAAAAAAIAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAABAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAABAFsAAAAAAgB7AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAIAWwAAAAADACIAAAAAAgB7AAAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -2,-1: ind: -2,-1 @@ -458,7 +465,7 @@ entities: 1,-5: 0: 53486 2,-4: - 0: 7399 + 0: 7271 2,-3: 0: 62379 2,-2: @@ -466,26 +473,26 @@ entities: 2,-5: 0: 30310 3,-4: - 0: 11136 + 0: 43791 3,-3: - 0: 40174 + 0: 40162 3,-2: 0: 52573 3,-5: - 0: 61152 + 0: 65535 4,-4: - 0: 37332 + 0: 37319 4,-3: - 0: 10923 + 0: 10937 4,-2: 0: 65295 4,-1: 0: 61919 -4,-8: - 1: 61688 - 0: 4 + 1: 61624 + 0: 68 -5,-8: - 1: 34944 + 1: 34952 -4,-7: 1: 112 0: 29184 @@ -497,8 +504,8 @@ entities: 0: 17408 1: 35807 -3,-8: - 0: 69 - 1: 61624 + 0: 85 + 1: 61608 -3,-7: 1: 3840 -3,-6: @@ -508,8 +515,8 @@ entities: 0: 21760 1: 43759 -2,-8: - 0: 21 - 1: 61674 + 0: 85 + 1: 61610 -2,-7: 1: 768 -2,-6: @@ -518,8 +525,8 @@ entities: 0: 21760 1: 35471 -1,-8: - 0: 34953 - 1: 12848 + 0: 34969 + 1: 12832 -1,-6: 0: 3840 1: 8 @@ -552,7 +559,7 @@ entities: 2,-7: 0: 7406 2,-6: - 0: 60655 + 0: 27887 2,-8: 0: 61166 3,-8: @@ -568,25 +575,25 @@ entities: 4,-6: 0: 3855 4,-5: - 0: 22352 + 0: 30583 0,6: 0: 2056 - 1,6: - 0: 53199 1,5: + 0: 56512 1: 16 - 0: 52416 + 1,6: + 0: 57295 1,7: 1: 16 - 0: 60428 + 0: 60620 1,8: - 0: 15086 + 0: 47854 2,5: 0: 65529 2,6: 0: 65535 2,7: - 0: 48063 + 0: 47903 2,8: 0: 35763 3,5: @@ -594,7 +601,7 @@ entities: 3,6: 0: 46079 3,7: - 0: 48063 + 0: 48015 4,4: 0: 3845 4,5: @@ -718,11 +725,12 @@ entities: 8,-5: 0: 64287 0,-11: - 1: 14080 + 1: 4368 -1,-11: - 1: 14896 + 1: 58608 + 0: 4096 0,-10: - 1: 243 + 1: 241 0: 49152 1,-10: 1: 3316 @@ -931,24 +939,22 @@ entities: 0: 65534 6,8: 0: 65279 - 7,5: - 0: 61550 7,6: - 0: 3839 - 7,4: - 0: 3680 + 0: 61679 7,7: - 0: 3822 - 7,8: - 0: 53703 + 0: 65295 + 7,4: + 0: 36576 + 7,5: + 0: 58606 8,4: 0: 65520 8,5: - 0: 65535 + 0: 29439 8,6: - 0: 65535 + 0: 29303 8,7: - 0: 65407 + 0: 65527 9,0: 0: 20735 9,1: @@ -969,8 +975,6 @@ entities: 0: 65527 10,-1: 0: 65167 - 10,4: - 0: 61156 11,0: 0: 65327 11,1: @@ -986,13 +990,13 @@ entities: 12,0: 0: 65263 12,1: - 0: 3854 + 0: 36622 12,2: 0: 65534 12,3: 0: 61408 9,-3: - 0: 57275 + 0: 57339 9,-2: 0: 65535 10,-3: @@ -1094,31 +1098,32 @@ entities: 2,-14: 1: 21847 -4,-11: - 1: 62448 + 1: 46064 + 0: 16384 -5,-11: 1: 34944 -4,-10: 1: 48008 0: 1092 -5,-10: - 1: 44768 + 1: 44776 -5,-9: 1: 60074 -3,-11: - 1: 45296 - 0: 16384 + 1: 41200 + 0: 20480 -3,-10: 0: 1365 1: 64168 -2,-11: - 1: 57584 - 0: 4096 + 1: 41200 + 0: 20480 -2,-10: 0: 1365 1: 47752 -1,-10: 0: 273 - 1: 28672 + 1: 29764 12,-3: 0: 58470 13,-4: @@ -1188,13 +1193,13 @@ entities: 1: 9728 0,9: 1: 9826 - 0: 2176 0,10: 1: 59938 1,9: - 0: 32754 + 3: 32752 + 0: 2 1,10: - 0: 7 + 3: 7 1: 63488 2,10: 1: 15906 @@ -1238,121 +1243,114 @@ entities: 6,12: 0: 15 1: 61440 + 7,8: + 0: 49072 7,9: - 0: 53727 + 0: 53691 7,10: - 0: 7645 + 0: 40413 7,11: - 0: 65527 + 0: 65523 7,12: 0: 15 1: 61440 8,8: - 0: 21746 + 0: 7644 8,9: - 0: 14557 + 0: 47359 8,10: - 0: 30591 + 0: 65459 8,11: 0: 8177 9,4: - 0: 65520 + 0: 65248 9,5: - 0: 57296 + 0: 4095 9,6: - 0: 56733 + 0: 65535 9,7: - 0: 65293 + 0: 65358 + 9,8: + 0: 35763 + 10,4: + 0: 64976 10,5: - 0: 64302 + 0: 3057 10,6: - 0: 30491 + 0: 53757 10,7: - 0: 65287 + 0: 65485 10,8: - 0: 13105 - 1: 34944 + 0: 64433 11,5: - 0: 48010 + 0: 52692 11,6: - 0: 59579 + 0: 56541 11,7: - 0: 30574 - 11,8: - 0: 61030 + 0: 65309 12,4: - 0: 61408 + 0: 61424 12,5: 0: 57598 12,6: - 0: 28910 + 0: 65294 12,7: - 1: 3840 - 0: 6 + 0: 65327 + 11,8: + 0: 48056 8,12: 0: 1 - 1: 12800 - 9,8: - 0: 35760 + 1: 61952 9,9: - 0: 36795 + 0: 65339 9,10: - 0: 15291 - 9,12: - 1: 4369 + 0: 56796 9,11: - 0: 8 + 0: 34952 10,9: - 0: 3 - 1: 3720 + 0: 57867 10,10: - 0: 40944 + 0: 56768 10,11: - 0: 2203 - 10,12: - 1: 50244 - 11,10: - 0: 4914 - 1: 34944 - 11,11: - 0: 53009 - 1: 12 + 0: 65521 11,9: - 0: 26214 + 0: 56331 + 11,10: + 0: 7676 + 11,11: + 0: 65532 12,8: - 0: 65392 + 0: 56831 12,9: - 1: 16624 + 0: 7645 12,10: - 1: 36804 + 0: 35771 12,11: - 0: 13056 - 1: 2052 + 0: 63347 + 4,13: + 1: 226 5,13: - 1: 36066 - 5,14: - 1: 236 + 1: 242 6,13: - 1: 63728 - 6,14: - 1: 241 + 1: 240 7,13: - 1: 63728 - 7,14: - 1: 252 + 1: 240 8,13: - 1: 318 - 8,14: - 1: 49 + 1: 242 + 9,12: + 1: 62528 9,13: - 1: 15 + 1: 244 + 10,12: + 1: 61440 10,13: - 1: 7 + 1: 240 11,12: 1: 61440 - 12,12: - 1: 12800 - 0: 14 + 11,13: + 1: 240 + 12,13: + 1: 241 16,-3: 0: 61166 16,0: @@ -1378,7 +1376,7 @@ entities: 18,-1: 0: 65399 18,-5: - 0: 62692 + 0: 62702 18,0: 0: 4081 19,-4: @@ -1406,40 +1404,45 @@ entities: 1: 65024 18,-7: 1: 63232 + 18,-6: + 1: 1 + 0: 16384 19,-7: 1: 63488 + 19,-6: + 1: 1 20,-7: 1: 7936 20,-5: 0: 61440 13,1: - 0: 12163 + 0: 3971 13,2: - 0: 65535 + 0: 32631 13,3: - 0: 61412 + 0: 61408 14,1: 0: 12089 - 14,3: - 0: 65526 14,2: - 0: 26214 + 0: 30583 + 14,3: + 0: 65527 14,4: 0: 65532 15,1: 0: 3855 15,2: - 0: 65535 + 0: 65399 15,3: 0: 65524 15,4: - 0: 21789 + 0: 54557 16,1: - 0: 26383 + 0: 30479 + 16,2: + 0: 48015 16,3: 0: 64976 - 16,2: - 0: 61166 16,4: 0: 65309 17,1: @@ -1447,7 +1450,7 @@ entities: 17,2: 0: 65309 17,3: - 0: 65520 + 0: 65522 17,4: 0: 3855 18,1: @@ -1460,11 +1463,11 @@ entities: 0: 1894 19,1: 0: 28791 + 19,2: + 0: 61542 19,3: 0: 15 1: 16128 - 19,2: - 0: 1638 19,4: 1: 16025 20,0: @@ -1479,9 +1482,9 @@ entities: 20,4: 1: 19 21,0: - 0: 20985 + 0: 46073 21,1: - 0: 12639 + 0: 12735 21,2: 0: 30499 21,3: @@ -1490,120 +1493,129 @@ entities: 21,-1: 0: 48127 22,0: - 0: 51 + 0: 4147 + 22,1: + 0: 19 + 1: 8192 22,3: 1: 3874 22,-1: 0: 12919 1: 32768 - 22,1: - 1: 8192 22,2: 1: 8738 + 23,0: + 0: 256 + 1: 17 + 23,1: + 0: 256 + 1: 4096 23,3: 1: 273 - 23,0: - 1: 4369 23,-1: 1: 4352 - 23,1: - 1: 4369 23,2: 1: 4369 13,4: 0: 65520 13,5: - 0: 60447 + 0: 59583 13,6: - 0: 239 - 1: 61440 + 0: 61679 13,7: - 1: 273 - 0: 49152 + 0: 30479 13,8: - 0: 65518 + 0: 57983 14,5: - 0: 65487 + 0: 64319 14,6: - 0: 255 - 1: 61440 + 0: 47295 14,7: - 0: 28672 + 0: 47603 14,8: - 0: 47935 + 0: 29115 15,5: - 0: 64789 + 0: 65285 15,6: - 0: 50431 - 1: 4096 + 0: 61695 15,7: - 1: 44817 - 0: 12 + 0: 4572 + 1: 49152 15,8: - 1: 25668 + 0: 12049 + 1: 12 16,5: 0: 56783 16,6: 0: 56541 16,7: - 0: 50381 - 1: 4352 + 0: 50397 + 1: 4096 + 12,12: + 0: 3822 13,12: - 0: 34959 - 1: 768 + 0: 36351 + 13,13: + 1: 48 + 0: 2184 13,11: - 0: 49152 - 1: 302 + 0: 62207 14,12: - 0: 8751 - 1: 2048 + 0: 14335 14,11: - 0: 28672 - 1: 143 + 0: 61694 + 14,13: + 0: 546 + 1: 128 15,12: - 0: 15 - 1: 256 + 0: 4095 + 15,13: + 1: 240 15,11: - 0: 34816 - 1: 768 + 0: 65263 + 16,13: + 1: 17 13,10: - 1: 12544 - 0: 206 + 0: 65535 13,9: - 0: 61166 + 0: 3822 14,9: - 0: 15295 + 0: 61007 14,10: - 0: 127 - 1: 32768 - 15,10: - 1: 8100 + 0: 61152 15,9: - 1: 17510 - 16,10: - 1: 272 - 0: 56524 - 16,11: - 0: 32669 + 0: 60934 + 15,10: + 0: 57582 16,8: - 0: 52428 + 1: 1 + 0: 65484 + 16,9: + 0: 64961 + 16,10: + 0: 64733 + 16,11: + 0: 61007 17,5: 0: 47790 - 17,7: - 0: 61167 17,6: + 0: 45056 1: 224 - 0: 57344 + 17,7: + 0: 61098 17,8: - 0: 3823 + 0: 61166 18,5: 0: 30495 18,6: - 1: 57360 - 0: 3584 + 1: 49168 + 0: 7168 18,7: - 1: 57568 - 0: 3584 + 0: 7441 + 1: 49344 + 18,8: + 0: 3089 + 1: 57536 19,5: 1: 3955 0: 61440 @@ -1620,50 +1632,52 @@ entities: 1: 92 20,7: 0: 30578 - 16,9: - 0: 52428 + 16,12: + 0: 4 17,9: - 0: 61679 + 0: 65248 17,10: 0: 9998 17,11: 0: 3822 18,11: 0: 112 - 1: 2176 - 18,8: - 1: 57568 - 0: 3584 + 1: 16512 18,9: - 1: 11810 + 1: 28194 18,10: - 1: 14 + 1: 17476 18,12: - 1: 61713 + 1: 29764 19,8: 1: 12336 0: 2944 19,9: - 1: 3852 - 19,10: - 1: 17487 - 0: 43680 + 1: 20236 19,11: - 1: 20468 + 1: 17652 0: 40960 + 19,10: + 0: 43690 + 1: 17476 19,12: - 0: 170 - 1: 65092 + 0: 2730 + 1: 17476 20,8: 0: 1906 20,9: - 1: 3855 + 1: 20303 20,11: - 1: 19964 + 1: 17652 0: 40960 - 20,12: - 1: 62805 - 0: 2730 + 17,12: + 1: 57344 + 18,13: + 1: 12 + 19,13: + 1: 15 + 20,13: + 1: 15 21,-4: 0: 54479 21,-3: @@ -1700,41 +1714,48 @@ entities: 20,10: 0: 43690 1: 17476 + 20,12: + 0: 2730 + 1: 17476 21,8: 0: 7 1: 24576 21,9: - 1: 3843 - 21,10: - 1: 21831 - 0: 43680 + 1: 20227 21,11: - 1: 18429 + 1: 17652 0: 40960 21,7: 0: 30583 + 21,10: + 0: 43690 + 1: 17476 21,12: - 0: 170 - 1: 64325 + 0: 2730 + 1: 17476 22,9: - 1: 30472 - 22,10: - 1: 65126 + 1: 9002 22,11: - 1: 39611 + 1: 43770 22,7: 0: 65534 22,8: 0: 24590 + 22,10: + 1: 44578 + 22,12: + 1: 8750 23,8: 0: 255 - 22,12: - 1: 14190 23,7: 0: 7455 24,8: 0: 17 1: 18440 + 21,13: + 1: 15 + 22,13: + 1: 3 13,-11: 1: 12835 13,-10: @@ -2030,12 +2051,14 @@ entities: decals: 2727: -22,-17 2728: -22,-10 + 5972: 29,24 - node: color: '#FFFFFFFF' id: Arrows decals: 753: 21,-16 2729: -15,-2 + 6846: 33,23 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -2054,6 +2077,7 @@ entities: 4811: 26.969461,-36.186703 4812: 24.969461,-32.249786 4813: 26.969461,-32.249786 + 6847: 30,21 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -2088,19 +2112,13 @@ entities: 1468: 22,24 1469: 22,25 1470: 23,25 - 2085: 52,17 - 2086: 52,18 2199: 68,13 2200: 66,13 - 2201: 67,13 2564: 46,-46 2574: 44,-43 2575: 43,-43 2576: 42,-43 2577: 41,-43 - 2835: 38,24 - 2836: 41,24 - 2845: 38,21 3094: 96,30 3179: 11,31 3180: 12,31 @@ -2132,10 +2150,6 @@ entities: 4358: 41,-41 4506: 35,-31 4569: 58,9 - 4570: 58,10 - 4582: 31,26 - 4583: 38,26 - 4584: 38,27 4600: 17,39 4601: 19,39 4727: 20,-32 @@ -2163,9 +2177,11 @@ entities: 5175: 6,-19 5192: 30,-35 5193: 32,-35 - 5258: 42,26 - 5259: 42,27 - 5266: 41,28 + 6182: 58,8 + 6577: 66,16 + 6578: 68,16 + 6836: 56,9 + 6837: 56,8 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -2198,16 +2214,12 @@ entities: 1873: 10,-6 1874: 11,-6 1875: 12,-6 - 2196: 68,16 - 2197: 67,16 - 2198: 66,16 3151: 14,-51 3152: 14,-52 3153: 14,-53 3154: 28,-51 3155: 28,-52 3156: 28,-53 - 4589: 38,28 4842: 9,-30 4843: 9,-31 4844: 9,-32 @@ -2217,7 +2229,6 @@ entities: 5063: 25,-43 5180: 5,-21 5181: 7,-19 - 5260: 42,28 - node: color: '#FFFFFFFF' id: BotLeftGreyscale @@ -2246,6 +2257,7 @@ entities: 1547: 15,39 1871: 8,-8 1872: 8,-6 + 6535: 8,-5 - node: color: '#FFFFFFFF' id: Box @@ -2254,31 +2266,169 @@ entities: 4100: 25,-35 4101: 25,-34 4102: 27,-34 + 5876: 39,33 + 6292: 41,33 + 6331: 46,38 + 6390: 41,33 - node: color: '#FFFFFFFF' id: BoxGreyscale decals: 1552: 14,40 + 5379: 12,-18 + 5881: 18,-18 + - node: + color: '#DE3A3A96' + id: BrickCornerOverlayNE + decals: + 6279: 45,36 + - node: + color: '#DE3A3A96' + id: BrickCornerOverlayNW + decals: + 6283: 43,36 + - node: + color: '#DE3A3A96' + id: BrickCornerOverlaySE + decals: + 6281: 41,33 + - node: + color: '#DE3A3A96' + id: BrickLineOverlayE + decals: + 6280: 45,35 + - node: + color: '#DE3A3A96' + id: BrickLineOverlayN + decals: + 6284: 44,36 + 6286: 44,31 + 6287: 45,31 + - node: + color: '#DE3A3A96' + id: BrickLineOverlayS + decals: + 6288: 44,30 + 6289: 45,30 + - node: + color: '#DE3A3A96' + id: BrickLineOverlayW + decals: + 6285: 39,34 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: 3076: 74,23 + 5275: 35,18 + 5276: 38,22 + 5295: 39,18 + 5374: 39,27 + 5688: 40,20 + 5868: 30,18 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: 3075: 73,23 + 5277: 36,22 + 5278: 37,18 + 5279: 33,18 + 5364: 37,27 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: 3078: 74,22 + 5282: 35,17 + 5284: 38,21 + 5296: 39,17 + 5367: 39,25 + 5687: 40,19 + 5867: 30,17 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: 3077: 73,22 + 5285: 36,21 + 5286: 37,17 + 5287: 33,17 + 5365: 37,25 + 5872: 31,19 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndE + decals: + 5651: 33,24 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndW + decals: + 5654: 30,24 + 5689: 29,20 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSw + decals: + 5873: 31,20 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 5370: 39,26 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + decals: + 5289: 37,22 + 5290: 34,18 + 5294: 38,18 + 5363: 38,27 + 5655: 31,24 + 5656: 32,24 + 5677: 30,20 + 5680: 33,20 + 5681: 34,20 + 5685: 38,20 + 5686: 39,20 + 5828: 35,20 + 5829: 36,20 + 5830: 37,20 + 5869: 31,20 + 5870: 32,20 + 6619: 50,13 + 6620: 51,13 + 6621: 49,13 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + decals: + 5291: 34,17 + 5292: 37,21 + 5293: 38,17 + 5369: 38,25 + 5443: 55,43 + 5445: 53.98346,42.996826 + 5447: 52.990402,43.003773 + 5449: 52,43 + 5652: 32,24 + 5653: 31,24 + 5690: 30,20 + 5692: 33,19 + 5693: 34,19 + 5697: 38,19 + 5698: 39,19 + 5831: 35,19 + 5832: 36,19 + 5833: 37,19 + 5871: 32,19 + 6298: 50.961994,43.007206 + 6406: 50,35 + 6407: 51,35 + 6622: 49,15 + 6623: 50,15 + 6624: 51,15 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW @@ -2287,16 +2437,50 @@ entities: 1782: 22,-12 1783: 22,-11 1784: 22,-10 - 2885: 56,39 - 2889: 56,40 - 2969: 56,36 - 2970: 56,37 - 2971: 56,38 + 5368: 37,26 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNe decals: 4345: 30,-7 + 5817: 53,32 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNw + decals: + 6398: 48,32 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSe + decals: + 5810: 53,31 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSw + decals: + 6399: 48,31 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndE + decals: + 6783: 61,14 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BrickTileSteelEndE + decals: + 6442: 57,49 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndW + decals: + 6784: 57,14 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BrickTileSteelEndW + decals: + 6439: 55,49 - node: color: '#D381C996' id: BrickTileSteelLineE @@ -2322,6 +2506,45 @@ entities: 836: 47,-9 4044: 29,-39 4344: 29,-7 + 5376: 44,29 + 5377: 42,29 + 5815: 52,32 + 6330: 51,32 + 6402: 50,32 + 6403: 49,32 + 6780: 58,14 + 6781: 59,14 + 6782: 60,14 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BrickTileSteelLineN + decals: + 6441: 56,49 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + decals: + 5441: 52,43 + 5444: 54.49735,43.003773 + 5446: 53.50429,43.003773 + 5448: 52.490402,42.996826 + 5450: 51.496826,43.003773 + 5811: 52,31 + 5812: 51,31 + 6299: 50.493244,43.02283 + 6400: 50,31 + 6506: 49,31 + 6776: 58,14 + 6777: 59,14 + 6778: 60,14 + 6789: 54,11 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BrickTileSteelLineS + decals: + 6440: 56,49 - node: color: '#D381C996' id: BrickTileSteelLineW @@ -2341,26 +2564,85 @@ entities: id: BrickTileWhiteCornerNe decals: 1844: 17,-4 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNe + decals: + 5882: 44,29 - node: color: '#A4610696' id: BrickTileWhiteCornerNe decals: 1447: 20,24 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerNe + decals: + 6654: 64,16 + 6666: 60,20 + 6697: 57,25 + 6706: 62,25 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNe + decals: + 5550: 31,31 + 5603: 37,34 + 5719: 40,28 + 5756: 41,36 + 6486: 34,25 + 6498: 57,33 + 6503: 54,33 + 6850: 30,28 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNw decals: 1849: 14,-4 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNw + decals: + 5884: 42,29 - node: color: '#A4610696' id: BrickTileWhiteCornerNw decals: 1446: 17,24 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerNw + decals: + 6601: 44,11 + 6631: 53,15 + 6655: 62,16 + 6682: 49,21 + 6693: 53,25 + 6699: 59,25 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNw + decals: + 5542: 29,25 + 5548: 29,31 + 5552: 32,31 + 5716: 36,27 + 5758: 39,36 + 6395: 34,34 + 6479: 47,36 + 6483: 37,28 + 6500: 56,33 + 6857: 29,28 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSe decals: 1843: 17,-6 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerSe + decals: + 5887: 44,27 - node: color: '#9FED583B' id: BrickTileWhiteCornerSe @@ -2371,11 +2653,37 @@ entities: id: BrickTileWhiteCornerSe decals: 1451: 20,20 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerSe + decals: + 6590: 47,13 + 6652: 64,13 + 6703: 62,22 + 6812: 51,8 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSe + decals: + 5573: 35,29 + 5582: 54,30 + 5601: 37,32 + 5779: 45,33 + 6487: 31,30 + 6493: 40,24 + 6497: 57,31 + 6841: 34,23 + 6852: 30,27 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSw decals: 1845: 14,-6 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerSw + decals: + 5886: 42,27 - node: color: '#9FED583B' id: BrickTileWhiteCornerSw @@ -2386,6 +2694,27 @@ entities: id: BrickTileWhiteCornerSw decals: 1452: 17,20 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerSw + decals: + 6600: 44,9 + 6632: 53,13 + 6683: 49,17 + 6692: 53,23 + 6700: 59,22 + 6796: 49,8 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSw + decals: + 5547: 29,30 + 5723: 36,24 + 5761: 39,33 + 5859: 29,23 + 6396: 34,32 + 6501: 56,31 + 6853: 29,27 - node: color: '#9FED5847' id: BrickTileWhiteEndE @@ -2410,7 +2739,14 @@ entities: color: '#D381C996' id: BrickTileWhiteInnerNe decals: - 2089: 51,20 + 6596: 42,8 + 6669: 57,20 + 6672: 60,15 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerNe + decals: + 6328: 48,33 - node: color: '#9FED5847' id: BrickTileWhiteInnerNw @@ -2420,17 +2756,34 @@ entities: color: '#D381C996' id: BrickTileWhiteInnerNw decals: - 2088: 53,20 + 6658: 62,15 + 6673: 58,15 + 6687: 55,20 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerNw + decals: + 5583: 47,31 + 6484: 37,27 - node: color: '#D381C996' id: BrickTileWhiteInnerSe decals: - 2084: 50,19 + 6831: 51,9 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerSe + decals: + 5571: 35,30 + 5572: 34,29 + 6478: 48,36 - node: color: '#D381C996' id: BrickTileWhiteInnerSw decals: - 2083: 54,19 + 6674: 58,17 + 6690: 55,23 + 6814: 49,9 - node: color: '#334E6DC8' id: BrickTileWhiteLineE @@ -2442,6 +2795,7 @@ entities: decals: 2687: -23,-10 2688: -23,-17 + 5883: 44,28 - node: color: '#9FED583B' id: BrickTileWhiteLineE @@ -2468,9 +2822,51 @@ entities: color: '#D381C996' id: BrickTileWhiteLineE decals: - 2076: 50,17 - 2077: 50,18 - 2090: 51,21 + 6584: 47,19 + 6585: 47,18 + 6586: 47,17 + 6587: 47,16 + 6588: 47,15 + 6593: 42,11 + 6595: 42,9 + 6653: 64,14 + 6663: 60,17 + 6664: 60,18 + 6665: 60,19 + 6670: 57,21 + 6671: 57,22 + 6704: 62,23 + 6705: 62,24 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineE + decals: + 5483: 27,32 + 5484: 27,31 + 5485: 27,30 + 5494: 27,21 + 5495: 27,20 + 5496: 27,19 + 5497: 27,18 + 5498: 27,17 + 5499: 27,22 + 5537: 34,24 + 5593: 57,32 + 5602: 37,33 + 5726: 40,27 + 5782: 45,34 + 6290: 34,28 + 6291: 34,27 + 6320: 48,34 + 6321: 48,35 + 6494: 40,26 + 6504: 54,31 + 6528: 27,27 + 6529: 27,26 + 6530: 27,28 + 6531: 27,29 + 6838: 27,25 + 6839: 27,23 - node: color: '#334E6DC8' id: BrickTileWhiteLineN @@ -2481,7 +2877,6 @@ entities: color: '#52B4E996' id: BrickTileWhiteLineN decals: - 2741: 32,36 3117: -3,1 - node: color: '#9FED5847' @@ -2507,23 +2902,61 @@ entities: decals: 1458: 18,24 1459: 19,24 - 2739: 30,36 3121: -11,1 - node: color: '#D381C996' id: BrickTileWhiteLineN decals: - 2056: 52,14 - 2057: 51,14 - 2058: 50,14 - 2059: 49,14 - 2060: 48,14 - 2087: 52,20 - 2182: 66,15 - 2183: 67,15 - 2184: 68,15 - 2740: 31,36 3120: -13,1 + 6225: 60,25 + 6597: 48,11 + 6598: 47,11 + 6599: 46,11 + 6604: 45,11 + 6633: 54,15 + 6634: 55,15 + 6635: 56,15 + 6636: 57,15 + 6656: 63,16 + 6657: 61,15 + 6667: 59,20 + 6668: 58,20 + 6685: 50,21 + 6686: 54,20 + 6694: 54,25 + 6695: 55,25 + 6696: 56,25 + 6707: 61,25 + 6708: 60,25 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + decals: + 5540: 30,25 + 5541: 31,25 + 5549: 30,31 + 5555: 37,31 + 5556: 38,31 + 5559: 42,31 + 5560: 43,31 + 5562: 46,31 + 5606: 35,34 + 5607: 36,34 + 5704: 35,21 + 5757: 40,36 + 5861: 32,21 + 5862: 34,21 + 6378: 33,31 + 6485: 32,25 + 6489: 34,31 + 6490: 36,31 + 6495: 39,28 + 6512: 41,31 + 6522: 39,31 + 6842: 31,21 + 6843: 29,21 + 6859: 52,33 + 6860: 49,33 - node: color: '#EFB34196' id: BrickTileWhiteLineN @@ -2538,13 +2971,6 @@ entities: 418: 44,-40 419: 45,-40 420: 46,-40 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineN - decals: - 2039: 50,13 - 2040: 49,13 - 2044: 51,13 - node: color: '#334E6DC8' id: BrickTileWhiteLineS @@ -2552,10 +2978,10 @@ entities: 1851: 16,-6 1852: 15,-6 - node: - color: '#334E6DFF' + color: '#52B4E996' id: BrickTileWhiteLineS decals: - 2736: 32,36 + 5888: 43,27 - node: color: '#9FED583B' id: BrickTileWhiteLineS @@ -2584,34 +3010,55 @@ entities: color: '#D381C996' id: BrickTileWhiteLineS decals: - 2051: 49,14 - 2052: 50,14 - 2053: 51,14 - 2054: 52,14 - 2055: 48,14 - 2078: 51,19 - 2079: 52,19 - 2080: 53,19 - 2185: 68,14 - 2186: 67,14 - 2187: 66,14 + 6606: 45,9 + 6607: 46,9 + 6608: 47,9 + 6609: 48,9 + 6637: 54,13 + 6647: 59,13 + 6648: 60,13 + 6649: 61,13 + 6651: 63,13 + 6675: 57,17 + 6676: 56,17 + 6677: 54,17 + 6678: 55,17 + 6679: 50,17 + 6691: 54,23 + 6701: 60,22 + 6702: 61,22 + 6798: 50,8 + 6828: 52,9 + 6829: 53,9 + 6830: 54,9 + 6872: 46,13 + 6873: 43,13 + 6874: 55,13 - node: color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 2737: 31,36 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineS - decals: - 2738: 30,36 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineS - decals: - 2041: 51,15 - 2042: 50,15 - 2043: 49,15 + 5551: 30,30 + 5563: 36,30 + 5570: 46,30 + 5576: 47,30 + 5579: 51,30 + 5580: 52,30 + 5581: 53,30 + 5599: 36,32 + 5720: 37,24 + 5721: 38,24 + 5722: 39,24 + 5780: 44,33 + 5860: 31,23 + 6480: 42,30 + 6482: 37,30 + 6496: 48,30 + 6505: 50,30 + 6523: 39,30 + 6524: 40,30 + 6525: 41,30 + 6840: 32,23 - node: color: '#334E6DC8' id: BrickTileWhiteLineW @@ -2623,6 +3070,7 @@ entities: decals: 2689: -7,-17 2690: -7,-10 + 5885: 42,28 - node: color: '#9FED583B' id: BrickTileWhiteLineW @@ -2660,20 +3108,73 @@ entities: color: '#D381C996' id: BrickTileWhiteLineW decals: - 2081: 54,17 - 2082: 54,18 + 6553: 69,33 + 6554: 69,32 + 6555: 69,31 + 6680: 49,19 + 6681: 49,20 + 6684: 49,18 + 6688: 55,21 + 6689: 55,22 + 6698: 53,24 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineW + decals: + 5717: 36,26 + 5718: 36,25 + 5759: 39,35 + 6324: 47,35 + 6325: 47,34 + 6326: 47,33 + 6327: 47,32 + 6397: 34,33 + 6488: 32,30 + 6499: 56,32 + 6532: 32,29 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineW decals: 2224: 78,-2 2225: 78,-1 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BushAOne + decals: + 6458: 61,49 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BushAThree + decals: + 6461: 51,49 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Busha1 + decals: + 6460: 63,48 + - node: + angle: 0.4014257279586958 rad + color: '#FF140922' + id: Bushn1 + decals: + 5415: 54.875694,44.926968 - node: color: '#FFFFFFFF' id: Caution decals: 4814: 26.000326,-32.342445 4815: 26.000326,-36.049404 + 6807: 52.9952,10.188756 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: Caution + decals: + 6808: 59.910686,26.985073 - node: color: '#52B4E996' id: CheckerNESW @@ -2733,6 +3234,13 @@ entities: 2237: 76,-8 2238: 76,-7 2239: 77,-7 + - node: + color: '#D381C996' + id: CheckerNESW + decals: + 6709: 60.495213,23.502304 + 6735: 56,21 + 6736: 56,22 - node: color: '#D4D4D428' id: CheckerNESW @@ -2772,6 +3280,11 @@ entities: 4686: 26,-37 4772: 26,-36 4773: 26,-32 + - node: + color: '#52B4E996' + id: CheckerNWSE + decals: + 5890: 43,28 - node: color: '#9FED5822' id: CheckerNWSE @@ -2789,12 +3302,26 @@ entities: 2222: 77,-2 2223: 77,-1 - node: - color: '#EFB34196' + color: '#DE3A3A96' id: CheckerNWSE decals: - 3921: 18,-19 - 3922: 18,-18 - 3923: 18,-17 + 5728: 38,26 + 5802: 56.498737,31.993965 + 5803: 37.003437,30.50393 + 5804: 38.004116,30.50393 + 5808: 42.002586,30.50393 + 5818: 33.004704,19.493225 + 5819: 34.003857,19.493225 + 5823: 37.996056,19.493225 + 5824: 39.002533,19.493225 + 5825: 36.0029,19.497932 + 5826: 35.0029,19.497932 + 5827: 37.0029,19.497932 + 6391: 44,34 + 6392: 44,35 + 6393: 40,34 + 6394: 40,35 + 6858: 29.49797,27.479872 - node: color: '#FFFFFF93' id: CheckerNWSE @@ -2828,8 +3355,6 @@ entities: 203: 5,-4 204: 6,-4 205: 6,-5 - 241: 51,8 - 242: 49,8 385: 5,-7 413: 46,-39 414: 46,-38 @@ -2851,7 +3376,6 @@ entities: 1182: 17,1 1694: 40,12 1695: 41,12 - 1696: 42,12 1771: 39,-1 1772: 39,0 1773: 39,1 @@ -2863,15 +3387,9 @@ entities: 1938: 38,13 1939: 38,14 1940: 38,15 - 2061: 53,13 - 2062: 53,14 - 2063: 53,15 2096: 58,16 2097: 59,16 2098: 60,16 - 2099: 58,21 - 2100: 59,21 - 2101: 60,21 3182: 11,30 3183: 12,30 3184: 13,30 @@ -2895,8 +3413,16 @@ entities: 4360: 39,-41 4432: 21,16 4505: 35,-33 - 4571: 58,11 5176: 6,-20 + 6579: 42,12 + 6713: 58,23 + 6714: 58,24 + 6799: 56,12 + 6800: 57,12 + 6801: 58,12 + 6806: 53,11 + 6832: 48,14 + 6835: 55,10 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -2907,8 +3433,8 @@ entities: color: '#FFFFFFFF' id: DeliveryGreyscale decals: - 2064: 52,14 - 2065: 48,14 + 6223: 48,18 + 6224: 48,17 - node: color: '#334E6DC8' id: DiagonalCheckerBOverlay @@ -2917,6 +3443,19 @@ entities: 3062: 73,23 3063: 74,23 3064: 74,22 + - node: + color: '#FF1409FF' + id: Dirt + decals: + 5413: 55.06262,44.98224 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 6463: 61,49 + 6464: 63,48 + 6465: 51,49 - node: cleanable: True zIndex: 1 @@ -2951,29 +3490,13 @@ entities: 1524: 23,22 1525: 23,23 1526: 23,21 - 1623: 32,17 - 1624: 32,18 - 1625: 33,17 - 1626: 35,20 - 1627: 35,21 - 1628: 33,23 - 1629: 34,24 - 1633: 30,23 - 1634: 30,18 - 1635: 29,17 - 1636: 29,20 - 1637: 30,20 1653: 25,18 1654: 25,19 1655: 25,20 1656: 25,22 - 1657: 27,20 1658: 25,23 1659: 25,24 - 1660: 26,24 - 1661: 27,23 1662: 25,25 - 1663: 27,26 2256: 55,-16 2257: 55,-16 2258: 56,-16 @@ -2985,15 +3508,10 @@ entities: 2306: 33,-17 2307: 31,-16 2308: 29,-17 - 3031: 36,31 - 3128: 56,35 - 3129: 57,40 3288: 12,28 3289: 11,27 3290: 13,27 3297: 8,20 - 3298: 6,22 - 3299: 6,24 3300: 7,23 3301: 7,27 3302: 10,24 @@ -3007,11 +3525,8 @@ entities: 3310: 13,24 3311: 12,25 3312: 9,22 - 3313: 8,27 3315: 10,25 3316: 9,23 - 3317: 8,24 - 3318: 6,26 3319: 12,23 3320: 10,22 3325: 11,20 @@ -3025,10 +3540,8 @@ entities: 3444: 5,31 3445: 9,34 3446: 8,34 - 3447: 9,29 3448: 5,35 3455: 7,28 - 3456: 6,27 3538: 6,33 3539: 8,33 3601: 4,37 @@ -3039,7 +3552,6 @@ entities: 4083: 25,-26 4084: 24,-24 4085: 27,-25 - 4617: 32,25 4780: 24,-32 4784: 29,-33 4790: 22,-31 @@ -3053,7 +3565,6 @@ entities: 5098: 23,-39 5099: 17,-39 5100: 16,-42 - 5101: 19,-44 5102: 23,-42 5103: 25,-42 5104: 25,-41 @@ -3072,6 +3583,26 @@ entities: 5160: 22,-28 5207: 22,-37 5208: 20,-37 + - node: + color: '#FF1409FF' + id: DirtHeavy + decals: + 5403: 55,41 + 5412: 54.00012,44.997864 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 6424: 38,41 + 6429: 45,45 + 6430: 49,44 + 6431: 49,49 + 6432: 57,50 + 6437: 39,46 + 6466: 48,26 + 6546: 71,31 + 6547: 71,32 - node: cleanable: True zIndex: 1 @@ -3084,24 +3615,9 @@ entities: 1485: 18,21 1507: 23,23 2260: 55,-15 - 2895: 41,34 - 2901: 39,34 2906: 46,27 - 2922: 49,33 - 2995: 54,32 - 2996: 53,37 - 2997: 58,36 - 3007: 59,34 - 3008: 59,38 - 3009: 58,32 - 3010: 59,32 - 3011: 59,40 - 3029: 38,22 - 3041: 54,47 - 3132: 58,31 3251: 7,22 3252: 6,25 - 3253: 8,26 3254: 11,28 3256: 13,30 3257: 14,23 @@ -3109,14 +3625,12 @@ entities: 3259: 10,23 3260: 13,21 3261: 11,25 - 3262: 7,24 3263: 13,26 3264: 11,21 3265: 16,20 3330: 11,29 3418: 8,29 3419: 6,28 - 3433: 9,29 3526: 7,34 3540: 7,33 3605: 5,37 @@ -3137,12 +3651,6 @@ entities: 3864: 72,-4 3898: 4,38 3909: 30,-27 - 3931: 35,31 - 3934: 31,23 - 3937: 31,29 - 3948: 47,35 - 3949: 52,34 - 3952: 46,35 4076: 29,-27 4086: 24,-25 4274: 30,-37 @@ -3157,9 +3665,7 @@ entities: 5009: 13,-25 5014: 15,-24 5035: 19,-35 - 5046: 19,-44 5047: 20,-40 - 5048: 22,-44 5049: 22,-39 5050: 22,-41 5055: 22,-43 @@ -3179,32 +3685,34 @@ entities: 5182: 5,-21 5253: 30,-26 5256: 30,-25 + - node: + color: '#FF1409FF' + id: DirtHeavyMonotile + decals: + 5402: 54,40 + 5407: 55,45 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 6425: 38,42 + 6433: 59,49 + 6438: 40,47 + 6462: 62,48 + 6470: 67,33 + 6548: 70,32 - node: cleanable: True zIndex: 1 color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 2894: 39,33 - 2904: 40,35 - 2932: 37,19 - 2933: 38,17 - 3000: 55,34 - 3001: 54,35 - 3002: 56,38 3003: 54,39 - 3024: 37,31 - 3025: 40,30 - 3033: 59,36 - 3039: 50,34 - 3044: 58,47 - 3131: 58,31 3268: 7,26 3269: 13,25 3271: 9,21 3272: 14,21 - 3273: 6,23 - 3274: 6,26 3275: 9,25 3276: 13,28 3277: 12,29 @@ -3216,7 +3724,6 @@ entities: 3421: 8,28 3435: 6,31 3437: 8,30 - 3457: 6,23 3592: 4,40 3608: 4,38 3609: 6,37 @@ -3233,13 +3740,6 @@ entities: 3904: 6,32 3905: 8,30 3908: 29,-27 - 3932: 35,30 - 3933: 28,24 - 3938: 29,30 - 3942: 29,28 - 3950: 47,34 - 3951: 52,35 - 3953: 46,36 4075: 29,-29 4080: 31,-27 4089: 25,-24 @@ -3271,7 +3771,6 @@ entities: 5034: 16,-37 5036: 21,-35 5044: 21,-36 - 5051: 20,-44 5052: 23,-41 5053: 22,-40 5054: 20,-43 @@ -3298,6 +3797,20 @@ entities: 5184: 7,-19 5238: 31,-24 5254: 31,-26 + - node: + color: '#FF1409FF' + id: DirtLight + decals: + 5405: 55,45 + 5406: 55,45 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 6428: 44,45 + 6435: 55,49 + 6467: 50,26 - node: cleanable: True zIndex: 1 @@ -3344,29 +3857,12 @@ entities: 1516: 23,23 1517: 23,22 1518: 22,25 - 1638: 30,17 - 1639: 30,21 - 1640: 33,18 - 1641: 35,19 - 1642: 34,23 - 1644: 35,23 - 1645: 30,24 - 1646: 29,23 - 1647: 35,28 - 1648: 34,27 - 1650: 33,29 - 1652: 36,22 1664: 25,21 1665: 26,22 - 1666: 26,23 - 1667: 27,20 1668: 26,19 1669: 25,15 1788: 25,27 - 1789: 26,28 - 1790: 27,30 1793: 26,34 - 1794: 27,34 2263: 55,-15 2264: 55,-14 2265: 54,-14 @@ -3374,42 +3870,7 @@ entities: 2267: 57,-16 2268: 57,-15 2269: 57,-14 - 2896: 39,35 - 2897: 41,36 - 2900: 41,33 - 2902: 39,36 - 2903: 40,34 - 2908: 49,35 - 2935: 39,18 - 2982: 54,34 - 2983: 55,37 - 2984: 55,40 - 2985: 53,40 - 2986: 57,37 - 2987: 56,33 - 2988: 54,33 - 2989: 58,36 - 2990: 58,40 - 2991: 55,41 - 2992: 54,40 - 2993: 53,34 - 2994: 53,33 - 2999: 55,35 - 3004: 57,39 - 3006: 55,32 - 3012: 55,38 - 3013: 46,33 - 3015: 36,30 - 3016: 39,31 - 3017: 41,30 - 3018: 43,31 - 3028: 40,22 - 3030: 39,24 - 3040: 51,35 - 3042: 57,47 - 3133: 55,39 3279: 7,25 - 3280: 8,23 3281: 12,21 3282: 14,24 3283: 10,27 @@ -3434,19 +3895,12 @@ entities: 3902: 4,37 3903: 5,33 3906: 8,32 - 3935: 31,24 - 3936: 28,23 - 3940: 31,30 - 3941: 30,29 - 3943: 29,29 4078: 30,-29 4081: 31,-28 4087: 26,-25 4090: 27,-24 4275: 30,-36 4462: 39,-37 - 4613: 33,25 - 4614: 34,27 4745: 26,-37 4779: 24,-33 4782: 28,-32 @@ -3503,6 +3957,27 @@ entities: 5210: 19,-37 5212: 19,-29 5236: 31,-25 + - node: + color: '#FF1409FF' + id: DirtMedium + decals: + 5401: 53,41 + - node: + color: '#FFFFFFFF' + id: DirtMedium + decals: + 6544: 70,33 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 6426: 39,43 + 6427: 42,45 + 6434: 58,50 + 6468: 49,26 + 6469: 67,31 + 6549: 72,32 - node: cleanable: True zIndex: 1 @@ -3526,23 +4001,6 @@ entities: 1506: 23,21 2261: 56,-14 2262: 55,-16 - 2891: 33,30 - 2898: 40,33 - 2899: 39,35 - 2918: 58,40 - 2936: 37,18 - 2975: 53,32 - 2976: 56,34 - 2977: 54,37 - 2978: 58,40 - 2979: 56,32 - 2981: 55,31 - 3019: 37,30 - 3020: 39,30 - 3021: 43,30 - 3022: 38,31 - 3023: 42,31 - 3043: 56,47 3291: 8,25 3292: 8,22 3293: 7,21 @@ -3570,15 +4028,11 @@ entities: 3880: 71,-6 3882: 74,-4 3895: 30,-29 - 3939: 30,28 - 3954: 46,34 4077: 29,-28 4088: 25,-25 4362: 41,-39 4363: 35,-44 4463: 40,-37 - 4615: 33,27 - 4616: 32,26 4746: 25,-37 4778: 24,-34 4783: 26,-32 @@ -3619,6 +4073,11 @@ entities: id: Flowersy1 decals: 798: 46.528667,-10.391078 + - node: + color: '#DE3A3A96' + id: Flowersy4 + decals: + 6295: 57.77299,36.672016 - node: color: '#FFFFFFFF' id: Flowersy4 @@ -3696,18 +4155,6 @@ entities: 1713: 24,48 1714: 23,48 1715: 22,48 - - node: - color: '#DE3A3A96' - id: FullTileOverlayGreyscale - decals: - 92: 31,18 - 93: 31,20 - 1613: 27,23 - 1614: 27,24 - 3944: 47,34 - 3945: 47,35 - 3946: 52,35 - 3947: 52,34 - node: color: '#EFB34196' id: FullTileOverlayGreyscale @@ -3731,6 +4178,33 @@ entities: 4768: 22,-33 4877: 18,-40 4878: 24,-40 + - node: + color: '#FFFFFFFF' + id: Grassa1 + decals: + 6552: 70,32 + - node: + color: '#FFFFFFFF' + id: Grassa3 + decals: + 6536: 71,35 + 6551: 71,33 + - node: + color: '#FFFFFFFF' + id: Grassa4 + decals: + 6541: 71,33 + 6550: 71,32 + - node: + color: '#FFFFFFFF' + id: Grassa5 + decals: + 6537: 71,34 + - node: + color: '#FFFFFFFF' + id: Grassb2 + decals: + 6538: 70,35 - node: color: '#FFFFFFFF' id: Grassd1 @@ -3753,6 +4227,12 @@ entities: 791: 46.966167,-10.891078 792: 46.091167,-10.859828 793: 46.263042,-10.062953 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimLineN + decals: + 6404: 50,37 + 6405: 51,37 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale @@ -3763,8 +4243,6 @@ entities: 1723: 26,37 1724: 27,37 1725: 28,37 - 1726: 27,36 - 1727: 27,35 1863: 10,-6 1864: 11,-6 1865: 12,-6 @@ -3813,33 +4291,6 @@ entities: decals: 3210: 14,25 3214: 10,28 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale - decals: - 26: 62,25 - 27: 63,25 - 28: 64,25 - 2066: 53,11 - 2067: 52,11 - 2068: 51,11 - 2069: 50,11 - 2070: 48,11 - 2071: 49,11 - 2072: 55,11 - 2615: 61,25 - 2616: 54,20 - 2617: 55,20 - 2618: 56,20 - 2619: 57,20 - 4530: 60,11 - 4531: 61,11 - 4532: 62,11 - 4533: 63,11 - 4543: 47,11 - 4544: 46,11 - 4545: 45,11 - 4561: 44,11 - node: color: '#D4D4D428' id: HalfTileOverlayGreyscale @@ -3855,21 +4306,7 @@ entities: color: '#DE3A3A96' id: HalfTileOverlayGreyscale decals: - 74: 31,24 - 75: 30,24 - 76: 29,24 - 77: 28,24 - 178: 36,24 1149: -2,-4 - 2744: 33,31 - 2808: 34,31 - 2823: 36,19 - 2824: 37,19 - 2825: 38,19 - 2826: 39,19 - 2939: 36,31 - 2940: 43,31 - 3930: 35,31 - node: color: '#EFB34128' id: HalfTileOverlayGreyscale @@ -3968,18 +4405,6 @@ entities: 3199: 10,21 3202: 12,20 3203: 13,20 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale180 - decals: - 32: 62,13 - 2620: 57,17 - 2621: 56,17 - 2622: 55,17 - 2623: 54,17 - 4548: 48,9 - 4549: 47,9 - 4562: 46,9 - node: color: '#D4D4D428' id: HalfTileOverlayGreyscale180 @@ -3989,21 +4414,7 @@ entities: color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 decals: - 39: 36,21 - 78: 28,23 - 79: 29,23 - 80: 30,23 - 81: 31,23 - 90: 33,17 - 91: 34,17 1150: -2,-6 - 2819: 36,17 - 2820: 37,17 - 2821: 38,17 - 2822: 39,17 - 2937: 36,30 - 2938: 43,30 - 3929: 35,30 - node: color: '#EFB34166' id: HalfTileOverlayGreyscale180 @@ -4016,9 +4427,6 @@ entities: id: HalfTileOverlayGreyscale180 decals: 4722: 21,-31 - 4868: 20,-44 - 4869: 21,-44 - 4870: 22,-44 4918: 16,-37 4919: 17,-37 4920: 18,-37 @@ -4031,6 +4439,9 @@ entities: 5199: 19,-37 5200: 20,-37 5201: 21,-37 + 6413: 20,-44 + 6414: 21,-44 + 6415: 22,-44 - node: color: '#FA750096' id: HalfTileOverlayGreyscale180 @@ -4084,45 +4495,12 @@ entities: color: '#A4610696' id: HalfTileOverlayGreyscale270 decals: - 3219: 6,22 3220: 6,25 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale270 - decals: - 18: 49,21 - 19: 49,20 - 20: 49,19 - 21: 49,18 - 22: 49,17 - 23: 53,25 - 24: 53,24 - 25: 53,23 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 decals: - 83: 32,22 - 84: 32,21 - 85: 32,20 - 86: 32,19 - 87: 32,18 - 88: 32,17 1148: -3,-5 - 2745: 32,30 - 2815: 32,29 - 2816: 29,28 - 2817: 29,29 - 2818: 29,30 - 2829: 35,23 - 2830: 35,22 - 2840: 38,23 - 2841: 38,22 - 2842: 38,21 - 4609: 32,25 - 4610: 32,26 - 4611: 32,27 - 4612: 32,28 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale270 @@ -4210,48 +4588,11 @@ entities: 3208: 15,24 3212: 13,26 3213: 13,27 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale90 - decals: - 11: 47,19 - 12: 47,18 - 13: 47,17 - 14: 47,16 - 15: 47,15 - 16: 47,14 - 17: 47,13 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale90 decals: - 36: 35,18 - 37: 35,19 - 38: 35,20 - 41: 35,17 - 44: 36,22 - 50: 35,25 - 51: 35,26 - 52: 35,27 - 53: 35,28 - 56: 34,29 - 179: 36,23 1147: -1,-5 - 1600: 27,17 - 1601: 27,18 - 1602: 27,19 - 1603: 27,20 - 1604: 27,21 - 1605: 27,26 - 1606: 27,27 - 1609: 27,30 - 1610: 27,31 - 2813: 27,29 - 2814: 27,28 - 2827: 33,23 - 2828: 33,22 - 2843: 41,23 - 2844: 41,22 - node: color: '#EFB34166' id: HalfTileOverlayGreyscale90 @@ -4290,15 +4631,17 @@ entities: id: LoadingArea decals: 1473: 23,25 - 1621: 31,18 - 1622: 31,20 - 3235: 8,26 + 6573: 7,26 - node: color: '#FFFFFFFF' id: LoadingArea decals: 1471: 22,23 1472: 22,24 + 6418: 20,-44 + 6419: 21,-44 + 6420: 22,-44 + 6845: 33,21 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -4308,14 +4651,75 @@ entities: 1177: 14,-2 1178: 15,-2 3096: 82,30 - 3236: 8,24 + 6572: 7,24 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: LoadingArea decals: - 2838: 39,24 - 2839: 40,24 + 6844: 30,23 + - node: + color: '#827F8896' + id: MiniTileCheckerAOverlay + decals: + 6765: 66,15 + 6766: 67,15 + 6767: 68,15 + 6768: 68,14 + 6769: 67,14 + 6770: 66,14 + 6772: 50,14 + 6773: 51,14 + 6790: 52,11 + 6791: 52,10 + 6792: 53,10 + 6793: 53,11 + 6794: 54,11 + 6795: 54,10 + - node: + color: '#85828896' + id: MiniTileCheckerAOverlay + decals: + 6834: 49,14 + - node: + color: '#88818B96' + id: MiniTileCheckerAOverlay + decals: + 6802: 57,8 + 6803: 57,9 + 6804: 57,10 + 6805: 57,11 + - node: + color: '#D4D4D428' + id: MiniTileCheckerBOverlay + decals: + 6556: 72,29 + 6557: 71,29 + 6558: 71,28 + 6559: 72,28 + 6560: 72,27 + 6561: 71,27 + 6562: 70,34 + 6563: 69,34 + 6564: 69,35 + - node: + cleanable: True + color: '#D4D4D428' + id: MiniTileCheckerBOverlay + decals: + 6443: 52,50 + 6444: 51,50 + 6445: 50,50 + 6446: 49,50 + 6447: 60,50 + 6448: 61,50 + 6449: 62,50 + 6450: 63,50 + 6451: 54,47 + 6452: 55,47 + 6453: 56,47 + 6454: 57,47 + 6455: 58,47 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale @@ -4362,20 +4766,6 @@ entities: 3837: 62,2 3838: 65,2 3840: 59,2 - - node: - color: '#797C8250' - id: QuarterTileOverlayGreyscale - decals: - 2130: 54,15 - 2131: 54,15 - 2132: 55,15 - 2133: 55,15 - 2134: 56,15 - 2135: 56,15 - 2136: 57,15 - 2137: 57,15 - 2138: 58,15 - 2139: 58,15 - node: color: '#80C71FFF' id: QuarterTileOverlayGreyscale @@ -4428,7 +4818,6 @@ entities: 1540: 25,23 1541: 25,24 1542: 25,25 - 1543: 35,29 1753: 25,26 1947: 18,1 1948: 19,1 @@ -4451,8 +4840,6 @@ entities: 2013: 45,17 2014: 45,18 2015: 45,19 - 2016: 46,19 - 2017: 47,19 2018: 40,11 2019: 40,10 2020: 40,8 @@ -4505,7 +4892,6 @@ entities: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale decals: - 54: 35,28 739: 24,-25 740: 24,-24 955: 27,5 @@ -4537,19 +4923,6 @@ entities: 1111: 0,0 1112: 1,0 1113: 2,0 - 2768: 48,35 - 2769: 49,35 - 2770: 50,35 - 2771: 51,35 - 2780: 39,36 - 2781: 40,36 - 2788: 41,36 - 2941: 37,31 - 2942: 38,31 - 2943: 39,31 - 2944: 40,31 - 2945: 41,31 - 2946: 42,31 4367: -6,0 4368: -7,0 4369: -8,0 @@ -4563,7 +4936,6 @@ entities: 4377: -19,0 4378: -20,0 4379: -21,0 - 4581: 32,24 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale @@ -4619,36 +4991,6 @@ entities: 988: 25,8 989: 26,8 990: 27,8 - - node: - color: '#797C8250' - id: QuarterTileOverlayGreyscale180 - decals: - 2102: 60,13 - 2103: 60,13 - 2104: 59,13 - 2105: 59,13 - 2106: 58,13 - 2107: 58,13 - 2140: 64,13 - 2141: 64,13 - 2142: 64,14 - 2143: 64,14 - 2150: 60,17 - 2151: 60,17 - 2152: 60,18 - 2153: 60,18 - 2154: 60,19 - 2155: 60,19 - 2156: 60,20 - 2157: 60,20 - 2174: 54,22 - 2175: 54,22 - 2176: 55,22 - 2177: 55,22 - 2178: 56,22 - 2179: 56,22 - 2180: 57,22 - 2181: 57,22 - node: color: '#80C71FFF' id: QuarterTileOverlayGreyscale180 @@ -4686,7 +5028,6 @@ entities: color: '#D381C996' id: QuarterTileOverlayGreyscale180 decals: - 33: 61,13 2531: 106,-19 2532: 108,-17 2533: 108,-19 @@ -4717,7 +5058,6 @@ entities: 1141: 0,-2 1142: 1,-2 1754: 27,33 - 1755: 27,34 1756: 28,34 1757: 28,35 1758: 28,36 @@ -4785,9 +5125,6 @@ entities: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale180 decals: - 40: 35,21 - 89: 32,17 - 180: 36,24 2471: 105,-19 2472: 104,-18 2473: 106,-16 @@ -4796,20 +5133,6 @@ entities: 2476: 103,-17 2477: 102,-18 2478: 103,-20 - 2764: 48,34 - 2765: 49,34 - 2766: 50,34 - 2767: 51,34 - 2778: 40,33 - 2779: 41,33 - 2787: 39,33 - 2807: 34,30 - 2947: 37,30 - 2948: 38,30 - 2949: 39,30 - 2950: 40,30 - 2951: 41,30 - 2952: 42,30 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale180 @@ -4819,6 +5142,11 @@ entities: 1904: 9,-7 4912: 18,-31 4967: 26,-30 + 5385: 22,-20 + 5386: 22,-19 + 5387: 22,-18 + 5388: 22,-17 + 5389: 22,-16 - node: color: '#EFCC2E82' id: QuarterTileOverlayGreyscale180 @@ -4835,28 +5163,6 @@ entities: 732: 27,-23 733: 27,-24 734: 27,-25 - - node: - color: '#EFCC4593' - id: QuarterTileOverlayGreyscale180 - decals: - 748: 22,-20 - 749: 22,-19 - 750: 22,-18 - 751: 22,-17 - 752: 22,-16 - - node: - color: '#FA750096' - id: QuarterTileOverlayGreyscale180 - decals: - 2955: 57,40 - 2956: 57,39 - 2957: 57,38 - 2958: 57,37 - 2959: 57,36 - 2960: 57,35 - 2965: 57,32 - 2967: 57,34 - 2968: 57,33 - node: color: '#FED83DFF' id: QuarterTileOverlayGreyscale180 @@ -4902,28 +5208,6 @@ entities: decals: 2685: -22,-15 3688: 54,2 - - node: - color: '#797C8250' - id: QuarterTileOverlayGreyscale270 - decals: - 2112: 57,8 - 2113: 57,8 - 2114: 57,9 - 2115: 57,9 - 2116: 57,10 - 2117: 57,10 - 2118: 57,11 - 2119: 57,11 - 2120: 57,12 - 2121: 57,12 - 2122: 57,13 - 2123: 57,13 - 2124: 56,13 - 2125: 56,13 - 2126: 55,13 - 2127: 55,13 - 2128: 54,13 - 2129: 54,13 - node: color: '#951710FF' id: QuarterTileOverlayGreyscale270 @@ -4967,7 +5251,6 @@ entities: color: '#D381C996' id: QuarterTileOverlayGreyscale270 decals: - 34: 63,13 4563: 55,5 4564: 56,5 4565: 57,5 @@ -5033,14 +5316,6 @@ entities: 1990: 19,-1 1991: 18,-1 1996: 39,13 - 1997: 40,13 - 1998: 41,13 - 1999: 42,13 - 2000: 43,13 - 2001: 44,13 - 2002: 45,13 - 2003: 46,13 - 2004: 47,13 2465: 40,-1 2466: 41,-1 2467: 41,-2 @@ -5060,11 +5335,6 @@ entities: 4404: -19,-2 4405: -20,-2 4406: -21,-2 - 4604: 24,33 - 4605: 24,32 - 4606: 24,31 - 4607: 24,30 - 4608: 24,29 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale270 @@ -5101,16 +5371,21 @@ entities: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 decals: - 42: 36,16 - 43: 35,17 - 82: 32,23 - 2831: 34,23 + 6519: 39,31 + 6520: 40,31 + 6521: 41,31 + 6527: 32,20 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale270 decals: 4886: 16,-40 4911: 17,-31 + 5380: 20,-20 + 5381: 20,-19 + 5382: 20,-18 + 5383: 20,-17 + 5384: 20,-16 - node: color: '#EFCC2E82' id: QuarterTileOverlayGreyscale270 @@ -5127,15 +5402,6 @@ entities: 720: 25,-16 721: 25,-15 722: 25,-14 - - node: - color: '#EFCC4593' - id: QuarterTileOverlayGreyscale270 - decals: - 743: 20,-20 - 744: 20,-19 - 745: 20,-18 - 746: 20,-17 - 747: 20,-16 - node: color: '#F9801DFF' id: QuarterTileOverlayGreyscale270 @@ -5153,7 +5419,6 @@ entities: 223: 26,41 224: 26,42 3079: 69,22 - 3080: 69,23 3084: 79,31 3085: 80,31 3086: 81,31 @@ -5192,30 +5457,6 @@ entities: 3835: 64,2 3836: 67,2 3841: 58,2 - - node: - color: '#797C8250' - id: QuarterTileOverlayGreyscale90 - decals: - 2144: 64,16 - 2145: 64,16 - 2146: 63,16 - 2147: 63,16 - 2148: 62,16 - 2149: 62,16 - 2160: 60,25 - 2161: 60,25 - 2162: 59,25 - 2163: 59,25 - 2164: 58,25 - 2165: 58,25 - 2166: 57,25 - 2167: 57,25 - 2168: 56,25 - 2169: 56,25 - 2170: 55,25 - 2171: 55,25 - 2172: 54,25 - 2173: 54,25 - node: color: '#8932B8FF' id: QuarterTileOverlayGreyscale90 @@ -5269,7 +5510,6 @@ entities: 1675: 33,15 1676: 34,15 1677: 35,15 - 1678: 36,15 1679: 37,15 1728: 25,37 1729: 24,37 @@ -5321,9 +5561,6 @@ entities: 2030: 42,6 2031: 42,7 2032: 42,8 - 2033: 42,9 - 2034: 42,10 - 2035: 42,11 2458: 47,0 2459: 46,0 2460: 45,0 @@ -5373,9 +5610,10 @@ entities: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 decals: - 45: 36,21 - 55: 34,28 - 177: 35,24 + 6516: 39,30 + 6517: 40,30 + 6518: 41,30 + 6526: 32,19 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale90 @@ -5472,7 +5710,6 @@ entities: id: ThreeQuarterTileOverlayGreyscale decals: 1144: -3,-4 - 2743: 32,31 - node: color: '#EFB34128' id: ThreeQuarterTileOverlayGreyscale @@ -5530,7 +5767,6 @@ entities: id: ThreeQuarterTileOverlayGreyscale180 decals: 1146: -1,-6 - 1612: 27,25 - node: color: '#EFB34166' id: ThreeQuarterTileOverlayGreyscale180 @@ -5540,10 +5776,10 @@ entities: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale180 decals: - 4867: 23,-44 4880: 17,-43 4964: 23,-29 5197: 22,-37 + 6423: 23,-44 - node: color: '#EFCC2E82' id: ThreeQuarterTileOverlayGreyscale180 @@ -5593,12 +5829,12 @@ entities: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale270 decals: - 4866: 19,-44 4879: 16,-43 4885: 15,-40 4906: 15,-37 4930: 13,-29 4966: 25,-30 + 6417: 19,-44 - node: color: '#EFCC2E82' id: ThreeQuarterTileOverlayGreyscale270 @@ -5645,7 +5881,6 @@ entities: id: ThreeQuarterTileOverlayGreyscale90 decals: 1143: -1,-4 - 1611: 27,22 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale90 @@ -5667,6 +5902,12 @@ entities: 1785: 23,-12 1786: 26,-8 1787: 30,-11 + - node: + color: '#FFFFFFFF' + id: WarnBox + decals: + 5262: 85,30 + 6750: 51,15 - node: color: '#52B4E996' id: WarnCornerGreyscaleNE @@ -5692,17 +5933,14 @@ entities: id: WarnCornerNE decals: 2249: 57,-14 - 3101: 92,27 4516: 3,-30 - 5265: 41,27 + 6294: 43,33 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 1586: 39,27 2248: 54,-14 2580: 36,-44 - 3098: 82,29 3102: 96,27 4517: 2,-30 - node: @@ -5710,7 +5948,6 @@ entities: id: WarnCornerSE decals: 2246: 57,-16 - 3104: 92,33 3108: 80,33 4518: 3,-33 - node: @@ -5718,9 +5955,8 @@ entities: id: WarnCornerSW decals: 2247: 54,-16 - 3097: 82,31 - 3103: 96,33 4519: 2,-33 + 5264: 96,33 - node: color: '#334E6DC8' id: WarnCornerSmallGreyscaleNE @@ -5731,6 +5967,15 @@ entities: id: WarnCornerSmallGreyscaleNE decals: 1890: 9,-7 + 6117: 10,28 + 6118: 7,28 + 6389: 41,33 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleNW + decals: + 6119: 9,28 + 6226: 60,25 - node: color: '#334E6DC8' id: WarnCornerSmallGreyscaleSE @@ -5741,38 +5986,49 @@ entities: id: WarnCornerSmallGreyscaleSE decals: 1891: 9,-8 + 6107: 20,22 + 6114: 15,22 + 6115: 13,20 + 6121: 7,21 + 6388: 41,36 + - node: + color: '#FFFFFFDC' + id: WarnCornerSmallGreyscaleSW + decals: + 5616: 36,32 + 5639: 29,25 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleSW + decals: + 6106: 17,22 + 6116: 15,20 + 6120: 9,21 + 6387: 43,36 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 1620: 27,21 2561: 39,-49 - 3014: 46,33 3533: 6,33 3919: 18,-46 - 4578: 57,8 4831: 24,-36 - 4859: 19,-44 + 6422: 19,-44 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: 2560: 41,-49 - 2974: 53,33 3920: 24,-46 4827: 28,-36 - 4860: 23,-44 + 6421: 23,-44 + 6731: 60,25 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 1619: 27,26 2563: 39,-45 - 2848: 46,36 3653: 6,39 - 4542: 48,10 - 4560: 52,10 - 4577: 57,12 4807: 24,-32 4862: 19,-42 5206: 19,-37 @@ -5781,19 +6037,23 @@ entities: id: WarnCornerSmallSW decals: 2562: 41,-45 - 2852: 53,36 - 4559: 52,10 4808: 28,-32 4861: 23,-42 5205: 23,-37 + 6811: 60,27 + - node: + color: '#FFFFFFFF' + id: WarnEndW + decals: + 5263: 92,30 - node: color: '#FFFFFFFF' id: WarnFull decals: - 1594: 40,25 - 1595: 39,25 2242: 77,0 2245: 77,-3 + 6727: 59,26 + 6728: 61,27 - node: color: '#52B4E996' id: WarnFullGreyscale @@ -5801,6 +6061,12 @@ entities: 2436: 71,3 3832: 70,2 3833: 70,1 + - node: + color: '#FFFFFF93' + id: WarnFullGreyscale + decals: + 5511: 33,26 + 5742: 40,32 - node: color: '#FFFFFFFF' id: WarnFullGreyscale @@ -5822,14 +6088,14 @@ entities: 4983: 31,-34 4984: 31,-30 5169: 14,-35 + 6095: 45,12 + 6096: 44,12 + 6381: 42,34 + 6382: 42,35 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 1615: 27,22 - 1616: 27,23 - 1617: 27,24 - 1618: 27,25 2251: 57,-15 2557: 39,-48 2558: 39,-46 @@ -5838,8 +6104,6 @@ entities: 2643: 40,-16 2644: 40,-15 2731: -23,-23 - 2846: 46,35 - 2847: 46,34 3110: 80,34 3651: 6,38 3652: 6,37 @@ -5853,17 +6117,13 @@ entities: 4501: 36,-33 4520: 3,-32 4521: 3,-31 - 4551: 48,9 - 4556: 52,9 - 4557: 52,8 - 4572: 57,9 - 4573: 57,10 - 4574: 57,11 4800: 24,-35 4801: 24,-34 4802: 24,-33 4855: 19,-43 - 5264: 41,26 + 5265: 65,47 + 5266: 65,46 + 6809: 60,27 - node: color: '#334E6DC8' id: WarnLineGreyscaleE @@ -5875,11 +6135,32 @@ entities: decals: 3770: 62,-6 3849: 61,-1 + - node: + color: '#D381C996' + id: WarnLineGreyscaleE + decals: + 6745: 57,23 + 6746: 57,24 + 6747: 64,15 + 6820: 42,10 + 6826: 47,14 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleE + decals: + 6492: 40,25 + 6509: 54,32 + 6855: 27,24 - node: color: '#FA750096' id: WarnLineGreyscaleE decals: 3767: 53,-7 + - node: + color: '#FFFFFFDC' + id: WarnLineGreyscaleE + decals: + 5623: 31,30 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleE @@ -5900,6 +6181,12 @@ entities: 4891: 23,-40 4902: 27,-29 4988: 28,-37 + 6108: 20,21 + 6109: 20,20 + 6110: 15,20 + 6111: 15,21 + 6383: 41,34 + 6384: 41,35 - node: color: '#52B4E996' id: WarnLineGreyscaleN @@ -5908,11 +6195,17 @@ entities: 3850: 58,0 3851: 59,0 3852: 60,0 + 6869: 43,29 - node: - color: '#D381C996' + color: '#DE3A3A96' id: WarnLineGreyscaleN decals: - 4552: 54,11 + 6471: 33,25 + 6472: 35,31 + 6474: 38,28 + 6477: 48,36 + 6508: 53,33 + 6510: 40,31 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN @@ -5945,11 +6238,35 @@ entities: 3846: 58,-2 3847: 59,-2 3848: 60,-2 + - node: + color: '#D381C996' + id: WarnLineGreyscaleS + decals: + 6870: 44,13 + 6871: 45,13 + 6875: 56,13 + 6876: 57,13 + 6877: 58,13 + 6878: 62,13 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleS + decals: + 6473: 38,30 + 6475: 43,30 + 6476: 49,30 + 6854: 40,33 - node: color: '#FA750096' id: WarnLineGreyscaleS decals: 3768: 50,-9 + - node: + color: '#FFFFFFDC' + id: WarnLineGreyscaleS + decals: + 5613: 34,32 + 5614: 35,32 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleS @@ -5978,6 +6295,20 @@ entities: id: WarnLineGreyscaleW decals: 3853: 57,-1 + - node: + color: '#D381C996' + id: WarnLineGreyscaleW + decals: + 6744: 53,14 + 6748: 59,24 + 6749: 59,23 + 6817: 44,10 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleW + decals: + 6533: 32,27 + 6534: 32,28 - node: color: '#FA750096' id: WarnLineGreyscaleW @@ -6003,13 +6334,16 @@ entities: 4892: 16,-42 4900: 15,-35 4971: 25,-29 + 6104: 22,20 + 6105: 22,21 + 6112: 17,20 + 6113: 17,21 + 6385: 43,34 + 6386: 43,35 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 2045: 51,13 - 2046: 50,13 - 2047: 49,13 2243: 78,-2 2244: 77,-2 2252: 56,-16 @@ -6018,16 +6352,7 @@ entities: 2600: 49,-12 2601: 50,-12 2732: -6,-20 - 3099: 84,32 - 3100: 86,32 3109: 79,33 - 4534: 49,10 - 4535: 50,10 - 4536: 51,10 - 4538: 53,10 - 4539: 54,10 - 4540: 55,10 - 4575: 58,12 4793: 25,-32 4794: 26,-32 4795: 27,-32 @@ -6037,6 +6362,9 @@ entities: 5202: 21,-37 5203: 20,-37 5204: 22,-37 + 6751: 50,15 + 6752: 49,15 + 6810: 59,27 - node: color: '#FFFFFFFF' id: WarnLineS @@ -6053,12 +6381,6 @@ entities: 2591: 36,-47 2592: 36,-46 2593: 36,-45 - 2972: 53,34 - 2973: 53,35 - 3221: 6,27 - 3222: 6,26 - 3223: 6,24 - 3224: 6,23 4047: 46,-49 4478: 46,-45 4502: 34,-31 @@ -6066,9 +6388,6 @@ entities: 4504: 34,-33 4522: 2,-32 4523: 2,-31 - 4554: 52,8 - 4558: 52,9 - 4590: 39,26 4803: 28,-35 4804: 28,-34 4805: 28,-33 @@ -6078,6 +6397,18 @@ entities: 5220: 33,-25 5221: 33,-24 5222: 33,-23 + 5267: 67,47 + 5268: 67,46 + 6569: 6,27 + 6570: 6,26 + 6574: 6,24 + 6575: 6,23 + - node: + color: '#DE3A3A96' + id: WarnLineW + decals: + 6867: 50,33 + 6868: 51,33 - node: color: '#FFFFFFFF' id: WarnLineW @@ -6085,12 +6416,7 @@ entities: 218: 13,37 219: 14,37 220: 15,37 - 754: 22,-16 755: 21,-16 - 756: 20,-16 - 2048: 51,15 - 2049: 50,15 - 2050: 49,15 2240: 77,-1 2241: 78,-1 2254: 56,-14 @@ -6104,9 +6430,6 @@ entities: 2586: 42,-44 2587: 44,-44 2588: 43,-44 - 2854: 48,33 - 2855: 49,33 - 2856: 50,33 3530: 7,33 3531: 8,33 3537: 9,33 @@ -6115,23 +6438,17 @@ entities: 3916: 21,-46 3917: 22,-46 3918: 23,-46 - 4576: 58,8 4797: 25,-36 4798: 26,-36 4799: 27,-36 - 4852: 20,-44 - 4853: 21,-44 - 4854: 22,-44 - 5263: 40,27 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarningLine - decals: - 175: 36,21 - 176: 36,22 - 181: 36,23 - 182: 36,24 + 5390: 20,-16 + 5391: 21,-16 + 5392: 22,-16 + 5393: 23,-16 + 6726: 59,25 + 6753: 49,13 + 6754: 50,13 + 6755: 51,13 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe @@ -6139,6 +6456,13 @@ entities: 1858: 20,-3 3240: 9,19 3249: 6,16 + 5297: 44,25 + 6240: 65,11 + 6307: 49,42 + 6317: 44,43 + 6340: 55,38 + 6350: 59,39 + 6359: 55,38 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw @@ -6146,6 +6470,13 @@ entities: 1856: 18,-3 3237: 5,19 3250: 5,16 + 5300: 42,25 + 6244: 64,11 + 6256: 60,11 + 6306: 46,42 + 6318: 42,43 + 6341: 53,38 + 6351: 57,39 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe @@ -6154,6 +6485,13 @@ entities: 3239: 9,18 3248: 6,15 5213: 21,-12 + 5299: 44,24 + 6241: 65,10 + 6261: 62,8 + 6308: 49,40 + 6316: 44,41 + 6348: 59,38 + 6362: 58,35 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw @@ -6161,6 +6499,22 @@ entities: 1853: 18,-6 3238: 5,18 3247: 5,15 + 5298: 42,24 + 6245: 64,10 + 6259: 60,8 + 6319: 42,41 + 6349: 57,38 + 6367: 53,35 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndE + decals: + 6360: 59,36 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNe + decals: + 6356: 55,36 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNw @@ -6170,8 +6524,10 @@ entities: color: '#FFFFFFFF' id: WoodTrimThinInnerSe decals: - 4529: 60,10 5215: 20,-12 + 6264: 62,10 + 6309: 48,40 + 6361: 58,36 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE @@ -6180,9 +6536,11 @@ entities: 1780: 21,-10 1859: 20,-4 1860: 20,-5 - 4524: 60,8 - 4525: 60,9 5214: 20,-13 + 6262: 62,9 + 6310: 49,41 + 6311: 44,42 + 6357: 55,37 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN @@ -6197,6 +6555,20 @@ entities: 5143: 10,-37 5144: 11,-37 5145: 12,-37 + 5302: 43,25 + 6265: 61,11 + 6266: 62,11 + 6267: 63,11 + 6300: 48,39 + 6301: 47,39 + 6302: 46,39 + 6303: 43,43 + 6312: 47,42 + 6313: 48,42 + 6353: 58,39 + 6354: 57,36 + 6355: 56,36 + 6358: 54,38 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS @@ -6206,9 +6578,19 @@ entities: 3244: 6,18 3245: 7,18 3246: 8,18 - 4526: 61,10 - 4527: 62,10 - 4528: 63,10 + 5301: 43,24 + 6260: 61,8 + 6263: 63,10 + 6304: 43,41 + 6344: 54,35 + 6345: 55,35 + 6346: 56,35 + 6347: 57,35 + 6352: 58,38 + 6363: 57,35 + 6364: 56,35 + 6365: 55,35 + 6366: 54,35 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW @@ -6218,6 +6600,25 @@ entities: 5146: 13,-36 5147: 13,-35 5148: 13,-34 + 6257: 60,10 + 6258: 60,9 + 6305: 46,40 + 6314: 46,41 + 6315: 42,42 + 6342: 53,37 + 6343: 53,36 + - node: + angle: 0.4014257279586958 rad + color: '#FFFFFFFF' + id: body + decals: + 5414: 54.859493,45.13849 + - node: + color: '#FFFFFFFF' + id: burnt1 + decals: + 5433: 55,41 + 5435: 52,40 - node: cleanable: True color: '#FFFFFFFF' @@ -6245,6 +6646,13 @@ entities: 4496: 47,-49 4508: 35,-31 4512: 36,-32 + - node: + color: '#FFFFFFFF' + id: burnt3 + decals: + 5430: 52,42 + 5431: 52,42 + 5434: 52,42 - node: cleanable: True color: '#FFFFFFFF' @@ -6255,6 +6663,11 @@ entities: 4492: 47,-48 4509: 36,-31 4513: 34,-33 + - node: + color: '#FFFFFFFF' + id: burnt4 + decals: + 5432: 54,41 - node: cleanable: True color: '#FFFFFFFF' @@ -6268,28 +6681,11 @@ entities: 4510: 34,-32 4514: 35,-33 - node: - cleanable: True - angle: -1.5707963267948966 rad - color: '#1206120F' - id: footprint + angle: 0.13962634015954636 rad + color: '#9C2020FF' + id: danger decals: - 3038: 37.85091,30.216513 - - node: - cleanable: True - angle: -1.5707963267948966 rad - color: '#12061228' - id: footprint - decals: - 3037: 37.455074,30.584824 - - node: - cleanable: True - angle: -1.5707963267948966 rad - color: '#12061247' - id: footprint - decals: - 3034: 36.107853,30.160917 - 3035: 36.482853,30.550077 - 3036: 37.08702,30.258207 + 6457: 62.048172,49.059433 - node: cleanable: True angle: -1.5707963267948966 rad @@ -6358,7 +6754,6 @@ entities: color: '#4632327F' id: footprint decals: - 3459: 7.786436,27.447971 3460: 8.098936,28.059507 3461: 7.765602,28.810028 3462: 8.182269,29.303427 @@ -6411,7 +6806,6 @@ entities: 3359: 7.8475504,21.302177 3360: 8.173939,21.823374 3361: 7.7850504,22.497452 - 3362: 8.132273,23.053394 3478: 5.7794914,30.754562 3479: 6.140602,31.234062 3480: 5.79338,31.73441 @@ -6424,8 +6818,6 @@ entities: 3506: 8.198838,29.574697 3507: 7.7405043,30.297422 3508: 7.976616,30.756943 - 3509: 8.210273,27.260662 - 3510: 7.793606,26.725567 3542: 5.813014,32.55113 3543: 6.104681,33.051476 3544: 8.569844,32.77003 @@ -6450,7 +6842,6 @@ entities: 3356: 12.595434,24.818508 3357: 11.762101,25.263262 3368: 6.7781057,25.172922 - 3369: 7.125328,24.776814 3370: 7.7642174,25.20072 3385: 13.443252,22.368464 3386: 13.033529,22.01405 @@ -6475,7 +6866,6 @@ entities: 3517: 14.683398,20.187449 3518: 14.183398,20.656523 3519: 13.641731,20.27084 - 3520: 8.2431135,24.784645 3521: 8.8368635,25.201601 3522: 17.269722,20.829908 3523: 16.759306,20.339985 @@ -6541,10 +6931,15 @@ entities: decals: 509: 19.872448,-39.76645 - node: - color: '#FFFFFFFF' - id: ghost + color: '#DE3A3A96' + id: grasssnow03 decals: - 2468: 13,-11 + 6296: 58.069866,36.640766 + - node: + color: '#DE3A3A96' + id: grasssnow10 + decals: + 6297: 58.007366,36.859516 - node: color: '#D4D4D428' id: guy @@ -6637,6 +7032,57 @@ entities: - type: Transform pos: 12.501018,-34.058125 parent: 2 +- proto: ActionToggleInternals + entities: + - uid: 6295 + mapInit: true + paused: true + components: + - type: Transform + parent: 10308 + - type: Action + originalIconColor: '#FFFFFFFF' + container: 10308 +- proto: ActionToggleJetpack + entities: + - uid: 6125 + mapInit: true + paused: true + components: + - type: Transform + parent: 10308 + - type: Action + originalIconColor: '#FFFFFFFF' + container: 10308 +- proto: ActionToggleLight + entities: + - uid: 6399 + mapInit: true + paused: true + components: + - type: Transform + parent: 10814 + - type: Action + originalIconColor: '#FFFFFFFF' + container: 10814 + - uid: 6731 + mapInit: true + paused: true + components: + - type: Transform + parent: 8472 + - type: Action + originalIconColor: '#FFFFFFFF' + container: 8472 + - uid: 11094 + mapInit: true + paused: true + components: + - type: Transform + parent: 11032 + - type: Action + originalIconColor: '#FFFFFFFF' + container: 11032 - proto: AirAlarm entities: - uid: 5 @@ -6656,12 +7102,6 @@ entities: - 14736 - 429 - 8203 - - uid: 129 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-33.5 - parent: 2 - uid: 138 components: - type: Transform @@ -6672,19 +7112,6 @@ entities: devices: - 4027 - 4092 - - uid: 151 - components: - - type: Transform - pos: 56.5,16.5 - parent: 2 - - type: DeviceList - devices: - - 10418 - - 10417 - - 10416 - - 12554 - - 10358 - - 10403 - uid: 170 components: - type: Transform @@ -6695,16 +7122,6 @@ entities: devices: - 4460 - 4447 - - uid: 182 - components: - - type: Transform - pos: 67.5,17.5 - parent: 2 - - type: DeviceList - devices: - - 12564 - - 10347 - - 10400 - uid: 195 components: - type: Transform @@ -6768,26 +7185,16 @@ entities: - 5657 - uid: 1520 components: + - type: MetaData + name: Telecomms Air Monitor - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-15.5 parent: 2 - type: DeviceList devices: - - 1560 - - uid: 1647 - components: - - type: Transform - pos: 53.5,26.5 - parent: 2 - - type: DeviceList - devices: - - 10413 - - 10414 - - 10415 - - 10412 - - 12559 - - 10352 + - 6881 + - 5820 - uid: 2124 components: - type: Transform @@ -6804,23 +7211,37 @@ entities: - 241 - 14065 - 14064 - - uid: 2296 + - uid: 2132 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,20.5 + rot: 3.141592653589793 rad + pos: 82.5,28.5 + parent: 2 + - uid: 2602 + components: + - type: Transform + pos: 91.5,33.5 parent: 2 - type: DeviceList devices: - - 10416 - - 10417 - - 10418 - - 185 - - 10413 - - 10414 - - 10415 - - 10356 - - 10375 + - 14548 + - 14421 + - 14420 + - 14433 + - 14432 + - 14549 + - uid: 2614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,40.5 + parent: 2 + - uid: 3090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,42.5 + parent: 2 - uid: 5020 components: - type: Transform @@ -6858,22 +7279,40 @@ entities: parent: 2 - type: DeviceList devices: - - 10402 - - 10331 - 12989 - - uid: 5859 + - 5392 + - 10662 + - 12485 + - 13435 + - 10324 + - 3481 + - uid: 5242 components: + - type: MetaData + name: air alarm (Sci - RD Office) - type: Transform - pos: 34.5,32.5 + rot: 1.5707963267948966 rad + pos: 59.5,9.5 parent: 2 - type: DeviceList devices: - - 2691 - - 8575 - - 10452 - - 2263 - - 2265 - - 12529 + - 9454 + - 12563 + - 4280 + - uid: 5398 + components: + - type: MetaData + name: air alarm (Sec - East) + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,29.5 + parent: 2 + - type: DeviceList + devices: + - 15375 + - 15368 + - 5450 + - 15524 - uid: 6126 components: - type: Transform @@ -6969,17 +7408,27 @@ entities: - 7708 - uid: 8571 components: - - type: MetaData - name: Head of Security Room Air Alarm - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,21.5 + pos: 42.5,32.5 parent: 2 - type: DeviceList devices: - - 2330 - - 8595 - - 8596 + - 1231 + - 8706 + - 11683 + - 15368 + - 14941 + - 14939 + - 2334 + - 10527 + - 9589 + - 10613 + - 10612 + - 5395 + - 15554 + - 73 + - 248 + - 15375 - uid: 8922 components: - type: Transform @@ -6999,22 +7448,6 @@ entities: - 6804 - 10206 - 10205 - - uid: 9587 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,31.5 - parent: 2 - - type: DeviceList - devices: - - 9586 - - 9585 - - 9584 - - 9589 - - 9570 - - 9569 - - 9236 - - 13510 - uid: 9637 components: - type: Transform @@ -7024,6 +7457,18 @@ entities: devices: - 9636 - 9635 + - uid: 10135 + components: + - type: MetaData + name: air alarm (Armory) + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,36.5 + parent: 2 + - type: DeviceList + devices: + - 5426 + - 13644 - uid: 10201 components: - type: Transform @@ -7086,16 +7531,97 @@ entities: devices: - 10249 - 10248 + - uid: 10409 + components: + - type: MetaData + name: air alarm (Sci - Anomaly) + - type: Transform + pos: 67.5,17.5 + parent: 2 + - type: DeviceList + devices: + - 1622 + - 10080 + - 3 + - 15898 - uid: 10419 components: + - type: MetaData + name: air alarm (Artifact Chamber) - type: Transform rot: -1.5707963267948966 rad pos: 65.5,24.5 parent: 2 - type: DeviceList devices: - - 10411 - - 10355 + - 5651 + - 10671 + - 15476 + - 15492 + - 15535 + - uid: 10469 + components: + - type: MetaData + name: air alarm (Sci - South Hall) + - type: Transform + pos: 55.5,16.5 + parent: 2 + - type: DeviceList + devices: + - 10418 + - 8460 + - 10416 + - 15492 + - 15898 + - 10340 + - 9442 + - 10662 + - 5478 + - 12485 + - uid: 10524 + components: + - type: MetaData + name: air alarm (Sec - Brig) + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 5395 + - 15368 + - 15554 + - 15490 + - 15491 + - 10598 + - 12553 + - 14330 + - 15552 + - 5390 + - 12516 + - 12518 + - uid: 10576 + components: + - type: MetaData + name: air alarm (Sci - North) + - type: Transform + pos: 58.5,21.5 + parent: 2 + - type: DeviceList + devices: + - 8601 + - 15492 + - 10058 + - 10418 + - 8460 + - 10416 + - 15898 + - 5651 + - 10671 + - 15476 + - 12087 + - 7267 + - 12485 - uid: 10653 components: - type: Transform @@ -7120,18 +7646,6 @@ entities: - 5774 - 5775 - 5776 - - uid: 10988 - components: - - type: Transform - pos: 37.5,32.5 - parent: 2 - - type: DeviceList - devices: - - 6774 - - 9456 - - 7760 - - 2301 - - 1812 - uid: 11165 components: - type: Transform @@ -7143,20 +7657,27 @@ entities: - 1103 - 1104 - 11250 - - 11249 - - 11248 - 11322 - 11323 - 11324 - 12516 - - 12085 - 8240 - - 8810 - 8242 - 8243 - - 9586 - - 9585 - - 9584 + - 8625 + - 11249 + - 11248 + - 12518 + - uid: 11289 + components: + - type: MetaData + name: air monitor (Artifact Chamber) + - type: Transform + pos: 61.5,26.5 + parent: 2 + - type: DeviceList + devices: + - 8980 - uid: 11508 components: - type: Transform @@ -7193,6 +7714,18 @@ entities: - 14994 - 14992 - 12161 + - uid: 11680 + components: + - type: Transform + pos: 82.5,32.5 + parent: 2 + - type: DeviceList + devices: + - 14373 + - 14385 + - 14547 + - 14384 + - 14377 - uid: 11730 components: - type: Transform @@ -7310,10 +7843,10 @@ entities: - 3459 - 9359 - 9358 - - 9351 - 9353 - 9352 - 2690 + - 3224 - uid: 12480 components: - type: Transform @@ -7361,11 +7894,15 @@ entities: - 9364 - 9363 - 9362 - - 9351 - 9353 - 9352 - 5103 - 10365 + - 3224 + - 7267 + - 15492 + - 5478 + - 15898 - uid: 12488 components: - type: Transform @@ -7407,36 +7944,6 @@ entities: devices: - 11957 - 11956 - - uid: 12528 - components: - - type: Transform - pos: 37.5,20.5 - parent: 2 - - type: DeviceList - devices: - - 8629 - - 8630 - - uid: 12530 - components: - - type: MetaData - name: Armory Air Alarm - - type: Transform - pos: 41.5,29.5 - parent: 2 - - type: DeviceList - devices: - - 8607 - - 8610 - - 15477 - - uid: 12532 - components: - - type: Transform - pos: 42.5,21.5 - parent: 2 - - type: DeviceList - devices: - - 8684 - - 8685 - uid: 12537 components: - type: Transform @@ -7458,44 +7965,6 @@ entities: - 12540 - 9558 - 9557 - - uid: 12548 - components: - - type: Transform - pos: 54.5,21.5 - parent: 2 - - type: DeviceList - devices: - - 12550 - - 12087 - - 10366 - - 10351 - - uid: 12562 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,10.5 - parent: 2 - - type: DeviceList - devices: - - 12563 - - 10346 - - 10401 - - uid: 13512 - components: - - type: Transform - pos: 48.5,36.5 - parent: 2 - - type: DeviceList - devices: - - 8349 - - 13511 - - 4414 - - 13515 - - 13517 - - 3152 - - 13523 - - 13514 - - 13507 - uid: 13984 components: - type: Transform @@ -7544,27 +8013,31 @@ entities: - 7895 - 6854 - 7663 - - uid: 14247 + - uid: 14171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,31.5 + rot: 1.5707963267948966 rad + pos: 52.5,35.5 parent: 2 - type: DeviceList devices: - - 14547 - - 14385 - - 14373 - - 14377 - - 14384 - - 14420 - - 14421 - - 14433 - - 14432 - - 14549 - - 14552 - - 14551 - - 14553 + - 2145 + - 8485 + - 8498 + - uid: 14521 + components: + - type: MetaData + name: air alarm (Security - Warden) + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,27.5 + parent: 2 + - type: DeviceList + devices: + - 14871 + - 14850 + - 14852 + - 15465 - uid: 14615 components: - type: Transform @@ -7576,7 +8049,17 @@ entities: - 14614 - 14613 - 14616 - - 14622 + - uid: 14653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-18.5 + parent: 2 + - type: DeviceList + devices: + - 7269 + - 5866 + - 5821 - uid: 14670 components: - type: Transform @@ -7612,45 +8095,92 @@ entities: devices: - 15296 - 15298 - - uid: 15476 + - uid: 15466 components: - type: MetaData - name: Armory Entrance Air Alarm + name: air alarm (North Hall) - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,21.5 + rot: -1.5707963267948966 rad + pos: 28.5,23.5 parent: 2 - type: DeviceList devices: - - 12531 - - 8597 - - 8598 + - 2334 + - 10527 + - 15368 + - 9589 + - 8243 + - 8625 + - 8240 + - 8242 + - 9570 + - 9569 + - 12516 + - 1103 + - 1104 + - 11250 + - 11249 + - 11248 + - 11322 + - 11323 + - 11324 + - 10613 + - 10612 + - 5390 + - 15554 + - 12518 + - uid: 15520 + components: + - type: MetaData + name: air alarm (Sec - HOS Office) + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,35.5 + parent: 2 + - type: DeviceList + devices: + - 12770 + - uid: 15578 + components: + - type: MetaData + name: air alarm (Sci - Can Storage) + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,7.5 + parent: 2 + - type: DeviceList + devices: + - 15879 + - 15880 + - 15882 + - 10336 + - 2421 + - 10585 + - 5392 - proto: AirCanister entities: - uid: 2078 components: - type: Transform + anchored: True pos: 28.5,-23.5 parent: 2 + - type: Physics + bodyType: Static - uid: 4572 components: - type: Transform pos: 32.5,-26.5 parent: 2 - - uid: 5518 - components: - - type: Transform - pos: 66.5,44.5 - parent: 2 - uid: 5706 components: - type: Transform pos: 85.5,-1.5 parent: 2 - - uid: 8337 + - uid: 9003 components: - type: Transform - pos: 46.5,38.5 + pos: 56.5,9.5 parent: 2 - uid: 9900 components: @@ -7672,11 +8202,6 @@ entities: - type: Transform pos: 14.5,-9.5 parent: 2 - - uid: 13571 - components: - - type: Transform - pos: 46.5,37.5 - parent: 2 - uid: 14401 components: - type: Transform @@ -7689,6 +8214,12 @@ entities: - type: Transform pos: 11.5,11.5 parent: 2 + - uid: 613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,19.5 + parent: 2 - uid: 1079 components: - type: Transform @@ -7699,23 +8230,30 @@ entities: - type: Transform pos: 17.5,13.5 parent: 2 + - uid: 4124 + components: + - type: Transform + pos: 42.5,21.5 + parent: 2 - uid: 8842 components: - type: Transform pos: 104.5,-12.5 parent: 2 -- proto: AirlockArmoryGlassLocked +- proto: AirlockArmoryLocked entities: - - uid: 37 + - uid: 2217 components: - type: Transform - pos: 40.5,25.5 + rot: 1.5707963267948966 rad + pos: 41.5,25.5 parent: 2 - - uid: 150 +- proto: AirlockAssembly + entities: + - uid: 10659 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,25.5 + pos: 56.5,45.5 parent: 2 - proto: AirlockAtmosphericsGlassLocked entities: @@ -7748,36 +8286,76 @@ entities: parent: 2 - proto: AirlockBrigGlassLocked entities: - - uid: 232 + - uid: 257 components: - type: Transform - pos: 31.5,23.5 + pos: 28.5,28.5 parent: 2 - - uid: 896 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 8414: + - - DoorStatus + - Close + 8412: + - - DoorStatus + - Close + - uid: 318 components: - type: Transform - pos: 31.5,24.5 + pos: 28.5,27.5 parent: 2 - - uid: 1152 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 8412: + - - DoorStatus + - Close + 8414: + - - DoorStatus + - Close + - uid: 2117 components: - type: Transform - pos: 35.5,30.5 + pos: 46.5,31.5 parent: 2 - - uid: 1153 + - uid: 3082 components: - type: Transform - pos: 35.5,31.5 + pos: 46.5,30.5 parent: 2 - - uid: 2188 + - uid: 8412 components: - type: Transform - pos: 28.5,24.5 + pos: 31.5,27.5 parent: 2 - - uid: 2189 + - type: DeviceLinkSource + linkedPorts: + 318: + - - DoorStatus + - Close + 257: + - - DoorStatus + - Close + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 8414 components: - type: Transform - pos: 28.5,23.5 + pos: 31.5,28.5 parent: 2 + - type: DeviceLinkSource + linkedPorts: + 318: + - - DoorStatus + - Close + 257: + - - DoorStatus + - Close + - type: DeviceLinkSink + invokeCounter: 1 - proto: AirlockBrigLocked entities: - uid: 32 @@ -7796,11 +8374,6 @@ entities: parent: 2 - proto: AirlockCaptainLocked entities: - - uid: 389 - components: - - type: Transform - pos: 35.5,40.5 - parent: 2 - uid: 2616 components: - type: Transform @@ -7863,16 +8436,16 @@ entities: parent: 2 - proto: AirlockCommandGlassLocked entities: + - uid: 348 + components: + - type: Transform + pos: 26.5,38.5 + parent: 2 - uid: 2756 components: - type: Transform pos: 28.5,38.5 parent: 2 - - uid: 2757 - components: - - type: Transform - pos: 26.5,38.5 - parent: 2 - uid: 2758 components: - type: Transform @@ -7901,13 +8474,6 @@ entities: - type: Transform pos: 16.5,36.5 parent: 2 - - uid: 8592 - components: - - type: MetaData - name: Camera Servers - - type: Transform - pos: 29.5,36.5 - parent: 2 - uid: 14087 components: - type: Transform @@ -7920,17 +8486,17 @@ entities: parent: 2 - proto: AirlockDetectiveGlassLocked entities: - - uid: 2004 + - uid: 628 components: - type: Transform - pos: 42.5,16.5 + pos: 53.5,34.5 parent: 2 - proto: AirlockDetectiveLocked entities: - - uid: 11279 + - uid: 3158 components: - type: Transform - pos: 41.5,21.5 + pos: 56.5,34.5 parent: 2 - proto: AirlockEngineering entities: @@ -8019,11 +8585,22 @@ entities: - type: Transform pos: 3.5,-9.5 parent: 2 + - uid: 413 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 2 - uid: 596 components: - type: Transform pos: 15.5,6.5 parent: 2 + - uid: 662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-14.5 + parent: 2 - uid: 815 components: - type: Transform @@ -8049,11 +8626,6 @@ entities: - type: Transform pos: 18.5,-39.5 parent: 2 - - uid: 3208 - components: - - type: Transform - pos: 35.5,33.5 - parent: 2 - uid: 3267 components: - type: Transform @@ -8064,20 +8636,22 @@ entities: - type: Transform pos: 69.5,43.5 parent: 2 - - uid: 3490 + - uid: 4012 components: - type: Transform - pos: 48.5,27.5 + rot: 3.141592653589793 rad + pos: 63.5,19.5 parent: 2 - uid: 5824 components: - type: Transform pos: 24.5,-17.5 parent: 2 - - uid: 6899 + - uid: 8500 components: - type: Transform - pos: 16.5,-12.5 + rot: -1.5707963267948966 rad + pos: 61.5,35.5 parent: 2 - uid: 11212 components: @@ -8094,18 +8668,22 @@ entities: - type: Transform pos: 52.5,-12.5 parent: 2 +- proto: AirlockEVALocked + entities: + - uid: 142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 2 + - uid: 203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 2 - proto: AirlockExternal entities: - - uid: 1889 - components: - - type: Transform - pos: 85.5,4.5 - parent: 2 - - uid: 3072 - components: - - type: Transform - pos: 74.5,-17.5 - parent: 2 - uid: 11758 components: - type: Transform @@ -8146,11 +8724,6 @@ entities: - type: Transform pos: 101.5,-20.5 parent: 2 - - uid: 15456 - components: - - type: Transform - pos: 40.5,43.5 - parent: 2 - proto: AirlockExternalAtmosphericsLocked entities: - uid: 4391 @@ -8179,35 +8752,6 @@ entities: 225: - - DoorStatus - DoorBolt - - uid: 226 - components: - - type: Transform - pos: 17.5,-17.5 - parent: 2 - - uid: 1902 - components: - - type: Transform - pos: 74.5,45.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 2128: - - - DoorStatus - - DoorBolt - - uid: 2128 - components: - - type: Transform - pos: 72.5,45.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 1902: - - - DoorStatus - - DoorBolt - uid: 4392 components: - type: Transform @@ -8252,30 +8796,89 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,-1.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 509: + - - DoorStatus + - DoorBolt + - uid: 418 + components: + - type: Transform + pos: 59.5,26.5 + parent: 2 + - type: AccessReader + access: + - - Research + - - ResearchDirector + - uid: 427 + components: + - type: Transform + pos: 61.5,27.5 + parent: 2 + - type: AccessReader + access: + - - Research + - - ResearchDirector + - uid: 565 + components: + - type: Transform + pos: 74.5,-17.5 + parent: 2 + - uid: 3137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,45.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - uid: 3321 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-9.5 parent: 2 - - uid: 4873 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,49.5 - parent: 2 - - uid: 5298 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,49.5 - parent: 2 - uid: 7610 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,0.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 4518: + - - DoorStatus + - DoorBolt + - uid: 9283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,52.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9303: + - - DoorStatus + - DoorBolt + - uid: 10771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,52.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 11675: + - - DoorStatus + - DoorBolt - uid: 13291 components: - type: Transform @@ -8293,6 +8896,13 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,-20.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 13305: + - - DoorStatus + - DoorBolt - uid: 13300 components: - type: Transform @@ -8305,6 +8915,20 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,-22.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 13294: + - - DoorStatus + - DoorBolt + - uid: 14764 + components: + - type: Transform + pos: 86.5,4.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - proto: AirlockExternalGlassAtmosphericsLocked entities: - uid: 1078 @@ -8319,12 +8943,26 @@ entities: - type: Transform pos: 5.5,24.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 607: + - - DoorStatus + - DoorBolt - uid: 428 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,26.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 451: + - - DoorStatus + - DoorBolt - uid: 974 components: - type: Transform @@ -8364,17 +9002,35 @@ entities: 173: - - DoorStatus - DoorBolt - - uid: 662 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-15.5 - parent: 2 - uid: 1216 components: - type: Transform pos: 33.5,-39.5 parent: 2 + - uid: 14522 + components: + - type: Transform + pos: 72.5,45.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 14523: + - - DoorStatus + - DoorBolt + - uid: 14523 + components: + - type: Transform + pos: 74.5,45.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 14522: + - - DoorStatus + - DoorBolt - proto: AirlockExternalGlassLocked entities: - uid: 941 @@ -8480,61 +9136,149 @@ entities: parent: 2 - proto: AirlockExternalGlassShuttleEscape entities: - - uid: 8327 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 87.5,4.5 - parent: 2 - - uid: 15442 - components: - - type: Transform - pos: 74.5,-19.5 - parent: 2 - - uid: 15457 + - uid: 389 components: - type: Transform rot: 3.141592653589793 rad - pos: 40.5,45.5 + pos: 66.5,48.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 4920 + components: + - type: Transform + pos: 74.5,-20.5 + parent: 2 + - uid: 9708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,4.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - proto: AirlockExternalGlassShuttleLocked entities: + - uid: 451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,26.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 10982: + - - DoorStatus + - InputA + - - DockStatus + - InputB + - type: DeviceLinkSink + invokeCounter: 1 - uid: 509 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-1.5 parent: 2 - - uid: 4506 + - type: DeviceLinkSource + linkedPorts: + 8663: + - - DoorStatus + - InputA + - - DockStatus + - InputB + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 607 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,51.5 + rot: -1.5707963267948966 rad + pos: 3.5,24.5 parent: 2 + - type: DeviceLinkSource + linkedPorts: + 553: + - - DoorStatus + - InputA + - - DockStatus + - InputB + - type: DeviceLinkSink + invokeCounter: 1 - uid: 4518 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,0.5 parent: 2 - - uid: 4914 + - type: DeviceLinkSource + linkedPorts: + 6639: + - - DoorStatus + - InputA + - - DockStatus + - InputB + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 9303 components: - type: Transform rot: 3.141592653589793 rad - pos: 57.5,51.5 + pos: 57.5,54.5 parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13328: + - - DoorStatus + - InputA + - - DockStatus + - InputB + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 11675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,54.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13329: + - - DoorStatus + - InputA + - - DockStatus + - InputB + - type: DeviceLinkSink + invokeCounter: 1 - uid: 13294 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-22.5 parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13297: + - - DoorStatus + - InputA + - - DockStatus + - InputB + - type: DeviceLinkSink + invokeCounter: 1 - uid: 13305 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-20.5 parent: 2 + - type: DeviceLinkSource + linkedPorts: + 9402: + - - DoorStatus + - InputA + - - DockStatus + - InputB + - type: DeviceLinkSink + invokeCounter: 1 - proto: AirlockExternalLocked entities: - uid: 1369 @@ -8585,18 +9329,6 @@ entities: 4556: - - DoorStatus - DoorBolt - - uid: 7759 - components: - - type: Transform - pos: 64.5,45.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 13556: - - - DoorStatus - - DoorBolt - uid: 8728 components: - type: Transform @@ -8621,18 +9353,6 @@ entities: 8728: - - DoorStatus - DoorBolt - - uid: 13556 - components: - - type: Transform - pos: 64.5,43.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 7759: - - - DoorStatus - - DoorBolt - uid: 13780 components: - type: Transform @@ -8669,16 +9389,6 @@ entities: - type: Transform pos: 9.5,12.5 parent: 2 - - uid: 6066 - components: - - type: Transform - pos: 59.5,35.5 - parent: 2 - - uid: 9927 - components: - - type: Transform - pos: 59.5,37.5 - parent: 2 - proto: AirlockFreezerKitchenHydroLocked entities: - uid: 559 @@ -8907,32 +9617,6 @@ entities: - type: Transform pos: -21.5,-1.5 parent: 2 -- proto: AirlockGlassShuttle - entities: - - uid: 7965 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,24.5 - parent: 2 - - uid: 8030 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,26.5 - parent: 2 -- proto: AirlockHeadOfPersonnelGlassLocked - entities: - - uid: 203 - components: - - type: Transform - pos: 9.5,-2.5 - parent: 2 - - uid: 205 - components: - - type: Transform - pos: 8.5,-2.5 - parent: 2 - proto: AirlockHeadOfPersonnelLocked entities: - uid: 222 @@ -8942,10 +9626,17 @@ entities: parent: 2 - proto: AirlockHeadOfSecurityLocked entities: - - uid: 2375 + - uid: 2338 components: - type: Transform - pos: 42.5,23.5 + rot: -1.5707963267948966 rad + pos: 48.5,37.5 + parent: 2 + - uid: 3394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,41.5 parent: 2 - proto: AirlockHydroGlassLocked entities: @@ -8975,11 +9666,6 @@ entities: parent: 2 - proto: AirlockMaint entities: - - uid: 178 - components: - - type: Transform - pos: 1.5,-2.5 - parent: 2 - uid: 295 components: - type: Transform @@ -8995,11 +9681,6 @@ entities: - type: Transform pos: 22.5,-1.5 parent: 2 - - uid: 6639 - components: - - type: Transform - pos: 66.5,30.5 - parent: 2 - uid: 11785 components: - type: Transform @@ -9045,6 +9726,14 @@ entities: - type: Transform pos: 50.5,-9.5 parent: 2 +- proto: AirlockMaintCommandLocked + entities: + - uid: 205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-10.5 + parent: 2 - proto: AirlockMaintEngiLocked entities: - uid: 810 @@ -9063,11 +9752,6 @@ entities: parent: 2 - proto: AirlockMaintHOPLocked entities: - - uid: 221 - components: - - type: Transform - pos: 9.5,-10.5 - parent: 2 - uid: 577 components: - type: MetaData @@ -9108,6 +9792,12 @@ entities: - type: Transform pos: 2.5,-15.5 parent: 2 + - uid: 653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,-1.5 + parent: 2 - uid: 1110 components: - type: Transform @@ -9123,11 +9813,6 @@ entities: - type: Transform pos: 26.5,11.5 parent: 2 - - uid: 1705 - components: - - type: Transform - pos: 47.5,20.5 - parent: 2 - uid: 1745 components: - type: Transform @@ -9143,11 +9828,31 @@ entities: - type: Transform pos: 55.5,-16.5 parent: 2 + - uid: 2067 + components: + - type: Transform + pos: 46.5,20.5 + parent: 2 - uid: 2168 components: - type: Transform pos: 19.5,18.5 parent: 2 + - uid: 2298 + components: + - type: Transform + pos: 60.5,44.5 + parent: 2 + - uid: 2370 + components: + - type: Transform + pos: 65.5,39.5 + parent: 2 + - uid: 2450 + components: + - type: Transform + pos: 66.5,30.5 + parent: 2 - uid: 2540 components: - type: Transform @@ -9178,51 +9883,11 @@ entities: - type: Transform pos: 68.5,-16.5 parent: 2 - - uid: 3386 - components: - - type: Transform - pos: 68.5,39.5 - parent: 2 - - uid: 3412 - components: - - type: Transform - pos: 68.5,28.5 - parent: 2 - - uid: 3413 - components: - - type: Transform - pos: 68.5,32.5 - parent: 2 - - uid: 4729 - components: - - type: Transform - pos: 28.5,32.5 - parent: 2 - - uid: 5444 - components: - - type: Transform - pos: 68.5,36.5 - parent: 2 - - uid: 5469 - components: - - type: Transform - pos: 67.5,45.5 - parent: 2 - uid: 5519 components: - type: Transform pos: 88.5,-10.5 parent: 2 - - uid: 5520 - components: - - type: Transform - pos: 87.5,-1.5 - parent: 2 - - uid: 5650 - components: - - type: Transform - pos: 45.5,46.5 - parent: 2 - uid: 5716 components: - type: Transform @@ -9258,6 +9923,18 @@ entities: - type: Transform pos: 13.5,15.5 parent: 2 + - uid: 7822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,46.5 + parent: 2 + - uid: 9444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,39.5 + parent: 2 - uid: 9609 components: - type: Transform @@ -9268,6 +9945,12 @@ entities: - type: Transform pos: 1.5,-18.5 parent: 2 + - uid: 13587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,34.5 + parent: 2 - uid: 13769 components: - type: Transform @@ -9278,6 +9961,11 @@ entities: - type: Transform pos: -21.5,-22.5 parent: 2 + - uid: 15629 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 2 - proto: AirlockMaintMedLocked entities: - uid: 5120 @@ -9317,11 +10005,6 @@ entities: - type: Transform pos: 64.5,17.5 parent: 2 - - uid: 5398 - components: - - type: Transform - pos: 53.5,7.5 - parent: 2 - proto: AirlockMaintRnDMedLocked entities: - uid: 1470 @@ -9329,6 +10012,16 @@ entities: - type: Transform pos: 57.5,7.5 parent: 2 + - uid: 8189 + components: + - type: Transform + pos: 51.5,7.5 + parent: 2 + - uid: 13092 + components: + - type: Transform + pos: 69.5,12.5 + parent: 2 - uid: 15364 components: - type: Transform @@ -9336,21 +10029,22 @@ entities: parent: 2 - proto: AirlockMaintSecLocked entities: - - uid: 365 + - uid: 2460 components: - type: Transform - pos: 39.5,37.5 - parent: 2 - - uid: 3206 - components: - - type: Transform - pos: 33.5,32.5 + pos: 56.5,30.5 parent: 2 - uid: 7737 components: - type: Transform pos: 0.5,-4.5 parent: 2 + - uid: 14626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,29.5 + parent: 2 - proto: AirlockMaintTheatreLocked entities: - uid: 1160 @@ -9466,10 +10160,33 @@ entities: parent: 2 - proto: AirlockScienceGlassLocked entities: - - uid: 5244 + - uid: 1041 components: - type: Transform - pos: 54.5,12.5 + pos: 58.5,24.5 + parent: 2 + - uid: 1252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,15.5 + parent: 2 + - uid: 3035 + components: + - type: Transform + pos: 52.5,14.5 + parent: 2 + - uid: 11477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,23.5 + parent: 2 + - uid: 12564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,10.5 parent: 2 - proto: AirlockScienceLocked entities: @@ -9478,75 +10195,51 @@ entities: - type: Transform pos: 43.5,10.5 parent: 2 - - uid: 5249 + - uid: 9258 components: - type: Transform - pos: 65.5,15.5 - parent: 2 - - uid: 10448 - components: - - type: Transform - pos: 52.5,14.5 + pos: 68.5,27.5 parent: 2 - uid: 10449 components: - type: Transform pos: 48.5,14.5 parent: 2 + - uid: 12168 + components: + - type: Transform + pos: 69.5,29.5 + parent: 2 - proto: AirlockSecurityGlassLocked entities: - - uid: 613 + - uid: 2284 components: - type: Transform - pos: 52.5,34.5 - parent: 2 - - uid: 2402 - components: - - type: Transform - pos: 37.5,22.5 - parent: 2 - - uid: 4132 - components: - - type: Transform - pos: 52.5,35.5 + rot: 3.141592653589793 rad + pos: 38.5,29.5 parent: 2 - proto: AirlockSecurityLocked entities: - - uid: 1660 + - uid: 2337 components: - type: Transform - pos: 47.5,34.5 - parent: 2 - - uid: 1831 - components: - - type: Transform - pos: 44.5,30.5 - parent: 2 - - type: Door - secondsUntilStateChange: -4092.861 - state: Opening - - type: DeviceLinkSource - lastSignals: - DoorStatus: True - - uid: 3259 - components: - - type: Transform - pos: 47.5,35.5 + rot: -1.5707963267948966 rad + pos: 33.5,26.5 parent: 2 - uid: 7736 components: - type: Transform pos: -0.5,-2.5 parent: 2 - - uid: 8430 + - uid: 8550 components: - type: Transform pos: 40.5,32.5 parent: 2 - - uid: 12450 + - uid: 8699 components: - type: Transform - pos: 44.5,31.5 + pos: 55.5,32.5 parent: 2 - proto: AirlockServiceLocked entities: @@ -9590,11 +10283,6 @@ entities: deviceLists: - 7013 - 14754 - - uid: 185 - components: - - type: Transform - pos: 59.5,18.5 - parent: 2 - uid: 202 components: - type: Transform @@ -9612,14 +10300,14 @@ entities: deviceLists: - 14737 - 5 - - uid: 1812 + - uid: 1622 components: - type: Transform - pos: 39.5,35.5 + pos: 67.5,13.5 parent: 2 - type: DeviceNetwork deviceLists: - - 10988 + - 10409 - uid: 2125 components: - type: Transform @@ -9628,27 +10316,27 @@ entities: - type: DeviceNetwork deviceLists: - 14067 - - uid: 2265 + - uid: 2145 components: - type: Transform - pos: 30.5,29.5 + pos: 56.5,36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 5859 - - uid: 2330 - components: - - type: Transform - pos: 44.5,22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 8571 + - 14171 - uid: 4554 components: - type: Transform pos: 26.5,-27.5 parent: 2 + - uid: 5820 + components: + - type: Transform + pos: 15.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1520 - uid: 6636 components: - type: Transform @@ -9669,6 +10357,14 @@ entities: - type: Transform pos: 44.5,-6.5 parent: 2 + - uid: 7269 + components: + - type: Transform + pos: 21.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14653 - uid: 8008 components: - type: Transform @@ -9679,6 +10375,16 @@ entities: - type: Transform pos: 21.5,0.5 parent: 2 + - uid: 8555 + components: + - type: Transform + pos: 58.5,38.5 + parent: 2 + - uid: 8615 + components: + - type: Transform + pos: 47.5,41.5 + parent: 2 - uid: 8659 components: - type: Transform @@ -9692,24 +10398,46 @@ entities: - type: Transform pos: 26.5,-5.5 parent: 2 - - uid: 9456 + - uid: 8980 components: - type: Transform - pos: 40.5,30.5 + pos: 63.5,29.5 parent: 2 - type: DeviceNetwork deviceLists: - - 10988 + - 11289 + - uid: 9409 + components: + - type: Transform + pos: 35.5,42.5 + parent: 2 - uid: 9589 components: - type: Transform pos: 26.5,32.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 15466 + - 7720 + - 8571 + - 15172 - uid: 10216 components: - type: Transform pos: 22.5,-12.5 parent: 2 + - uid: 10662 + components: + - type: Transform + pos: 50.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5101 + - 8570 + - 10469 + - 2296 - uid: 10950 components: - type: Transform @@ -9720,6 +10448,15 @@ entities: - type: Transform pos: 47.5,-0.5 parent: 2 + - uid: 11683 + components: + - type: Transform + pos: 35.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8571 + - 15172 - uid: 11746 components: - type: Transform @@ -9778,6 +10515,14 @@ entities: - type: Transform pos: 43.5,14.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 10078 + - 10576 + - 2296 + - 5101 + - 10469 + - 8570 - uid: 12490 components: - type: Transform @@ -9803,32 +10548,29 @@ entities: - type: Transform pos: 26.5,19.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 7720 + - 15466 + - 10524 + - 12517 - uid: 12518 components: - type: Transform pos: 24.5,25.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 2045 + - 10524 + - 7720 + - 15466 + - 11165 - uid: 12519 components: - type: Transform pos: 18.5,23.5 parent: 2 - - uid: 12529 - components: - - type: Transform - pos: 33.5,21.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 5859 - - uid: 12531 - components: - - type: Transform - pos: 41.5,23.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15476 - uid: 12538 components: - type: Transform @@ -9847,38 +10589,25 @@ entities: - uid: 12544 components: - type: Transform - pos: 37.5,43.5 - parent: 2 - - uid: 12550 - components: - - type: Transform - pos: 52.5,18.5 - parent: 2 - - uid: 12553 - components: - - type: Transform - pos: 49.5,9.5 - parent: 2 - - uid: 12554 - components: - - type: Transform - pos: 62.5,14.5 - parent: 2 - - uid: 12559 - components: - - type: Transform - pos: 58.5,24.5 + rot: -1.5707963267948966 rad + pos: 43.5,42.5 parent: 2 - uid: 12563 components: - type: Transform pos: 61.5,10.5 parent: 2 - - uid: 12564 + - type: DeviceNetwork + deviceLists: + - 5242 + - uid: 12770 components: - type: Transform - pos: 67.5,13.5 + pos: 49.5,41.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 15520 - uid: 12833 components: - type: Transform @@ -9887,22 +10616,14 @@ entities: - type: DeviceNetwork deviceLists: - 7962 - - uid: 13511 + - uid: 13644 components: - type: Transform - pos: 48.5,35.5 + pos: 41.5,35.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13512 - - uid: 13515 - components: - - type: Transform - pos: 56.5,35.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13512 + - 10135 - uid: 14061 components: - type: Transform @@ -9957,6 +10678,15 @@ entities: deviceLists: - 7662 - 14067 + - uid: 14330 + components: + - type: Transform + pos: 43.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10524 + - 2045 - uid: 14547 components: - type: Transform @@ -9964,12 +10694,15 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14247 + - 11680 - uid: 14548 components: - type: Transform pos: 90.5,30.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 2602 - uid: 14549 components: - type: Transform @@ -9977,7 +10710,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14247 + - 2602 - uid: 14614 components: - type: Transform @@ -9994,6 +10727,19 @@ entities: - type: DeviceNetwork deviceLists: - 14670 + - uid: 14871 + components: + - type: Transform + pos: 38.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14521 + - uid: 14940 + components: + - type: Transform + pos: 44.5,38.5 + parent: 2 - uid: 15298 components: - type: Transform @@ -10007,14 +10753,112 @@ entities: - type: Transform pos: 35.5,-16.5 parent: 2 - - uid: 15477 + - uid: 15368 components: - type: Transform - pos: 41.5,27.5 + pos: 38.5,31.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12530 + - 2248 + - 5398 + - 15466 + - 7720 + - 10524 + - 2045 + - 8571 + - 15172 + - uid: 15375 + components: + - type: Transform + pos: 50.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2248 + - 5398 + - 8571 + - 15172 + - uid: 15465 + components: + - type: Transform + pos: 43.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14521 + - uid: 15476 + components: + - type: Transform + pos: 61.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15585 + - 10419 + - 10078 + - 10576 + - uid: 15492 + components: + - type: Transform + pos: 55.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10576 + - 10078 + - 10469 + - 8570 + - 15585 + - 10419 + - 12487 + - 12486 + - uid: 15552 + components: + - type: Transform + pos: 42.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10524 + - 2045 + - uid: 15554 + components: + - type: Transform + pos: 35.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10524 + - 15466 + - 7720 + - 2045 + - 8571 + - 15172 + - uid: 15882 + components: + - type: Transform + pos: 57.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15578 + - 15897 + - uid: 15898 + components: + - type: Transform + pos: 59.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8570 + - 10469 + - 15897 + - 12487 + - 12486 + - 10576 + - 10078 + - 10409 - proto: AltarSpawner entities: - uid: 2526 @@ -10034,32 +10878,35 @@ entities: - uid: 15328 components: - type: Transform - pos: 28.354391,-41.23593 - parent: 2 + parent: 5235 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 15329 components: - type: Transform - pos: 28.416891,-41.64218 - parent: 2 + parent: 5235 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 15330 components: - type: Transform - pos: 28.698141,-41.39218 - parent: 2 + parent: 5235 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: AnalysisComputerCircuitboard entities: - uid: 13492 components: - type: Transform - pos: 63.442497,9.333562 - parent: 2 + parent: 14590 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: AnomalyScanner entities: - - uid: 1838 - components: - - type: Transform - pos: 71.66338,14.074104 - parent: 2 - uid: 5381 components: - type: Transform @@ -10072,13 +10919,20 @@ entities: parent: 2 - proto: APCBasic entities: - - uid: 257 + - uid: 43 components: - type: MetaData - name: Head of Security Room APC + name: APC (Main Hall West) - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,21.5 + pos: 9.5,11.5 + parent: 2 + - uid: 64 + components: + - type: MetaData + name: APC (Sci - RD Office) + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,10.5 parent: 2 - uid: 340 components: @@ -10104,14 +10958,6 @@ entities: rot: 3.141592653589793 rad pos: 16.5,-6.5 parent: 2 - - uid: 466 - components: - - type: MetaData - name: Bathroom APC - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,11.5 - parent: 2 - uid: 598 components: - type: MetaData @@ -10144,14 +10990,6 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,-35.5 parent: 2 - - uid: 1111 - components: - - type: MetaData - name: Laundry APC - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,5.5 - parent: 2 - uid: 1177 components: - type: MetaData @@ -10186,14 +11024,6 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,-15.5 parent: 2 - - uid: 1748 - components: - - type: MetaData - name: Technical Storage APC - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-15.5 - parent: 2 - uid: 2378 components: - type: MetaData @@ -10202,20 +11032,26 @@ entities: rot: 1.5707963267948966 rad pos: 43.5,3.5 parent: 2 - - uid: 2451 + - uid: 2464 components: - type: MetaData - name: Bridge Hallway APC + name: APC (Armory) - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,33.5 + pos: 44.5,37.5 parent: 2 - - uid: 2481 + - uid: 2603 components: - type: MetaData - name: Courtroom APC + name: APC (Maints NW) - type: Transform - pos: 20.5,34.5 + pos: 9.5,17.5 + parent: 2 + - uid: 2612 + components: + - type: MetaData + name: APC (Sec - HOS) + - type: Transform + pos: 47.5,43.5 parent: 2 - uid: 2721 components: @@ -10225,28 +11061,6 @@ entities: rot: -1.5707963267948966 rad pos: 68.5,-15.5 parent: 2 - - uid: 2902 - components: - - type: MetaData - name: Solar North East APC - - type: Transform - pos: 69.5,47.5 - parent: 2 - - uid: 3221 - components: - - type: MetaData - name: Perma APC - - type: Transform - pos: 51.5,36.5 - parent: 2 - - uid: 3250 - components: - - type: MetaData - name: Detective APC - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,20.5 - parent: 2 - uid: 3333 components: - type: MetaData @@ -10263,22 +11077,35 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,-8.5 parent: 2 - - uid: 4116 + - uid: 3687 components: - type: MetaData - name: Maint North West APC + name: APC (Sci - R&D) - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,16.5 + pos: 52.5,22.5 parent: 2 - uid: 4186 components: - type: MetaData - name: Theatre APC + name: APC (Central - Theatre) - type: Transform rot: -1.5707963267948966 rad pos: 28.5,7.5 parent: 2 + - uid: 4351 + components: + - type: MetaData + name: APC (Solars NE) + - type: Transform + pos: 70.5,47.5 + parent: 2 + - uid: 4367 + components: + - type: MetaData + name: APC (Maints NE) + - type: Transform + pos: 61.5,37.5 + parent: 2 - uid: 4647 components: - type: MetaData @@ -10378,37 +11205,6 @@ entities: - type: Transform pos: 74.5,9.5 parent: 2 - - uid: 5201 - components: - - type: MetaData - name: RD Office APC - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,11.5 - parent: 2 - - uid: 5236 - components: - - type: MetaData - name: Robotics APC - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,11.5 - parent: 2 - - uid: 5269 - components: - - type: MetaData - name: RND APC - - type: Transform - pos: 53.5,21.5 - parent: 2 - - uid: 5270 - components: - - type: MetaData - name: Sci Server Room APC - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,22.5 - parent: 2 - uid: 5271 components: - type: MetaData @@ -10426,6 +11222,13 @@ entities: - type: PowerNetworkBattery loadingNetworkDemand: 5 supplyRampPosition: 2.4463015 + - uid: 5333 + components: + - type: MetaData + name: APC (Sci - Server) + - type: Transform + pos: 51.5,25.5 + parent: 2 - uid: 5427 components: - type: MetaData @@ -10434,14 +11237,6 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,-4.5 parent: 2 - - uid: 5648 - components: - - type: MetaData - name: Maint Dorms APC - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,41.5 - parent: 2 - uid: 5689 components: - type: MetaData @@ -10480,14 +11275,6 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,-19.5 parent: 2 - - uid: 6095 - components: - - type: MetaData - name: Maint Central APC - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,9.5 - parent: 2 - uid: 6099 components: - type: MetaData @@ -10496,13 +11283,6 @@ entities: rot: 3.141592653589793 rad pos: 43.5,12.5 parent: 2 - - uid: 6172 - components: - - type: MetaData - name: Maint North East APC - - type: Transform - pos: 66.5,45.5 - parent: 2 - uid: 6342 components: - type: MetaData @@ -10535,14 +11315,6 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,-11.5 parent: 2 - - uid: 6697 - components: - - type: MetaData - name: Library APC - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,2.5 - parent: 2 - uid: 6717 components: - type: MetaData @@ -10551,14 +11323,6 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,3.5 parent: 2 - - uid: 6954 - components: - - type: MetaData - name: Main Hall West APC - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,8.5 - parent: 2 - uid: 6960 components: - type: MetaData @@ -10566,13 +11330,41 @@ entities: - type: Transform pos: 22.5,-22.5 parent: 2 - - uid: 8061 + - uid: 6965 components: - type: MetaData - name: Camera Server APC + name: APC (Dorms) - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,36.5 + rot: 3.141592653589793 rad + pos: 21.5,11.5 + parent: 2 + - uid: 6968 + components: + - type: MetaData + name: APC (Maints Central) + - type: Transform + pos: 15.5,8.5 + parent: 2 + - uid: 6990 + components: + - type: MetaData + name: APC (Sci - Robotics) + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,7.5 + parent: 2 + - uid: 8043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,11.5 + parent: 2 + - uid: 8062 + components: + - type: MetaData + name: Inner AI Core APC + - type: Transform + pos: 94.5,34.5 parent: 2 - uid: 8228 components: @@ -10617,13 +11409,13 @@ entities: rot: -1.5707963267948966 rad pos: 63.5,-7.5 parent: 2 - - uid: 10545 + - uid: 10319 components: - type: MetaData - name: Science APC + name: APC (Maints North) - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,18.5 + rot: 3.141592653589793 rad + pos: 42.5,44.5 parent: 2 - uid: 10924 components: @@ -10633,29 +11425,21 @@ entities: rot: -1.5707963267948966 rad pos: 43.5,6.5 parent: 2 - - uid: 10970 - components: - - type: MetaData - name: Interrogation APC - - type: Transform - pos: 42.5,32.5 - parent: 2 - - uid: 12151 - components: - - type: MetaData - name: XenoArch APC - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,23.5 - parent: 2 - uid: 12522 components: - type: MetaData - name: Grav Gen APC + name: APC (Bridge - Gravity Generator) - type: Transform rot: 1.5707963267948966 rad pos: 12.5,36.5 parent: 2 + - uid: 12751 + components: + - type: MetaData + name: APC (Sec - Warden) + - type: Transform + pos: 42.5,26.5 + parent: 2 - uid: 12934 components: - type: MetaData @@ -10671,12 +11455,36 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-3.5 parent: 2 - - uid: 13497 + - uid: 13117 components: - type: MetaData - name: North Maint APC + name: APC (Sec - East) - type: Transform - pos: 47.5,29.5 + rot: 3.141592653589793 rad + pos: 52.5,29.5 + parent: 2 + - uid: 13173 + components: + - type: MetaData + name: Telecomms APC + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-20.5 + parent: 2 + - uid: 13549 + components: + - type: MetaData + name: APC (Sec - Hallway West) + - type: Transform + pos: 38.5,32.5 + parent: 2 + - uid: 14084 + components: + - type: MetaData + name: APC (North Hall) + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,36.5 parent: 2 - uid: 14150 components: @@ -10692,13 +11500,13 @@ entities: - type: Transform pos: 80.5,32.5 parent: 2 - - uid: 14434 + - uid: 14569 components: - type: MetaData - name: AI Core Inner APC + name: APC (Sec - Detective) - type: Transform - rot: 3.141592653589793 rad - pos: 88.5,28.5 + rot: 1.5707963267948966 rad + pos: 52.5,36.5 parent: 2 - uid: 14691 components: @@ -10708,6 +11516,30 @@ entities: rot: 3.141592653589793 rad pos: 6.5,17.5 parent: 2 + - uid: 15562 + components: + - type: MetaData + name: APC (Sec - Brig) + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,22.5 + parent: 2 + - uid: 15579 + components: + - type: MetaData + name: APC (Sci - XenoArch) + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,22.5 + parent: 2 + - uid: 15806 + components: + - type: MetaData + name: APC (Tech Vault Secure) + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-14.5 + parent: 2 - proto: APCElectronics entities: - uid: 6656 @@ -10717,14 +11549,6 @@ entities: parent: 2 - proto: APCHighCapacity entities: - - uid: 43 - components: - - type: MetaData - name: Dorms APC - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,11.5 - parent: 2 - uid: 775 components: - type: MetaData @@ -10746,23 +11570,16 @@ entities: - type: Transform pos: 29.5,-37.5 parent: 2 - - uid: 6914 + - uid: 15878 components: - type: MetaData - name: Chapel APC + name: APC (Central - Chapel) - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,7.5 + rot: -1.5707963267948966 rad + pos: 33.5,8.5 parent: 2 - proto: APCHyperCapacity entities: - - uid: 301 - components: - - type: MetaData - name: Telecomms APC - - type: Transform - pos: 19.5,-13.5 - parent: 2 - uid: 8254 components: - type: MetaData @@ -10771,13 +11588,13 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,33.5 parent: 2 - - uid: 13690 + - uid: 15818 components: - type: MetaData - name: Cargo Bay APC + name: APC (Supply - Cargo Bay) - type: Transform rot: 3.141592653589793 rad - pos: 13.5,19.5 + pos: 10.5,20.5 parent: 2 - proto: APCSuperCapacity entities: @@ -10788,13 +11605,6 @@ entities: - type: Transform pos: 36.5,-21.5 parent: 2 - - uid: 14639 - components: - - type: MetaData - name: Security APC - - type: Transform - pos: 35.5,29.5 - parent: 2 - proto: ArrivalsShuttleTimer entities: - uid: 13576 @@ -10812,14 +11622,16 @@ entities: - uid: 15428 components: - type: Transform - pos: 63.531895,9.595779 - parent: 2 + parent: 14590 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ArtistCircuitBoard entities: - uid: 14277 components: - type: Transform - pos: 84.42593,28.765135 + pos: 84.53071,32.620792 parent: 2 - proto: Ashtray entities: @@ -10838,7 +11650,7 @@ entities: - uid: 14276 components: - type: Transform - pos: 85.47454,28.607038 + pos: 86.51151,28.70847 parent: 2 - proto: AtmosDeviceFanDirectional entities: @@ -10854,18 +11666,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,2.5 parent: 2 - - uid: 258 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,26.5 - parent: 2 - - uid: 320 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,24.5 - parent: 2 - uid: 332 components: - type: Transform @@ -10884,24 +11684,12 @@ entities: rot: 3.141592653589793 rad pos: -2.5,2.5 parent: 2 - - uid: 2450 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-22.5 - parent: 2 - uid: 2609 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-16.5 parent: 2 - - uid: 2628 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-1.5 - parent: 2 - uid: 2666 components: - type: Transform @@ -10914,65 +11702,23 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,-9.5 parent: 2 - - uid: 4920 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,0.5 - parent: 2 - uid: 5262 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-10.5 parent: 2 - - uid: 5754 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-20.5 - parent: 2 - uid: 6591 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-10.5 parent: 2 - - uid: 6876 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 87.5,4.5 - parent: 2 - - uid: 10982 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,27.5 - parent: 2 - - uid: 14979 + - uid: 14551 components: - type: Transform rot: 3.141592653589793 rad - pos: 55.5,51.5 - parent: 2 - - uid: 14980 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,51.5 - parent: 2 - - uid: 14989 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,23.5 - parent: 2 - - uid: 15466 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,45.5 + pos: 66.5,48.5 parent: 2 - proto: AtmosFixBlockerMarker entities: @@ -11006,6 +11752,16 @@ entities: - type: Transform pos: 50.5,-33.5 parent: 2 + - uid: 2037 + components: + - type: Transform + pos: 4.5,37.5 + parent: 2 + - uid: 2041 + components: + - type: Transform + pos: 4.5,39.5 + parent: 2 - uid: 4157 components: - type: Transform @@ -11021,6 +11777,41 @@ entities: - type: Transform pos: 50.5,-27.5 parent: 2 + - uid: 8067 + components: + - type: Transform + pos: 4.5,38.5 + parent: 2 + - uid: 13731 + components: + - type: Transform + pos: 4.5,40.5 + parent: 2 + - uid: 14660 + components: + - type: Transform + pos: 5.5,40.5 + parent: 2 + - uid: 14738 + components: + - type: Transform + pos: 5.5,39.5 + parent: 2 + - uid: 14743 + components: + - type: Transform + pos: 6.5,40.5 + parent: 2 + - uid: 14765 + components: + - type: Transform + pos: 6.5,39.5 + parent: 2 + - uid: 14989 + components: + - type: Transform + pos: 6.5,38.5 + parent: 2 - uid: 15188 components: - type: Transform @@ -11166,6 +11957,31 @@ entities: - type: Transform pos: 49.5,-48.5 parent: 2 + - uid: 15792 + components: + - type: Transform + pos: 5.5,38.5 + parent: 2 + - uid: 15793 + components: + - type: Transform + pos: 5.5,37.5 + parent: 2 + - uid: 15794 + components: + - type: Transform + pos: 6.5,37.5 + parent: 2 + - uid: 15795 + components: + - type: Transform + pos: 7.5,37.5 + parent: 2 + - uid: 15796 + components: + - type: Transform + pos: 7.5,38.5 + parent: 2 - proto: AtmosFixFreezerMarker entities: - uid: 6535 @@ -11281,16 +12097,22 @@ entities: parent: 2 - proto: Autolathe entities: - - uid: 474 - components: - - type: Transform - pos: 51.5,18.5 - parent: 2 - uid: 942 components: - type: Transform pos: 15.5,-23.5 parent: 2 + - uid: 5383 + components: + - type: Transform + pos: 51.5,21.5 + parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - uid: 6910 components: - type: Transform @@ -11305,6 +12127,11 @@ entities: parent: 2 - proto: Barricade entities: + - uid: 1889 + components: + - type: Transform + pos: 43.5,45.5 + parent: 2 - uid: 2913 components: - type: Transform @@ -11336,6 +12163,55 @@ entities: rot: 3.141592653589793 rad pos: 82.5,-14.5 parent: 2 + - uid: 14796 + components: + - type: Transform + pos: 64.5,43.5 + parent: 2 +- proto: BarricadeBlock + entities: + - uid: 9452 + components: + - type: Transform + pos: 68.5,27.5 + parent: 2 + - uid: 10426 + components: + - type: Transform + pos: 56.5,45.5 + parent: 2 + - uid: 13446 + components: + - type: Transform + pos: 69.5,29.5 + parent: 2 +- proto: BarricadeDirectional + entities: + - uid: 10681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,45.5 + parent: 2 + - uid: 15680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,50.5 + parent: 2 +- proto: BarSign + entities: + - uid: 9244 + components: + - type: MetaData + name: Kitchen sign + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,43.5 + parent: 2 + - type: AccessReader + access: + - - Maintenance - proto: BarSignMaidCafe entities: - uid: 6528 @@ -11350,6 +12226,9 @@ entities: - type: Transform pos: 66.5,-18.5 parent: 2 + - type: AccessReader + access: + - - Maintenance - proto: BaseGasCondenser entities: - uid: 585 @@ -11366,20 +12245,25 @@ entities: parent: 2 - proto: Beaker entities: + - uid: 2573 + components: + - type: Transform + pos: 52.654243,40.651337 + parent: 2 - uid: 4247 components: - type: Transform - pos: 35.89168,-12.492103 + pos: 36.31066,-10.451814 parent: 2 - uid: 5202 components: - type: Transform pos: 63.66416,-9.582929 parent: 2 - - uid: 5324 + - uid: 10887 components: - type: Transform - pos: 54.76479,17.614588 + pos: 63.28595,25.773993 parent: 2 - uid: 11423 components: @@ -11393,66 +12277,56 @@ entities: parent: 2 - proto: Bed entities: - - uid: 388 + - uid: 1014 components: - type: Transform - pos: 36.5,42.5 + pos: 43.5,17.5 parent: 2 - uid: 2014 components: - type: Transform pos: 6.5,15.5 parent: 2 - - uid: 2250 + - uid: 2128 components: - type: Transform - pos: 29.5,18.5 + pos: 70.5,40.5 parent: 2 - - uid: 2251 + - uid: 2456 components: - type: Transform - pos: 29.5,20.5 - parent: 2 - - uid: 4365 - components: - - type: Transform - pos: 59.5,40.5 - parent: 2 - - uid: 5445 - components: - - type: Transform - pos: 71.5,36.5 - parent: 2 - - uid: 5446 - components: - - type: Transform - pos: 71.5,39.5 + pos: 59.5,39.5 parent: 2 - uid: 5709 components: - type: Transform pos: 77.5,-12.5 parent: 2 - - uid: 6873 - components: - - type: Transform - pos: 59.5,32.5 - parent: 2 - uid: 8434 components: - type: Transform pos: 59.5,-4.5 parent: 2 - - uid: 9623 + - uid: 8669 components: - type: Transform - pos: 47.5,4.5 + pos: 43.5,19.5 + parent: 2 + - uid: 9420 + components: + - type: Transform + pos: 71.5,27.5 parent: 2 - uid: 10669 components: - type: Transform pos: 11.5,-42.5 parent: 2 + - uid: 12048 + components: + - type: Transform + pos: 62.5,8.5 + parent: 2 - uid: 12245 components: - type: Transform @@ -11513,6 +12387,16 @@ entities: - type: Transform pos: 107.5,-23.5 parent: 2 + - uid: 13179 + components: + - type: Transform + pos: 36.5,41.5 + parent: 2 + - uid: 14826 + components: + - type: Transform + pos: 43.5,43.5 + parent: 2 - uid: 15388 components: - type: Transform @@ -11520,10 +12404,10 @@ entities: parent: 2 - proto: BedsheetCaptain entities: - - uid: 379 + - uid: 14854 components: - type: Transform - pos: 36.5,42.5 + pos: 36.5,41.5 parent: 2 - proto: BedsheetCE entities: @@ -11577,6 +12461,14 @@ entities: parent: 9438 - type: Physics canCollide: False +- proto: BedsheetHOS + entities: + - uid: 2348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,43.5 + parent: 2 - proto: BedsheetMedical entities: - uid: 5197 @@ -11584,10 +12476,11 @@ entities: - type: Transform pos: 62.5,-10.5 parent: 2 - - uid: 9624 + - uid: 10654 components: - type: Transform - pos: 47.5,4.5 + rot: -1.5707963267948966 rad + pos: 44.5,27.5 parent: 2 - uid: 11299 components: @@ -11618,29 +12511,15 @@ entities: parent: 2 - proto: BedsheetOrange entities: - - uid: 5253 + - uid: 2225 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,32.5 + pos: 43.5,19.5 parent: 2 - - uid: 6333 + - uid: 3454 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,40.5 - parent: 2 - - uid: 14656 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,18.5 - parent: 2 - - uid: 14657 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,20.5 + pos: 43.5,17.5 parent: 2 - proto: BedsheetQM entities: @@ -11671,20 +12550,22 @@ entities: - uid: 4300 components: - type: Transform - parent: 565 - - type: Physics - canCollide: False + pos: 62.5,8.5 + parent: 2 +- proto: BedsheetRed + entities: + - uid: 2462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,39.5 + parent: 2 - proto: BedsheetSpawner entities: - - uid: 5447 + - uid: 8482 components: - type: Transform - pos: 71.5,36.5 - parent: 2 - - uid: 5448 - components: - - type: Transform - pos: 71.5,39.5 + pos: 70.5,40.5 parent: 2 - uid: 12271 components: @@ -11740,11 +12621,17 @@ entities: parent: 2 - proto: Biogenerator entities: - - uid: 13612 + - uid: 6265 components: - type: Transform - pos: 57.5,41.5 + pos: 35.5,21.5 parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - uid: 13653 components: - type: Transform @@ -11757,6 +12644,11 @@ entities: - type: Transform pos: 35.5,-29.5 parent: 2 + - uid: 365 + components: + - type: Transform + pos: 62.5,30.5 + parent: 2 - uid: 779 components: - type: Transform @@ -11777,36 +12669,43 @@ entities: - type: Transform pos: 12.5,-26.5 parent: 2 + - uid: 2000 + components: + - type: Transform + pos: 5.5,23.5 + parent: 2 + - uid: 2009 + components: + - type: Transform + pos: 5.5,27.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 3357 + components: + - type: Transform + pos: 3.5,27.5 + parent: 2 + - uid: 3561 + components: + - type: Transform + pos: 3.5,38.5 + parent: 2 + - uid: 3562 + components: + - type: Transform + pos: 3.5,37.5 + parent: 2 - uid: 4257 components: - type: Transform pos: 35.5,-33.5 parent: 2 - - uid: 5351 - components: - - type: Transform - pos: 63.5,29.5 - parent: 2 - - uid: 5361 - components: - - type: Transform - pos: 64.5,29.5 - parent: 2 - uid: 5875 components: - type: Transform pos: -0.5,-27.5 parent: 2 - - uid: 8067 - components: - - type: Transform - pos: 4.5,23.5 - parent: 2 - - uid: 8103 - components: - - type: Transform - pos: 4.5,27.5 - parent: 2 - uid: 8248 components: - type: Transform @@ -11815,6 +12714,16 @@ entities: - type: AccessReader access: - - Research + - uid: 8520 + components: + - type: Transform + pos: 63.5,30.5 + parent: 2 + - uid: 8557 + components: + - type: Transform + pos: 64.5,30.5 + parent: 2 - uid: 11022 components: - type: Transform @@ -11843,8 +12752,19 @@ entities: - type: Transform pos: 47.5,-11.5 parent: 2 + - uid: 15789 + components: + - type: Transform + pos: 3.5,23.5 + parent: 2 - proto: BlockGameArcade entities: + - uid: 5457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,20.5 + parent: 2 - uid: 6617 components: - type: Transform @@ -11853,12 +12773,6 @@ entities: parent: 2 - type: SpamEmitSound enabled: False - - uid: 14655 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,39.5 - parent: 2 - proto: Bonfire entities: - uid: 12709 @@ -11871,7 +12785,7 @@ entities: - uid: 297 components: - type: Transform - pos: 35.484184,-12.498516 + pos: 35.37316,-10.326814 parent: 2 - proto: BookshelfFilled entities: @@ -11905,21 +12819,24 @@ entities: - type: Transform pos: 10.5,7.5 parent: 2 - - uid: 3193 - components: - - type: Transform - pos: 57.5,34.5 - parent: 2 - uid: 5100 components: - type: Transform pos: 29.5,6.5 parent: 2 - - uid: 13607 + - uid: 10834 components: - type: Transform - pos: 57.5,33.5 + pos: 41.5,22.5 parent: 2 + - uid: 11946 + components: + - type: Transform + anchored: False + pos: 58.5,37.5 + parent: 2 + - type: Physics + bodyType: Dynamic - proto: BoozeDispenser entities: - uid: 2921 @@ -11960,21 +12877,20 @@ entities: parent: 2 - proto: BorgCharger entities: - - uid: 12911 + - uid: 8505 components: - type: Transform - pos: 44.5,9.5 + pos: 79.5,31.5 parent: 2 - - uid: 13431 + - uid: 14789 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,9.5 + pos: 51.5,11.5 parent: 2 - - uid: 14630 + - uid: 15873 components: - type: Transform - pos: 82.5,31.5 + pos: 49.5,11.5 parent: 2 - proto: BoxBeaker entities: @@ -11983,13 +12899,6 @@ entities: - type: Transform pos: 82.3458,-6.40663 parent: 2 -- proto: BoxBeanbag - entities: - - uid: 8432 - components: - - type: Transform - pos: 39.509068,21.682957 - parent: 2 - proto: BoxBodyBag entities: - uid: 11987 @@ -11997,29 +12906,25 @@ entities: - type: Transform pos: 75.5329,-0.39068663 parent: 2 + - uid: 14263 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 44.667503,29.610659 + parent: 2 - proto: BoxFlare entities: - uid: 7714 components: - type: Transform - pos: 4.504114,40.66977 - parent: 2 - - uid: 8690 - components: - - type: Transform - pos: 32.455227,27.041605 + pos: 7.5811415,29.417955 parent: 2 - proto: BoxFlashbang entities: - - uid: 6340 + - uid: 10541 components: - type: Transform - pos: 36.349575,28.40067 - parent: 2 - - uid: 8689 - components: - - type: Transform - pos: 32.47085,27.36973 + pos: 39.424168,28.449154 parent: 2 - proto: BoxFolderBlack entities: @@ -12040,6 +12945,20 @@ entities: - type: Transform pos: -1.3771312,-12.370462 parent: 2 +- proto: BoxFolderClipboard + entities: + - uid: 2173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.41103,8.401679 + parent: 2 + - uid: 15686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.41794,37.811577 + parent: 2 - proto: BoxFolderGreen entities: - uid: 14568 @@ -12056,16 +12975,6 @@ entities: parent: 2 - proto: BoxFolderRed entities: - - uid: 3138 - components: - - type: Transform - pos: 39.5,17.5 - parent: 2 - - uid: 6900 - components: - - type: Transform - pos: 43.442894,20.146849 - parent: 2 - uid: 8249 components: - type: Transform @@ -12076,6 +12985,12 @@ entities: - type: Transform pos: -1.5646312,-12.245462 parent: 2 + - uid: 15178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.057922,37.57559 + parent: 2 - proto: BoxFolderWhite entities: - uid: 11421 @@ -12095,10 +13010,11 @@ entities: - type: Transform pos: 12.5,-35.5 parent: 2 - - uid: 6888 + - uid: 9014 components: - type: Transform - pos: 43.630394,20.021849 + rot: 3.141592653589793 rad + pos: 54.792297,37.653713 parent: 2 - uid: 14766 components: @@ -12107,17 +13023,10 @@ entities: parent: 2 - proto: BoxHandcuff entities: - - uid: 12242 + - uid: 2313 components: - type: Transform - pos: 36.634296,28.185242 - parent: 2 -- proto: BoxHeadset - entities: - - uid: 7269 - components: - - type: Transform - pos: 20.523739,-19.345793 + pos: 40.412716,28.626993 parent: 2 - proto: BoxLatexGloves entities: @@ -12143,11 +13052,6 @@ entities: - type: Transform pos: 72.5,-9.5 parent: 2 - - uid: 10834 - components: - - type: Transform - pos: 65.52434,11.667425 - parent: 2 - proto: BoxMouthSwab entities: - uid: 2091 @@ -12162,13 +13066,6 @@ entities: - type: Transform pos: 19.585323,-12.603194 parent: 2 -- proto: BoxSechud - entities: - - uid: 7681 - components: - - type: Transform - pos: 36.641243,28.595247 - parent: 2 - proto: BoxSterileMask entities: - uid: 5246 @@ -12176,6 +13073,13 @@ entities: - type: Transform pos: 78.44771,-7.014811 parent: 2 +- proto: BoxStinger + entities: + - uid: 10773 + components: + - type: Transform + pos: 39.40727,28.773674 + parent: 2 - proto: BoxSyringe entities: - uid: 7810 @@ -12183,12 +13087,19 @@ entities: - type: Transform pos: 82.5958,-6.203505 parent: 2 -- proto: BoxZiptie +- proto: BoxTearGas entities: - - uid: 2131 + - uid: 6066 components: - type: Transform - pos: 36.363464,27.983711 + pos: 39.662716,28.625252 + parent: 2 +- proto: BoxZiptie + entities: + - uid: 2326 + components: + - type: Transform + pos: 40.67834,28.767618 parent: 2 - proto: BrbSign entities: @@ -12221,36 +13132,6 @@ entities: - type: Transform pos: 22.465576,48.64228 parent: 2 -- proto: BrigTimer - entities: - - uid: 7716 - components: - - type: Transform - pos: 31.5,22.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2258: - - - Start - - Close - - - Timer - - AutoClose - - - Timer - - Open - - uid: 7718 - components: - - type: Transform - pos: 31.5,19.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2259: - - - Start - - Close - - - Timer - - AutoClose - - - Timer - - Open - proto: Brutepack entities: - uid: 5712 @@ -12275,6 +13156,17 @@ entities: - type: Transform pos: 46.49411,-7.5341444 parent: 2 + - uid: 8393 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 39.761497,22.483047 + parent: 2 + - uid: 14844 + components: + - type: Transform + pos: 39.759853,22.763851 + parent: 2 - proto: ButtonFrameCaution entities: - uid: 1233 @@ -12282,11 +13174,17 @@ entities: - type: Transform pos: 49.5,-49.5 parent: 2 - - uid: 2045 + - uid: 2060 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,33.5 + pos: 5.5,28.5 + parent: 2 + - uid: 3993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-37.5 parent: 2 - uid: 4150 components: @@ -12294,40 +13192,39 @@ entities: rot: 3.141592653589793 rad pos: 44.5,-49.5 parent: 2 + - uid: 4636 + components: + - type: Transform + pos: 6.5,34.5 + parent: 2 + - uid: 5046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,34.5 + parent: 2 + - uid: 7673 + components: + - type: Transform + pos: 3.5,39.5 + parent: 2 - uid: 8334 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,11.5 parent: 2 - - uid: 8428 - components: - - type: Transform - pos: 31.77084,21.463516 - parent: 2 - - uid: 8429 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.777786,17.53082 - parent: 2 - uid: 8529 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,-29.5 parent: 2 - - uid: 10991 + - uid: 12824 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,-40.5 - parent: 2 - - uid: 11000 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-37.5 + pos: 64.5,25.5 parent: 2 - uid: 12987 components: @@ -12335,16 +13232,6 @@ entities: rot: -1.5707963267948966 rad pos: 48.5,-9.5 parent: 2 - - uid: 13115 - components: - - type: Transform - pos: 6.5,34.5 - parent: 2 - - uid: 13446 - components: - - type: Transform - pos: 61.5,26.5 - parent: 2 - uid: 13474 components: - type: Transform @@ -12363,34 +13250,12 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,-25.5 parent: 2 - - uid: 13483 - components: - - type: Transform - pos: 11.5,-32.5 - parent: 2 - - uid: 13484 - components: - - type: Transform - pos: 10.5,-39.5 - parent: 2 - - uid: 14914 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,15.5 - parent: 2 - uid: 15103 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,44.5 parent: 2 - - uid: 15285 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,36.5 - parent: 2 - uid: 15397 components: - type: Transform @@ -12405,24 +13270,30 @@ entities: rot: 1.5707963267948966 rad pos: 53.5,-0.5 parent: 2 + - uid: 15805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,16.5 + parent: 2 - proto: ButtonFrameGrey entities: - - uid: 6862 + - uid: 705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,39.5 + parent: 2 + - uid: 2010 components: - type: Transform pos: 10.5,29.5 parent: 2 - - uid: 6912 + - uid: 2480 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,28.5 - parent: 2 - - uid: 7885 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,22.5 + pos: 4.5,15.5 parent: 2 - uid: 8986 components: @@ -12430,25 +13301,20 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,-43.5 parent: 2 - - uid: 11145 + - uid: 13470 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,27.5 + pos: 11.5,-32.5 parent: 2 - - uid: 11208 +- proto: ButtonFrameJanitor + entities: + - uid: 15511 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,16.5 + pos: 29.5,32.5 parent: 2 - proto: CableApcExtension entities: - - uid: 42 - components: - - type: Transform - pos: 11.5,2.5 - parent: 2 - uid: 59 components: - type: Transform @@ -12479,6 +13345,16 @@ entities: - type: Transform pos: 55.5,50.5 parent: 2 + - uid: 150 + components: + - type: Transform + pos: 74.5,17.5 + parent: 2 + - uid: 151 + components: + - type: Transform + pos: 22.5,9.5 + parent: 2 - uid: 200 components: - type: Transform @@ -12509,16 +13385,21 @@ entities: - type: Transform pos: 59.5,-3.5 parent: 2 - - uid: 349 + - uid: 319 components: - type: Transform - pos: 35.5,18.5 + pos: 11.5,15.5 parent: 2 - uid: 368 components: - type: Transform pos: 29.5,-54.5 parent: 2 + - uid: 412 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 2 - uid: 420 components: - type: Transform @@ -12649,15 +13530,15 @@ entities: - type: Transform pos: 22.5,-57.5 parent: 2 - - uid: 1109 + - uid: 1111 components: - type: Transform - pos: 40.5,20.5 + pos: 24.5,10.5 parent: 2 - - uid: 1173 + - uid: 1162 components: - type: Transform - pos: 19.5,-13.5 + pos: 74.5,11.5 parent: 2 - uid: 1182 components: @@ -12684,15 +13565,10 @@ entities: - type: Transform pos: 18.5,22.5 parent: 2 - - uid: 1286 + - uid: 1254 components: - type: Transform - pos: 42.5,32.5 - parent: 2 - - uid: 1287 - components: - - type: Transform - pos: 40.5,32.5 + pos: 40.5,-14.5 parent: 2 - uid: 1319 components: @@ -12704,6 +13580,21 @@ entities: - type: Transform pos: 6.5,16.5 parent: 2 + - uid: 1325 + components: + - type: Transform + pos: 74.5,10.5 + parent: 2 + - uid: 1551 + components: + - type: Transform + pos: 40.5,-16.5 + parent: 2 + - uid: 1578 + components: + - type: Transform + pos: 39.5,-14.5 + parent: 2 - uid: 1699 components: - type: Transform @@ -12729,10 +13620,10 @@ entities: - type: Transform pos: 50.5,-13.5 parent: 2 - - uid: 1815 + - uid: 1749 components: - type: Transform - pos: 41.5,31.5 + pos: 74.5,14.5 parent: 2 - uid: 1940 components: @@ -12799,46 +13690,136 @@ entities: - type: Transform pos: 17.5,24.5 parent: 2 - - uid: 2224 + - uid: 2202 components: - type: Transform - pos: 30.5,29.5 + pos: 42.5,25.5 parent: 2 - - uid: 2225 + - uid: 2216 components: - type: Transform - pos: 47.5,29.5 + pos: 38.5,25.5 parent: 2 - - uid: 2295 + - uid: 2226 components: - type: Transform - pos: 37.5,31.5 + pos: 66.5,47.5 parent: 2 - - uid: 2297 + - uid: 2232 components: - type: Transform - pos: 38.5,31.5 + pos: 47.5,43.5 parent: 2 - - uid: 2298 + - uid: 2236 components: - type: Transform - pos: 33.5,33.5 + pos: 30.5,20.5 parent: 2 - - uid: 2303 + - uid: 2241 components: - type: Transform - pos: 39.5,31.5 + pos: 64.5,44.5 + parent: 2 + - uid: 2243 + components: + - type: Transform + pos: 64.5,34.5 + parent: 2 + - uid: 2246 + components: + - type: Transform + pos: 32.5,36.5 + parent: 2 + - uid: 2260 + components: + - type: Transform + pos: 65.5,44.5 + parent: 2 + - uid: 2290 + components: + - type: Transform + pos: 29.5,20.5 parent: 2 - uid: 2323 components: - type: Transform pos: 70.5,-12.5 parent: 2 + - uid: 2324 + components: + - type: Transform + pos: 46.5,22.5 + parent: 2 - uid: 2325 components: - type: Transform pos: 69.5,-12.5 parent: 2 + - uid: 2332 + components: + - type: Transform + pos: 46.5,27.5 + parent: 2 + - uid: 2339 + components: + - type: Transform + pos: 43.5,42.5 + parent: 2 + - uid: 2342 + components: + - type: Transform + pos: 31.5,20.5 + parent: 2 + - uid: 2343 + components: + - type: Transform + pos: 22.5,23.5 + parent: 2 + - uid: 2344 + components: + - type: Transform + pos: 65.5,39.5 + parent: 2 + - uid: 2345 + components: + - type: Transform + pos: 64.5,39.5 + parent: 2 + - uid: 2346 + components: + - type: Transform + pos: 34.5,37.5 + parent: 2 + - uid: 2349 + components: + - type: Transform + pos: 46.5,41.5 + parent: 2 + - uid: 2352 + components: + - type: Transform + pos: 70.5,47.5 + parent: 2 + - uid: 2359 + components: + - type: Transform + pos: 40.5,21.5 + parent: 2 + - uid: 2364 + components: + - type: Transform + pos: 54.5,40.5 + parent: 2 + - uid: 2369 + components: + - type: Transform + pos: 70.5,44.5 + parent: 2 + - uid: 2371 + components: + - type: Transform + pos: 63.5,39.5 + parent: 2 - uid: 2389 components: - type: Transform @@ -12859,10 +13840,30 @@ entities: - type: Transform pos: 52.5,-9.5 parent: 2 - - uid: 2428 + - uid: 2405 components: - type: Transform - pos: 36.5,31.5 + pos: 70.5,40.5 + parent: 2 + - uid: 2408 + components: + - type: Transform + pos: 63.5,24.5 + parent: 2 + - uid: 2420 + components: + - type: Transform + pos: 23.5,10.5 + parent: 2 + - uid: 2426 + components: + - type: Transform + pos: 59.5,25.5 + parent: 2 + - uid: 2430 + components: + - type: Transform + pos: 94.5,33.5 parent: 2 - uid: 2438 components: @@ -12874,25 +13875,45 @@ entities: - type: Transform pos: 45.5,-26.5 parent: 2 - - uid: 2466 + - uid: 2451 components: - type: Transform - pos: 35.5,31.5 + pos: 47.5,33.5 parent: 2 - - uid: 2470 + - uid: 2457 components: - type: Transform - pos: 42.5,31.5 + pos: 32.5,6.5 + parent: 2 + - uid: 2461 + components: + - type: Transform + pos: 71.5,34.5 + parent: 2 + - uid: 2469 + components: + - type: Transform + pos: 46.5,25.5 parent: 2 - uid: 2471 components: - type: Transform - pos: 33.5,31.5 + pos: 46.5,24.5 parent: 2 - - uid: 2477 + - uid: 2474 components: - type: Transform - pos: 34.5,31.5 + pos: 46.5,23.5 + parent: 2 + - uid: 2482 + components: + - type: Transform + pos: 71.5,33.5 + parent: 2 + - uid: 2592 + components: + - type: Transform + pos: 30.5,36.5 parent: 2 - uid: 2607 components: @@ -12904,6 +13925,21 @@ entities: - type: Transform pos: 45.5,-33.5 parent: 2 + - uid: 2678 + components: + - type: Transform + pos: 52.5,22.5 + parent: 2 + - uid: 2679 + components: + - type: Transform + pos: 17.5,-16.5 + parent: 2 + - uid: 2715 + components: + - type: Transform + pos: 52.5,21.5 + parent: 2 - uid: 2717 components: - type: Transform @@ -12959,6 +13995,11 @@ entities: - type: Transform pos: 51.5,-19.5 parent: 2 + - uid: 2909 + components: + - type: Transform + pos: 42.5,31.5 + parent: 2 - uid: 2950 components: - type: Transform @@ -12969,6 +14010,66 @@ entities: - type: Transform pos: 5.5,39.5 parent: 2 + - uid: 3044 + components: + - type: Transform + pos: 55.5,10.5 + parent: 2 + - uid: 3055 + components: + - type: Transform + pos: 51.5,25.5 + parent: 2 + - uid: 3068 + components: + - type: Transform + pos: 50.5,47.5 + parent: 2 + - uid: 3070 + components: + - type: Transform + pos: 62.5,27.5 + parent: 2 + - uid: 3075 + components: + - type: Transform + pos: 46.5,21.5 + parent: 2 + - uid: 3085 + components: + - type: Transform + pos: 71.5,32.5 + parent: 2 + - uid: 3094 + components: + - type: Transform + pos: 22.5,22.5 + parent: 2 + - uid: 3098 + components: + - type: Transform + pos: 46.5,26.5 + parent: 2 + - uid: 3104 + components: + - type: Transform + pos: 43.5,34.5 + parent: 2 + - uid: 3108 + components: + - type: Transform + pos: 45.5,41.5 + parent: 2 + - uid: 3114 + components: + - type: Transform + pos: 61.5,39.5 + parent: 2 + - uid: 3116 + components: + - type: Transform + pos: 62.5,10.5 + parent: 2 - uid: 3118 components: - type: Transform @@ -12984,170 +14085,150 @@ entities: - type: Transform pos: -23.5,-16.5 parent: 2 + - uid: 3126 + components: + - type: Transform + pos: 62.5,9.5 + parent: 2 - uid: 3132 components: - type: Transform pos: -23.5,-11.5 parent: 2 - - uid: 3151 + - uid: 3138 components: - type: Transform - pos: 43.5,31.5 + pos: 43.5,28.5 parent: 2 - uid: 3154 components: - type: Transform pos: 9.5,22.5 parent: 2 - - uid: 3156 + - uid: 3159 components: - type: Transform - pos: 35.5,33.5 + pos: 65.5,34.5 parent: 2 - - uid: 3157 + - uid: 3160 components: - type: Transform - pos: 36.5,33.5 + pos: 55.5,24.5 parent: 2 - uid: 3167 components: - type: Transform pos: 12.5,21.5 parent: 2 + - uid: 3170 + components: + - type: Transform + pos: 56.5,22.5 + parent: 2 - uid: 3173 components: - type: Transform pos: 8.5,25.5 parent: 2 - - uid: 3177 + - uid: 3188 components: - type: Transform - pos: 40.5,36.5 + pos: 66.5,39.5 + parent: 2 + - uid: 3189 + components: + - type: Transform + pos: 42.5,44.5 + parent: 2 + - uid: 3191 + components: + - type: Transform + pos: 70.5,38.5 + parent: 2 + - uid: 3195 + components: + - type: Transform + pos: 43.5,31.5 + parent: 2 + - uid: 3196 + components: + - type: Transform + pos: 43.5,30.5 parent: 2 - uid: 3202 components: - type: Transform pos: -23.5,-9.5 parent: 2 - - uid: 3205 + - uid: 3207 components: - type: Transform - pos: 38.5,18.5 + pos: 56.5,10.5 parent: 2 - uid: 3209 components: - type: Transform pos: -6.5,-8.5 parent: 2 + - uid: 3211 + components: + - type: Transform + pos: 41.5,21.5 + parent: 2 + - uid: 3213 + components: + - type: Transform + pos: 56.5,23.5 + parent: 2 + - uid: 3217 + components: + - type: Transform + pos: 42.5,21.5 + parent: 2 + - uid: 3218 + components: + - type: Transform + pos: 43.5,21.5 + parent: 2 + - uid: 3219 + components: + - type: Transform + pos: 41.5,19.5 + parent: 2 + - uid: 3220 + components: + - type: Transform + pos: 42.5,19.5 + parent: 2 + - uid: 3221 + components: + - type: Transform + pos: 42.5,18.5 + parent: 2 - uid: 3222 components: - type: Transform - pos: 51.5,35.5 - parent: 2 - - uid: 3224 - components: - - type: Transform - pos: 49.5,35.5 - parent: 2 - - uid: 3225 - components: - - type: Transform - pos: 48.5,35.5 - parent: 2 - - uid: 3226 - components: - - type: Transform - pos: 52.5,35.5 - parent: 2 - - uid: 3227 - components: - - type: Transform - pos: 53.5,35.5 - parent: 2 - - uid: 3228 - components: - - type: Transform - pos: 54.5,35.5 - parent: 2 - - uid: 3229 - components: - - type: Transform - pos: 55.5,35.5 - parent: 2 - - uid: 3230 - components: - - type: Transform - pos: 56.5,35.5 + pos: 61.5,34.5 parent: 2 - uid: 3231 components: - type: Transform - pos: 56.5,31.5 - parent: 2 - - uid: 3233 - components: - - type: Transform - pos: 56.5,34.5 - parent: 2 - - uid: 3237 - components: - - type: Transform - pos: 56.5,32.5 + pos: 48.5,27.5 parent: 2 - uid: 3238 components: - type: Transform - pos: 56.5,33.5 + pos: 57.5,24.5 parent: 2 - - uid: 3242 + - uid: 3258 components: - type: Transform - pos: 56.5,39.5 + pos: 35.5,37.5 parent: 2 - - uid: 3243 + - uid: 3270 components: - type: Transform - pos: 56.5,40.5 - parent: 2 - - uid: 3244 - components: - - type: Transform - pos: 58.5,36.5 - parent: 2 - - uid: 3245 - components: - - type: Transform - pos: 55.5,39.5 - parent: 2 - - uid: 3246 - components: - - type: Transform - pos: 56.5,36.5 - parent: 2 - - uid: 3247 - components: - - type: Transform - pos: 57.5,36.5 - parent: 2 - - uid: 3248 - components: - - type: Transform - pos: 56.5,41.5 - parent: 2 - - uid: 3249 - components: - - type: Transform - pos: 56.5,38.5 - parent: 2 - - uid: 3260 - components: - - type: Transform - pos: 40.5,31.5 - parent: 2 - - uid: 3261 - components: - - type: Transform - pos: 40.5,34.5 + pos: 22.5,24.5 parent: 2 - uid: 3284 components: @@ -13179,20 +14260,75 @@ entities: - type: Transform pos: -22.5,-9.5 parent: 2 + - uid: 3320 + components: + - type: Transform + pos: 50.5,34.5 + parent: 2 + - uid: 3325 + components: + - type: Transform + pos: 67.5,42.5 + parent: 2 + - uid: 3326 + components: + - type: Transform + pos: 63.5,34.5 + parent: 2 + - uid: 3329 + components: + - type: Transform + pos: 42.5,17.5 + parent: 2 + - uid: 3335 + components: + - type: Transform + pos: 50.5,35.5 + parent: 2 - uid: 3339 components: - type: Transform pos: -24.5,-18.5 parent: 2 + - uid: 3341 + components: + - type: Transform + pos: 50.5,36.5 + parent: 2 + - uid: 3345 + components: + - type: Transform + pos: 50.5,37.5 + parent: 2 - uid: 3404 components: - type: Transform - pos: 22.5,9.5 + pos: 34.5,22.5 parent: 2 - - uid: 3428 + - uid: 3462 components: - type: Transform - pos: 69.5,29.5 + pos: 40.5,25.5 + parent: 2 + - uid: 3497 + components: + - type: Transform + pos: 39.5,25.5 + parent: 2 + - uid: 3498 + components: + - type: Transform + pos: 44.5,37.5 + parent: 2 + - uid: 3501 + components: + - type: Transform + pos: 47.5,46.5 + parent: 2 + - uid: 3502 + components: + - type: Transform + pos: 48.5,46.5 parent: 2 - uid: 3515 components: @@ -13219,11 +14355,26 @@ entities: - type: Transform pos: 22.5,4.5 parent: 2 + - uid: 3822 + components: + - type: Transform + pos: 45.5,46.5 + parent: 2 + - uid: 3972 + components: + - type: Transform + pos: 46.5,46.5 + parent: 2 - uid: 3982 components: - type: Transform pos: 32.5,-27.5 parent: 2 + - uid: 3992 + components: + - type: Transform + pos: 44.5,46.5 + parent: 2 - uid: 3999 components: - type: Transform @@ -13249,6 +14400,11 @@ entities: - type: Transform pos: 46.5,-27.5 parent: 2 + - uid: 4026 + components: + - type: Transform + pos: 71.5,35.5 + parent: 2 - uid: 4040 components: - type: Transform @@ -13259,6 +14415,16 @@ entities: - type: Transform pos: -6.5,-7.5 parent: 2 + - uid: 4116 + components: + - type: Transform + pos: 67.5,39.5 + parent: 2 + - uid: 4133 + components: + - type: Transform + pos: 70.5,37.5 + parent: 2 - uid: 4190 components: - type: Transform @@ -13324,26 +14490,11 @@ entities: - type: Transform pos: 12.5,33.5 parent: 2 - - uid: 4351 - components: - - type: Transform - pos: 51.5,36.5 - parent: 2 - - uid: 4366 - components: - - type: Transform - pos: 50.5,35.5 - parent: 2 - uid: 4505 components: - type: Transform pos: 14.5,33.5 parent: 2 - - uid: 4644 - components: - - type: Transform - pos: 16.5,-14.5 - parent: 2 - uid: 4648 components: - type: Transform @@ -13712,7 +14863,7 @@ entities: - uid: 4791 components: - type: Transform - pos: 8.5,16.5 + pos: 33.5,6.5 parent: 2 - uid: 4882 components: @@ -14004,6 +15155,11 @@ entities: - type: Transform pos: 41.5,-35.5 parent: 2 + - uid: 5194 + components: + - type: Transform + pos: 40.5,44.5 + parent: 2 - uid: 5205 components: - type: Transform @@ -14039,6 +15195,11 @@ entities: - type: Transform pos: 55.5,-3.5 parent: 2 + - uid: 5236 + components: + - type: Transform + pos: 8.5,16.5 + parent: 2 - uid: 5251 components: - type: Transform @@ -14049,6 +15210,21 @@ entities: - type: Transform pos: 60.5,-3.5 parent: 2 + - uid: 5270 + components: + - type: Transform + pos: 63.5,28.5 + parent: 2 + - uid: 5272 + components: + - type: Transform + pos: 63.5,29.5 + parent: 2 + - uid: 5282 + components: + - type: Transform + pos: 61.5,27.5 + parent: 2 - uid: 5287 components: - type: Transform @@ -14059,6 +15235,21 @@ entities: - type: Transform pos: 57.5,50.5 parent: 2 + - uid: 5305 + components: + - type: Transform + pos: 30.5,23.5 + parent: 2 + - uid: 5311 + components: + - type: Transform + pos: 30.5,21.5 + parent: 2 + - uid: 5312 + components: + - type: Transform + pos: 30.5,22.5 + parent: 2 - uid: 5315 components: - type: Transform @@ -14069,6 +15260,11 @@ entities: - type: Transform pos: 35.5,-40.5 parent: 2 + - uid: 5342 + components: + - type: Transform + pos: 62.5,24.5 + parent: 2 - uid: 5345 components: - type: Transform @@ -14099,11 +15295,6 @@ entities: - type: Transform pos: 37.5,-43.5 parent: 2 - - uid: 5367 - components: - - type: Transform - pos: 53.5,21.5 - parent: 2 - uid: 5371 components: - type: Transform @@ -14129,11 +15320,21 @@ entities: - type: Transform pos: 41.5,-29.5 parent: 2 + - uid: 5380 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 - uid: 5396 components: - type: Transform pos: 41.5,-43.5 parent: 2 + - uid: 5404 + components: + - type: Transform + pos: 22.5,25.5 + parent: 2 - uid: 5412 components: - type: Transform @@ -14144,11 +15345,56 @@ entities: - type: Transform pos: 41.5,-31.5 parent: 2 + - uid: 5446 + components: + - type: Transform + pos: 47.5,42.5 + parent: 2 + - uid: 5452 + components: + - type: Transform + pos: 38.5,21.5 + parent: 2 + - uid: 5455 + components: + - type: Transform + pos: 15.5,5.5 + parent: 2 + - uid: 5462 + components: + - type: Transform + pos: 23.5,25.5 + parent: 2 + - uid: 5463 + components: + - type: Transform + pos: 40.5,42.5 + parent: 2 + - uid: 5476 + components: + - type: Transform + pos: 61.5,35.5 + parent: 2 + - uid: 5511 + components: + - type: Transform + pos: 8.5,5.5 + parent: 2 + - uid: 5520 + components: + - type: Transform + pos: 39.5,39.5 + parent: 2 - uid: 5527 components: - type: Transform pos: 41.5,-28.5 parent: 2 + - uid: 5530 + components: + - type: Transform + pos: 39.5,41.5 + parent: 2 - uid: 5579 components: - type: Transform @@ -14274,6 +15520,16 @@ entities: - type: Transform pos: 23.5,-40.5 parent: 2 + - uid: 5652 + components: + - type: Transform + pos: 19.5,-18.5 + parent: 2 + - uid: 5704 + components: + - type: Transform + pos: 41.5,34.5 + parent: 2 - uid: 5889 components: - type: Transform @@ -14324,6 +15580,16 @@ entities: - type: Transform pos: 8.5,-23.5 parent: 2 + - uid: 5928 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 2 + - uid: 6008 + components: + - type: Transform + pos: 24.5,25.5 + parent: 2 - uid: 6024 components: - type: Transform @@ -14349,10 +15615,55 @@ entities: - type: Transform pos: 51.5,-13.5 parent: 2 - - uid: 6334 + - uid: 6095 components: - type: Transform - pos: 40.5,35.5 + pos: 8.5,10.5 + parent: 2 + - uid: 6117 + components: + - type: Transform + pos: 40.5,43.5 + parent: 2 + - uid: 6231 + components: + - type: Transform + pos: 66.5,6.5 + parent: 2 + - uid: 6287 + components: + - type: Transform + pos: 59.5,26.5 + parent: 2 + - uid: 6289 + components: + - type: Transform + pos: 62.5,8.5 + parent: 2 + - uid: 6294 + components: + - type: Transform + pos: 62.5,47.5 + parent: 2 + - uid: 6296 + components: + - type: Transform + pos: 61.5,47.5 + parent: 2 + - uid: 6332 + components: + - type: Transform + pos: 49.5,47.5 + parent: 2 + - uid: 6350 + components: + - type: Transform + pos: 39.5,19.5 + parent: 2 + - uid: 6352 + components: + - type: Transform + pos: 38.5,18.5 parent: 2 - uid: 6460 components: @@ -14364,11 +15675,6 @@ entities: - type: Transform pos: 18.5,-16.5 parent: 2 - - uid: 6462 - components: - - type: Transform - pos: 18.5,-17.5 - parent: 2 - uid: 6463 components: - type: Transform @@ -14419,6 +15725,21 @@ entities: - type: Transform pos: 22.5,-17.5 parent: 2 + - uid: 6474 + components: + - type: Transform + pos: 59.5,10.5 + parent: 2 + - uid: 6486 + components: + - type: Transform + pos: 60.5,10.5 + parent: 2 + - uid: 6529 + components: + - type: Transform + pos: 70.5,32.5 + parent: 2 - uid: 6592 components: - type: Transform @@ -14474,6 +15795,11 @@ entities: - type: Transform pos: 30.5,-11.5 parent: 2 + - uid: 6697 + components: + - type: Transform + pos: 11.5,12.5 + parent: 2 - uid: 6698 components: - type: Transform @@ -14744,6 +16070,11 @@ entities: - type: Transform pos: 20.5,-57.5 parent: 2 + - uid: 6914 + components: + - type: Transform + pos: 11.5,11.5 + parent: 2 - uid: 6920 components: - type: Transform @@ -14759,6 +16090,91 @@ entities: - type: Transform pos: 12.5,-30.5 parent: 2 + - uid: 6966 + components: + - type: Transform + pos: 21.5,12.5 + parent: 2 + - uid: 6967 + components: + - type: Transform + pos: 25.5,10.5 + parent: 2 + - uid: 6969 + components: + - type: Transform + pos: 15.5,6.5 + parent: 2 + - uid: 6970 + components: + - type: Transform + pos: 30.5,8.5 + parent: 2 + - uid: 6971 + components: + - type: Transform + pos: 34.5,6.5 + parent: 2 + - uid: 6972 + components: + - type: Transform + pos: 11.5,18.5 + parent: 2 + - uid: 6979 + components: + - type: Transform + pos: 12.5,15.5 + parent: 2 + - uid: 6981 + components: + - type: Transform + pos: 13.5,18.5 + parent: 2 + - uid: 6982 + components: + - type: Transform + pos: 12.5,31.5 + parent: 2 + - uid: 6983 + components: + - type: Transform + pos: 69.5,39.5 + parent: 2 + - uid: 6984 + components: + - type: Transform + pos: 68.5,39.5 + parent: 2 + - uid: 6986 + components: + - type: Transform + pos: 72.5,31.5 + parent: 2 + - uid: 6987 + components: + - type: Transform + pos: 72.5,32.5 + parent: 2 + - uid: 6992 + components: + - type: Transform + pos: 50.5,7.5 + parent: 2 + - uid: 6993 + components: + - type: Transform + pos: 50.5,8.5 + parent: 2 + - uid: 7030 + components: + - type: Transform + pos: 11.5,17.5 + parent: 2 + - uid: 7036 + components: + - type: Transform + pos: 15.5,21.5 + parent: 2 - uid: 7040 components: - type: Transform @@ -14794,11 +16210,6 @@ entities: - type: Transform pos: 13.5,5.5 parent: 2 - - uid: 7047 - components: - - type: Transform - pos: 14.5,5.5 - parent: 2 - uid: 7048 components: - type: Transform @@ -14814,26 +16225,6 @@ entities: - type: Transform pos: 9.5,6.5 parent: 2 - - uid: 7051 - components: - - type: Transform - pos: 9.5,4.5 - parent: 2 - - uid: 7052 - components: - - type: Transform - pos: 10.5,11.5 - parent: 2 - - uid: 7053 - components: - - type: Transform - pos: 10.5,12.5 - parent: 2 - - uid: 7054 - components: - - type: Transform - pos: 10.5,13.5 - parent: 2 - uid: 7055 components: - type: Transform @@ -14889,11 +16280,6 @@ entities: - type: Transform pos: 18.5,10.5 parent: 2 - - uid: 7066 - components: - - type: Transform - pos: 21.5,5.5 - parent: 2 - uid: 7067 components: - type: Transform @@ -14924,11 +16310,6 @@ entities: - type: Transform pos: 19.5,7.5 parent: 2 - - uid: 7073 - components: - - type: Transform - pos: 20.5,6.5 - parent: 2 - uid: 7074 components: - type: Transform @@ -14979,16 +16360,6 @@ entities: - type: Transform pos: 22.5,8.5 parent: 2 - - uid: 7087 - components: - - type: Transform - pos: 22.5,11.5 - parent: 2 - - uid: 7088 - components: - - type: Transform - pos: 22.5,12.5 - parent: 2 - uid: 7089 components: - type: Transform @@ -15124,11 +16495,6 @@ entities: - type: Transform pos: 26.5,8.5 parent: 2 - - uid: 7116 - components: - - type: Transform - pos: 28.5,9.5 - parent: 2 - uid: 7117 components: - type: Transform @@ -15192,23 +16558,13 @@ entities: - uid: 7129 components: - type: Transform - pos: 33.5,7.5 - parent: 2 - - uid: 7130 - components: - - type: Transform - pos: 32.5,7.5 + pos: 9.5,9.5 parent: 2 - uid: 7131 components: - type: Transform pos: 31.5,7.5 parent: 2 - - uid: 7132 - components: - - type: Transform - pos: 30.5,7.5 - parent: 2 - uid: 7133 components: - type: Transform @@ -15219,11 +16575,6 @@ entities: - type: Transform pos: 30.5,5.5 parent: 2 - - uid: 7135 - components: - - type: Transform - pos: 34.5,7.5 - parent: 2 - uid: 7136 components: - type: Transform @@ -15419,20 +16770,10 @@ entities: - type: Transform pos: -22.5,-3.5 parent: 2 - - uid: 7452 + - uid: 7457 components: - type: Transform - pos: 13.5,16.5 - parent: 2 - - uid: 7453 - components: - - type: Transform - pos: 12.5,16.5 - parent: 2 - - uid: 7454 - components: - - type: Transform - pos: 12.5,17.5 + pos: 43.5,46.5 parent: 2 - uid: 7551 components: @@ -15674,6 +17015,11 @@ entities: - type: Transform pos: -6.5,-0.5 parent: 2 + - uid: 7679 + components: + - type: Transform + pos: 47.5,38.5 + parent: 2 - uid: 7682 components: - type: Transform @@ -15779,11 +17125,21 @@ entities: - type: Transform pos: 4.5,-11.5 parent: 2 + - uid: 7707 + components: + - type: Transform + pos: 34.5,36.5 + parent: 2 - uid: 7713 components: - type: Transform pos: -13.5,-0.5 parent: 2 + - uid: 7717 + components: + - type: Transform + pos: 62.5,34.5 + parent: 2 - uid: 7719 components: - type: Transform @@ -15819,10 +17175,15 @@ entities: - type: Transform pos: -15.5,-0.5 parent: 2 - - uid: 7752 + - uid: 7760 components: - type: Transform - pos: 39.5,25.5 + pos: 28.5,36.5 + parent: 2 + - uid: 7799 + components: + - type: Transform + pos: 29.5,36.5 parent: 2 - uid: 7823 components: @@ -15849,11 +17210,6 @@ entities: - type: Transform pos: 13.5,-50.5 parent: 2 - - uid: 7972 - components: - - type: Transform - pos: 7.5,38.5 - parent: 2 - uid: 8024 components: - type: Transform @@ -15897,7 +17253,7 @@ entities: - uid: 8037 components: - type: Transform - pos: 21.5,21.5 + pos: 25.5,25.5 parent: 2 - uid: 8038 components: @@ -15907,27 +17263,22 @@ entities: - uid: 8039 components: - type: Transform - pos: 23.5,21.5 + pos: 26.5,17.5 parent: 2 - uid: 8040 components: - type: Transform - pos: 23.5,22.5 + pos: 32.5,20.5 parent: 2 - uid: 8041 components: - type: Transform - pos: 23.5,23.5 + pos: 17.5,31.5 parent: 2 - uid: 8042 components: - type: Transform - pos: 23.5,24.5 - parent: 2 - - uid: 8043 - components: - - type: Transform - pos: 22.5,24.5 + pos: 22.5,20.5 parent: 2 - uid: 8046 components: @@ -15939,16 +17290,6 @@ entities: - type: Transform pos: 12.5,25.5 parent: 2 - - uid: 8049 - components: - - type: Transform - pos: 11.5,25.5 - parent: 2 - - uid: 8050 - components: - - type: Transform - pos: 10.5,25.5 - parent: 2 - uid: 8051 components: - type: Transform @@ -15989,11 +17330,6 @@ entities: - type: Transform pos: 5.5,26.5 parent: 2 - - uid: 8062 - components: - - type: Transform - pos: 39.5,41.5 - parent: 2 - uid: 8064 components: - type: Transform @@ -16334,11 +17670,6 @@ entities: - type: Transform pos: 11.5,-40.5 parent: 2 - - uid: 8189 - components: - - type: Transform - pos: 3.5,26.5 - parent: 2 - uid: 8220 components: - type: Transform @@ -16357,468 +17688,113 @@ entities: - uid: 8285 components: - type: Transform - pos: 41.5,21.5 + pos: 43.5,27.5 + parent: 2 + - uid: 8304 + components: + - type: Transform + pos: 57.5,51.5 parent: 2 - uid: 8305 components: - type: Transform pos: 52.5,-8.5 parent: 2 - - uid: 8347 + - uid: 8360 components: - type: Transform - pos: 63.5,48.5 + pos: 74.5,16.5 parent: 2 - - uid: 8358 + - uid: 8364 components: - type: Transform - pos: 37.5,18.5 + pos: 52.5,47.5 parent: 2 - - uid: 8385 + - uid: 8365 components: - type: Transform - pos: 35.5,28.5 + pos: 51.5,47.5 parent: 2 - - uid: 8386 + - uid: 8374 components: - type: Transform - pos: 35.5,24.5 + pos: 62.5,44.5 parent: 2 - - uid: 8387 + - uid: 8433 components: - type: Transform - pos: 35.5,25.5 - parent: 2 - - uid: 8388 - components: - - type: Transform - pos: 35.5,26.5 - parent: 2 - - uid: 8394 - components: - - type: Transform - pos: 36.5,18.5 - parent: 2 - - uid: 8396 - components: - - type: Transform - pos: 39.5,24.5 - parent: 2 - - uid: 8407 - components: - - type: Transform - pos: 59.5,36.5 - parent: 2 - - uid: 8448 - components: - - type: Transform - pos: 41.5,20.5 - parent: 2 - - uid: 8449 - components: - - type: Transform - pos: 41.5,19.5 - parent: 2 - - uid: 8450 - components: - - type: Transform - pos: 41.5,18.5 - parent: 2 - - uid: 8451 - components: - - type: Transform - pos: 41.5,17.5 - parent: 2 - - uid: 8452 - components: - - type: Transform - pos: 41.5,16.5 - parent: 2 - - uid: 8453 - components: - - type: Transform - pos: 42.5,17.5 - parent: 2 - - uid: 8454 - components: - - type: Transform - pos: 43.5,17.5 + pos: 60.5,27.5 parent: 2 - uid: 8455 components: - type: Transform - pos: 43.5,16.5 - parent: 2 - - uid: 8472 - components: - - type: Transform - pos: 35.5,27.5 - parent: 2 - - uid: 8476 - components: - - type: Transform - pos: 33.5,25.5 - parent: 2 - - uid: 8477 - components: - - type: Transform - pos: 33.5,26.5 - parent: 2 - - uid: 8478 - components: - - type: Transform - pos: 33.5,27.5 - parent: 2 - - uid: 8479 - components: - - type: Transform - pos: 33.5,28.5 - parent: 2 - - uid: 8480 - components: - - type: Transform - pos: 33.5,29.5 - parent: 2 - - uid: 8481 - components: - - type: Transform - pos: 32.5,29.5 - parent: 2 - - uid: 8482 - components: - - type: Transform - pos: 31.5,29.5 - parent: 2 - - uid: 8484 - components: - - type: Transform - pos: 32.5,25.5 - parent: 2 - - uid: 8485 - components: - - type: Transform - pos: 31.5,25.5 - parent: 2 - - uid: 8486 - components: - - type: Transform - pos: 30.5,25.5 - parent: 2 - - uid: 8487 - components: - - type: Transform - pos: 29.5,25.5 - parent: 2 - - uid: 8488 - components: - - type: Transform - pos: 33.5,24.5 - parent: 2 - - uid: 8489 - components: - - type: Transform - pos: 33.5,23.5 - parent: 2 - - uid: 8490 - components: - - type: Transform - pos: 33.5,22.5 - parent: 2 - - uid: 8491 - components: - - type: Transform - pos: 33.5,21.5 - parent: 2 - - uid: 8492 - components: - - type: Transform - pos: 33.5,20.5 - parent: 2 - - uid: 8493 - components: - - type: Transform - pos: 33.5,19.5 - parent: 2 - - uid: 8494 - components: - - type: Transform - pos: 33.5,18.5 - parent: 2 - - uid: 8495 - components: - - type: Transform - pos: 33.5,17.5 - parent: 2 - - uid: 8497 - components: - - type: Transform - pos: 39.5,18.5 - parent: 2 - - uid: 8499 - components: - - type: Transform - pos: 37.5,18.5 - parent: 2 - - uid: 8500 - components: - - type: Transform - pos: 34.5,18.5 - parent: 2 - - uid: 8501 - components: - - type: Transform - pos: 32.5,18.5 - parent: 2 - - uid: 8502 - components: - - type: Transform - pos: 31.5,18.5 - parent: 2 - - uid: 8503 - components: - - type: Transform - pos: 30.5,18.5 - parent: 2 - - uid: 8504 - components: - - type: Transform - pos: 29.5,18.5 - parent: 2 - - uid: 8505 - components: - - type: Transform - pos: 32.5,20.5 - parent: 2 - - uid: 8506 - components: - - type: Transform - pos: 31.5,20.5 - parent: 2 - - uid: 8507 - components: - - type: Transform - pos: 30.5,20.5 - parent: 2 - - uid: 8508 - components: - - type: Transform - pos: 29.5,20.5 - parent: 2 - - uid: 8509 - components: - - type: Transform - pos: 34.5,22.5 - parent: 2 - - uid: 8510 - components: - - type: Transform - pos: 35.5,22.5 - parent: 2 - - uid: 8511 - components: - - type: Transform - pos: 36.5,22.5 - parent: 2 - - uid: 8512 - components: - - type: Transform - pos: 34.5,28.5 - parent: 2 - - uid: 8513 - components: - - type: Transform - pos: 32.5,23.5 - parent: 2 - - uid: 8514 - components: - - type: Transform - pos: 31.5,23.5 - parent: 2 - - uid: 8515 - components: - - type: Transform - pos: 30.5,23.5 - parent: 2 - - uid: 8516 - components: - - type: Transform - pos: 29.5,23.5 - parent: 2 - - uid: 8520 - components: - - type: Transform - pos: 43.5,23.5 - parent: 2 - - uid: 8521 - components: - - type: Transform - pos: 42.5,23.5 - parent: 2 - - uid: 8522 - components: - - type: Transform - pos: 41.5,23.5 + pos: 70.5,46.5 parent: 2 - uid: 8523 components: - type: Transform - pos: 40.5,23.5 + pos: 94.5,34.5 parent: 2 - - uid: 8524 + - uid: 8560 components: - type: Transform - pos: 39.5,23.5 + pos: 53.5,32.5 parent: 2 - - uid: 8525 + - uid: 8577 components: - type: Transform - pos: 39.5,22.5 + pos: 41.5,46.5 parent: 2 - - uid: 8533 + - uid: 8604 components: - type: Transform - pos: 40.5,26.5 + pos: 42.5,34.5 parent: 2 - - uid: 8535 + - uid: 8607 components: - type: Transform - pos: 39.5,26.5 + pos: 44.5,21.5 parent: 2 - - uid: 8661 + - uid: 8618 components: - type: Transform - pos: 55.5,32.5 + pos: 66.5,45.5 + parent: 2 + - uid: 8623 + components: + - type: Transform + pos: 37.5,21.5 + parent: 2 + - uid: 8628 + components: + - type: Transform + pos: 66.5,44.5 + parent: 2 + - uid: 8672 + components: + - type: Transform + pos: 57.5,32.5 + parent: 2 + - uid: 8675 + components: + - type: Transform + pos: 47.5,41.5 parent: 2 - uid: 8676 components: - type: Transform - pos: 56.5,37.5 + pos: 47.5,34.5 + parent: 2 + - uid: 8697 + components: + - type: Transform + pos: 66.5,43.5 parent: 2 - uid: 8704 components: - type: Transform pos: 47.5,27.5 parent: 2 - - uid: 8705 - components: - - type: Transform - pos: 47.5,26.5 - parent: 2 - - uid: 8706 - components: - - type: Transform - pos: 47.5,25.5 - parent: 2 - - uid: 8707 - components: - - type: Transform - pos: 47.5,24.5 - parent: 2 - - uid: 8710 - components: - - type: Transform - pos: 47.5,23.5 - parent: 2 - - uid: 8712 - components: - - type: Transform - pos: 47.5,22.5 - parent: 2 - - uid: 8714 - components: - - type: Transform - pos: 46.5,28.5 - parent: 2 - - uid: 8715 - components: - - type: Transform - pos: 46.5,29.5 - parent: 2 - - uid: 8716 - components: - - type: Transform - pos: 46.5,30.5 - parent: 2 - - uid: 8717 - components: - - type: Transform - pos: 46.5,31.5 - parent: 2 - - uid: 8718 - components: - - type: Transform - pos: 46.5,32.5 - parent: 2 - - uid: 8730 - components: - - type: Transform - pos: 46.5,33.5 - parent: 2 - - uid: 8731 - components: - - type: Transform - pos: 46.5,34.5 - parent: 2 - - uid: 8759 - components: - - type: Transform - pos: 46.5,35.5 - parent: 2 - - uid: 8766 - components: - - type: Transform - pos: 46.5,36.5 - parent: 2 - - uid: 8779 - components: - - type: Transform - pos: 46.5,37.5 - parent: 2 - - uid: 8791 - components: - - type: Transform - pos: 46.5,38.5 - parent: 2 - - uid: 8795 - components: - - type: Transform - pos: 46.5,39.5 - parent: 2 - - uid: 8796 - components: - - type: Transform - pos: 45.5,39.5 - parent: 2 - - uid: 8797 - components: - - type: Transform - pos: 45.5,40.5 - parent: 2 - - uid: 8798 - components: - - type: Transform - pos: 45.5,41.5 - parent: 2 - - uid: 8934 - components: - - type: Transform - pos: 69.5,30.5 - parent: 2 - - uid: 9131 - components: - - type: Transform - pos: 20.5,34.5 - parent: 2 - - uid: 9132 - components: - - type: Transform - pos: 20.5,33.5 - parent: 2 - - uid: 9133 - components: - - type: Transform - pos: 20.5,32.5 - parent: 2 - uid: 9134 components: - type: Transform @@ -16849,36 +17825,6 @@ entities: - type: Transform pos: 23.5,31.5 parent: 2 - - uid: 9143 - components: - - type: Transform - pos: 23.5,30.5 - parent: 2 - - uid: 9144 - components: - - type: Transform - pos: 23.5,32.5 - parent: 2 - - uid: 9145 - components: - - type: Transform - pos: 21.5,30.5 - parent: 2 - - uid: 9146 - components: - - type: Transform - pos: 21.5,32.5 - parent: 2 - - uid: 9147 - components: - - type: Transform - pos: 18.5,30.5 - parent: 2 - - uid: 9148 - components: - - type: Transform - pos: 18.5,32.5 - parent: 2 - uid: 9149 components: - type: Transform @@ -16904,16 +17850,6 @@ entities: - type: Transform pos: 18.5,39.5 parent: 2 - - uid: 9154 - components: - - type: Transform - pos: 28.5,33.5 - parent: 2 - - uid: 9155 - components: - - type: Transform - pos: 27.5,33.5 - parent: 2 - uid: 9156 components: - type: Transform @@ -17009,26 +17945,6 @@ entities: - type: Transform pos: 26.5,26.5 parent: 2 - - uid: 9176 - components: - - type: Transform - pos: 30.5,37.5 - parent: 2 - - uid: 9177 - components: - - type: Transform - pos: 30.5,36.5 - parent: 2 - - uid: 9178 - components: - - type: Transform - pos: 30.5,35.5 - parent: 2 - - uid: 9179 - components: - - type: Transform - pos: 54.5,39.5 - parent: 2 - uid: 9180 components: - type: Transform @@ -17189,25 +18105,10 @@ entities: - type: Transform pos: 31.5,42.5 parent: 2 - - uid: 9212 - components: - - type: Transform - pos: 34.5,40.5 - parent: 2 - - uid: 9213 - components: - - type: Transform - pos: 35.5,40.5 - parent: 2 - - uid: 9214 - components: - - type: Transform - pos: 36.5,40.5 - parent: 2 - uid: 9215 components: - type: Transform - pos: 36.5,41.5 + pos: 47.5,39.5 parent: 2 - uid: 9216 components: @@ -17259,95 +18160,30 @@ entities: - type: Transform pos: 28.5,44.5 parent: 2 - - uid: 9234 - components: - - type: Transform - pos: 29.5,32.5 - parent: 2 - uid: 9235 components: - type: Transform - pos: 30.5,32.5 - parent: 2 - - uid: 9237 - components: - - type: Transform - pos: 58.5,32.5 - parent: 2 - - uid: 9240 - components: - - type: Transform - pos: 34.5,33.5 - parent: 2 - - uid: 9241 - components: - - type: Transform - pos: 34.5,34.5 - parent: 2 - - uid: 9242 - components: - - type: Transform - pos: 34.5,35.5 - parent: 2 - - uid: 9244 - components: - - type: Transform - pos: 34.5,37.5 - parent: 2 - - uid: 9245 - components: - - type: Transform - pos: 35.5,37.5 + pos: 47.5,35.5 parent: 2 - uid: 9246 components: - type: Transform pos: 35.5,38.5 parent: 2 - - uid: 9247 - components: - - type: Transform - pos: 36.5,38.5 - parent: 2 - - uid: 9248 - components: - - type: Transform - pos: 37.5,38.5 - parent: 2 - - uid: 9249 - components: - - type: Transform - pos: 38.5,38.5 - parent: 2 - - uid: 9250 - components: - - type: Transform - pos: 39.5,38.5 - parent: 2 - uid: 9251 components: - type: Transform - pos: 39.5,39.5 + pos: 60.5,24.5 parent: 2 - - uid: 9252 + - uid: 9254 components: - type: Transform - pos: 39.5,40.5 + pos: 55.5,52.5 parent: 2 - - uid: 9267 + - uid: 9255 components: - type: Transform - pos: 69.5,47.5 - parent: 2 - - uid: 9268 - components: - - type: Transform - pos: 69.5,45.5 - parent: 2 - - uid: 9269 - components: - - type: Transform - pos: 69.5,46.5 + pos: 59.5,27.5 parent: 2 - uid: 9270 components: @@ -17369,71 +18205,11 @@ entities: - type: Transform pos: 73.5,45.5 parent: 2 - - uid: 9274 - components: - - type: Transform - pos: 66.5,45.5 - parent: 2 - - uid: 9275 - components: - - type: Transform - pos: 66.5,46.5 - parent: 2 - - uid: 9276 - components: - - type: Transform - pos: 66.5,44.5 - parent: 2 - - uid: 9277 - components: - - type: Transform - pos: 67.5,44.5 - parent: 2 - - uid: 9278 - components: - - type: Transform - pos: 65.5,46.5 - parent: 2 - - uid: 9279 - components: - - type: Transform - pos: 64.5,46.5 - parent: 2 - - uid: 9280 - components: - - type: Transform - pos: 63.5,46.5 - parent: 2 - - uid: 9281 - components: - - type: Transform - pos: 63.5,47.5 - parent: 2 - - uid: 9282 - components: - - type: Transform - pos: 62.5,48.5 - parent: 2 - - uid: 9283 - components: - - type: Transform - pos: 61.5,48.5 - parent: 2 - - uid: 9284 - components: - - type: Transform - pos: 60.5,48.5 - parent: 2 - uid: 9285 components: - type: Transform pos: 59.5,48.5 parent: 2 - - uid: 9286 - components: - - type: Transform - pos: 58.5,48.5 - parent: 2 - uid: 9287 components: - type: Transform @@ -17459,80 +18235,10 @@ entities: - type: Transform pos: 53.5,48.5 parent: 2 - - uid: 9292 - components: - - type: Transform - pos: 52.5,48.5 - parent: 2 - - uid: 9293 - components: - - type: Transform - pos: 51.5,48.5 - parent: 2 - - uid: 9294 - components: - - type: Transform - pos: 50.5,48.5 - parent: 2 - - uid: 9295 - components: - - type: Transform - pos: 49.5,48.5 - parent: 2 - - uid: 9298 - components: - - type: Transform - pos: 44.5,45.5 - parent: 2 - - uid: 9299 - components: - - type: Transform - pos: 49.5,47.5 - parent: 2 - - uid: 9300 - components: - - type: Transform - pos: 48.5,47.5 - parent: 2 - uid: 9301 components: - type: Transform - pos: 47.5,47.5 - parent: 2 - - uid: 9302 - components: - - type: Transform - pos: 46.5,47.5 - parent: 2 - - uid: 9303 - components: - - type: Transform - pos: 46.5,46.5 - parent: 2 - - uid: 9304 - components: - - type: Transform - pos: 45.5,46.5 - parent: 2 - - uid: 9305 - components: - - type: Transform - pos: 44.5,46.5 - parent: 2 - - uid: 9310 - components: - - type: Transform - pos: 68.5,41.5 - parent: 2 - - uid: 9311 - components: - - type: Transform - pos: 68.5,42.5 - parent: 2 - - uid: 9312 - components: - - type: Transform - pos: 67.5,42.5 + pos: 61.5,24.5 parent: 2 - uid: 9313 components: @@ -17549,11 +18255,6 @@ entities: - type: Transform pos: 66.5,40.5 parent: 2 - - uid: 9316 - components: - - type: Transform - pos: 66.5,39.5 - parent: 2 - uid: 9317 components: - type: Transform @@ -17564,16 +18265,6 @@ entities: - type: Transform pos: 66.5,37.5 parent: 2 - - uid: 9319 - components: - - type: Transform - pos: 66.5,36.5 - parent: 2 - - uid: 9320 - components: - - type: Transform - pos: 66.5,35.5 - parent: 2 - uid: 9321 components: - type: Transform @@ -17622,87 +18313,52 @@ entities: - uid: 9330 components: - type: Transform - pos: 67.5,28.5 - parent: 2 - - uid: 9331 - components: - - type: Transform - pos: 68.5,28.5 - parent: 2 - - uid: 9332 - components: - - type: Transform - pos: 69.5,28.5 - parent: 2 - - uid: 9335 - components: - - type: Transform - pos: 69.5,31.5 + pos: 57.5,53.5 parent: 2 - uid: 9336 components: - type: Transform pos: 69.5,32.5 parent: 2 - - uid: 9337 - components: - - type: Transform - pos: 69.5,33.5 - parent: 2 - - uid: 9338 - components: - - type: Transform - pos: 68.5,32.5 - parent: 2 - uid: 9339 components: - type: Transform - pos: 67.5,32.5 - parent: 2 - - uid: 9340 - components: - - type: Transform - pos: 67.5,36.5 - parent: 2 - - uid: 9341 - components: - - type: Transform - pos: 68.5,36.5 - parent: 2 - - uid: 9342 - components: - - type: Transform - pos: 69.5,36.5 + pos: 21.5,11.5 parent: 2 - uid: 9343 components: - type: Transform - pos: 70.5,36.5 - parent: 2 - - uid: 9344 - components: - - type: Transform - pos: 67.5,39.5 + pos: 22.5,10.5 parent: 2 - uid: 9345 components: - type: Transform - pos: 68.5,39.5 - parent: 2 - - uid: 9346 - components: - - type: Transform - pos: 69.5,39.5 + pos: 57.5,52.5 parent: 2 - uid: 9347 components: - type: Transform pos: 70.5,39.5 parent: 2 - - uid: 9454 + - uid: 9351 components: - type: Transform - pos: 32.5,33.5 + pos: 55.5,51.5 + parent: 2 + - uid: 9499 + components: + - type: Transform + pos: 13.5,-17.5 + parent: 2 + - uid: 9586 + components: + - type: Transform + pos: 38.5,26.5 + parent: 2 + - uid: 9587 + components: + - type: Transform + pos: 33.5,36.5 parent: 2 - uid: 9694 components: @@ -18004,6 +18660,11 @@ entities: - type: Transform pos: 26.5,-12.5 parent: 2 + - uid: 9895 + components: + - type: Transform + pos: 32.5,35.5 + parent: 2 - uid: 9905 components: - type: Transform @@ -18109,10 +18770,10 @@ entities: - type: Transform pos: 32.5,-17.5 parent: 2 - - uid: 9926 + - uid: 9928 components: - type: Transform - pos: 39.5,-15.5 + pos: 47.5,37.5 parent: 2 - uid: 9929 components: @@ -18459,16 +19120,6 @@ entities: - type: Transform pos: 17.5,-10.5 parent: 2 - - uid: 10001 - components: - - type: Transform - pos: 17.5,-11.5 - parent: 2 - - uid: 10002 - components: - - type: Transform - pos: 16.5,-11.5 - parent: 2 - uid: 10003 components: - type: Transform @@ -18524,11 +19175,6 @@ entities: - type: Transform pos: 13.5,-11.5 parent: 2 - - uid: 10014 - components: - - type: Transform - pos: 14.5,-11.5 - parent: 2 - uid: 10015 components: - type: Transform @@ -18639,6 +19285,11 @@ entities: - type: Transform pos: 32.5,-32.5 parent: 2 + - uid: 10048 + components: + - type: Transform + pos: 40.5,45.5 + parent: 2 - uid: 10075 components: - type: Transform @@ -18654,11 +19305,6 @@ entities: - type: Transform pos: 61.5,-2.5 parent: 2 - - uid: 10084 - components: - - type: Transform - pos: 40.5,33.5 - parent: 2 - uid: 10103 components: - type: Transform @@ -18689,10 +19335,50 @@ entities: - type: Transform pos: 61.5,-10.5 parent: 2 - - uid: 10454 + - uid: 10290 components: - type: Transform - pos: 53.5,20.5 + pos: 42.5,46.5 + parent: 2 + - uid: 10292 + components: + - type: Transform + pos: 38.5,17.5 + parent: 2 + - uid: 10316 + components: + - type: Transform + pos: 41.5,31.5 + parent: 2 + - uid: 10339 + components: + - type: Transform + pos: 74.5,15.5 + parent: 2 + - uid: 10348 + components: + - type: Transform + pos: 49.5,24.5 + parent: 2 + - uid: 10407 + components: + - type: Transform + pos: 61.5,44.5 + parent: 2 + - uid: 10408 + components: + - type: Transform + pos: 60.5,44.5 + parent: 2 + - uid: 10435 + components: + - type: Transform + pos: 29.5,24.5 + parent: 2 + - uid: 10438 + components: + - type: Transform + pos: 34.5,24.5 parent: 2 - uid: 10455 components: @@ -18724,26 +19410,6 @@ entities: - type: Transform pos: 49.5,19.5 parent: 2 - - uid: 10461 - components: - - type: Transform - pos: 48.5,19.5 - parent: 2 - - uid: 10462 - components: - - type: Transform - pos: 49.5,18.5 - parent: 2 - - uid: 10463 - components: - - type: Transform - pos: 49.5,17.5 - parent: 2 - - uid: 10464 - components: - - type: Transform - pos: 48.5,17.5 - parent: 2 - uid: 10465 components: - type: Transform @@ -18754,20 +19420,10 @@ entities: - type: Transform pos: 55.5,18.5 parent: 2 - - uid: 10467 - components: - - type: Transform - pos: 51.5,22.5 - parent: 2 - uid: 10468 components: - type: Transform - pos: 56.5,11.5 - parent: 2 - - uid: 10469 - components: - - type: Transform - pos: 51.5,23.5 + pos: 26.5,10.5 parent: 2 - uid: 10470 components: @@ -18782,17 +19438,7 @@ entities: - uid: 10472 components: - type: Transform - pos: 55.5,11.5 - parent: 2 - - uid: 10473 - components: - - type: Transform - pos: 54.5,11.5 - parent: 2 - - uid: 10475 - components: - - type: Transform - pos: 54.5,10.5 + pos: 31.5,6.5 parent: 2 - uid: 10476 components: @@ -19014,45 +19660,15 @@ entities: - type: Transform pos: 26.5,14.5 parent: 2 - - uid: 10520 - components: - - type: Transform - pos: 65.5,23.5 - parent: 2 - - uid: 10521 - components: - - type: Transform - pos: 64.5,23.5 - parent: 2 - - uid: 10522 - components: - - type: Transform - pos: 63.5,23.5 - parent: 2 - - uid: 10523 - components: - - type: Transform - pos: 62.5,23.5 - parent: 2 - - uid: 10524 - components: - - type: Transform - pos: 62.5,24.5 - parent: 2 - uid: 10525 components: - type: Transform - pos: 62.5,25.5 + pos: 40.5,20.5 parent: 2 - uid: 10526 components: - type: Transform - pos: 62.5,26.5 - parent: 2 - - uid: 10527 - components: - - type: Transform - pos: 62.5,27.5 + pos: 40.5,19.5 parent: 2 - uid: 10528 components: @@ -19104,51 +19720,16 @@ entities: - type: Transform pos: 70.5,14.5 parent: 2 - - uid: 10538 - components: - - type: Transform - pos: 64.5,11.5 - parent: 2 - - uid: 10539 - components: - - type: Transform - pos: 63.5,11.5 - parent: 2 - uid: 10540 components: - type: Transform pos: 62.5,11.5 parent: 2 - - uid: 10541 - components: - - type: Transform - pos: 61.5,11.5 - parent: 2 - uid: 10542 components: - type: Transform pos: 61.5,10.5 parent: 2 - - uid: 10543 - components: - - type: Transform - pos: 61.5,9.5 - parent: 2 - - uid: 10544 - components: - - type: Transform - pos: 61.5,8.5 - parent: 2 - - uid: 10546 - components: - - type: Transform - pos: 61.5,18.5 - parent: 2 - - uid: 10547 - components: - - type: Transform - pos: 60.5,18.5 - parent: 2 - uid: 10548 components: - type: Transform @@ -19177,7 +19758,7 @@ entities: - uid: 10553 components: - type: Transform - pos: 59.5,13.5 + pos: 57.5,12.5 parent: 2 - uid: 10554 components: @@ -19254,51 +19835,11 @@ entities: - type: Transform pos: 59.5,20.5 parent: 2 - - uid: 10569 - components: - - type: Transform - pos: 59.5,21.5 - parent: 2 - - uid: 10570 - components: - - type: Transform - pos: 59.5,22.5 - parent: 2 - - uid: 10571 - components: - - type: Transform - pos: 59.5,23.5 - parent: 2 - uid: 10572 components: - type: Transform pos: 59.5,24.5 parent: 2 - - uid: 10573 - components: - - type: Transform - pos: 58.5,24.5 - parent: 2 - - uid: 10574 - components: - - type: Transform - pos: 57.5,24.5 - parent: 2 - - uid: 10575 - components: - - type: Transform - pos: 56.5,24.5 - parent: 2 - - uid: 10576 - components: - - type: Transform - pos: 55.5,24.5 - parent: 2 - - uid: 10577 - components: - - type: Transform - pos: 54.5,24.5 - parent: 2 - uid: 10578 components: - type: Transform @@ -19334,6 +19875,146 @@ entities: - type: Transform pos: 56.5,6.5 parent: 2 + - uid: 10596 + components: + - type: Transform + pos: 66.5,7.5 + parent: 2 + - uid: 10599 + components: + - type: Transform + pos: 57.5,28.5 + parent: 2 + - uid: 10672 + components: + - type: Transform + pos: 50.5,38.5 + parent: 2 + - uid: 10696 + components: + - type: Transform + pos: 15.5,4.5 + parent: 2 + - uid: 10711 + components: + - type: Transform + pos: 66.5,46.5 + parent: 2 + - uid: 10765 + components: + - type: Transform + pos: 32.5,17.5 + parent: 2 + - uid: 10769 + components: + - type: Transform + pos: 32.5,19.5 + parent: 2 + - uid: 10805 + components: + - type: Transform + pos: 49.5,27.5 + parent: 2 + - uid: 10838 + components: + - type: Transform + pos: 50.5,27.5 + parent: 2 + - uid: 10841 + components: + - type: Transform + pos: 52.5,27.5 + parent: 2 + - uid: 10844 + components: + - type: Transform + pos: 53.5,27.5 + parent: 2 + - uid: 10845 + components: + - type: Transform + pos: 54.5,27.5 + parent: 2 + - uid: 10846 + components: + - type: Transform + pos: 55.5,27.5 + parent: 2 + - uid: 10847 + components: + - type: Transform + pos: 56.5,27.5 + parent: 2 + - uid: 10848 + components: + - type: Transform + pos: 57.5,27.5 + parent: 2 + - uid: 10850 + components: + - type: Transform + pos: 57.5,29.5 + parent: 2 + - uid: 10851 + components: + - type: Transform + pos: 58.5,29.5 + parent: 2 + - uid: 10852 + components: + - type: Transform + pos: 59.5,29.5 + parent: 2 + - uid: 10854 + components: + - type: Transform + pos: 60.5,29.5 + parent: 2 + - uid: 10855 + components: + - type: Transform + pos: 60.5,30.5 + parent: 2 + - uid: 10857 + components: + - type: Transform + pos: 60.5,31.5 + parent: 2 + - uid: 10858 + components: + - type: Transform + pos: 60.5,32.5 + parent: 2 + - uid: 10859 + components: + - type: Transform + pos: 60.5,33.5 + parent: 2 + - uid: 10860 + components: + - type: Transform + pos: 60.5,34.5 + parent: 2 + - uid: 10862 + components: + - type: Transform + pos: 31.5,24.5 + parent: 2 + - uid: 10865 + components: + - type: Transform + pos: 35.5,19.5 + parent: 2 + - uid: 10883 + components: + - type: Transform + pos: 55.5,53.5 + parent: 2 + - uid: 10917 + components: + - type: Transform + pos: 15.5,8.5 + parent: 2 - uid: 10925 components: - type: Transform @@ -19447,23 +20128,33 @@ entities: - uid: 10953 components: - type: Transform - pos: 50.5,6.5 + pos: 15.5,7.5 parent: 2 - uid: 10954 components: - type: Transform - pos: 51.5,6.5 + pos: 16.5,3.5 parent: 2 - uid: 10955 components: - type: Transform - pos: 52.5,6.5 + pos: 19.5,10.5 parent: 2 - uid: 10957 components: - type: Transform pos: 54.5,4.5 parent: 2 + - uid: 10974 + components: + - type: Transform + pos: 30.5,24.5 + parent: 2 + - uid: 10989 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 2 - uid: 11008 components: - type: Transform @@ -19489,6 +20180,11 @@ entities: - type: Transform pos: 51.5,3.5 parent: 2 + - uid: 11019 + components: + - type: Transform + pos: 15.5,3.5 + parent: 2 - uid: 11023 components: - type: Transform @@ -19529,6 +20225,11 @@ entities: - type: Transform pos: 52.5,-0.5 parent: 2 + - uid: 11033 + components: + - type: Transform + pos: 12.5,18.5 + parent: 2 - uid: 11034 components: - type: Transform @@ -19944,6 +20645,76 @@ entities: - type: Transform pos: 66.5,-11.5 parent: 2 + - uid: 11158 + components: + - type: Transform + pos: 62.5,39.5 + parent: 2 + - uid: 11208 + components: + - type: Transform + pos: 63.5,44.5 + parent: 2 + - uid: 11209 + components: + - type: Transform + pos: 59.5,44.5 + parent: 2 + - uid: 11210 + components: + - type: Transform + pos: 55.5,45.5 + parent: 2 + - uid: 11217 + components: + - type: Transform + pos: 58.5,44.5 + parent: 2 + - uid: 11224 + components: + - type: Transform + pos: 57.5,44.5 + parent: 2 + - uid: 11273 + components: + - type: Transform + pos: 57.5,45.5 + parent: 2 + - uid: 11274 + components: + - type: Transform + pos: 56.5,45.5 + parent: 2 + - uid: 11279 + components: + - type: Transform + pos: 54.5,45.5 + parent: 2 + - uid: 11283 + components: + - type: Transform + pos: 53.5,45.5 + parent: 2 + - uid: 11284 + components: + - type: Transform + pos: 53.5,46.5 + parent: 2 + - uid: 11285 + components: + - type: Transform + pos: 53.5,47.5 + parent: 2 + - uid: 11286 + components: + - type: Transform + pos: 54.5,44.5 + parent: 2 + - uid: 11333 + components: + - type: Transform + pos: 54.5,43.5 + parent: 2 - uid: 11368 components: - type: Transform @@ -20039,21 +20810,76 @@ entities: - type: Transform pos: 61.5,0.5 parent: 2 - - uid: 11473 + - uid: 11465 components: - type: Transform - pos: 7.5,37.5 + pos: 54.5,42.5 + parent: 2 + - uid: 11475 + components: + - type: Transform + pos: 54.5,41.5 parent: 2 - uid: 11632 components: - type: Transform pos: -25.5,-18.5 parent: 2 + - uid: 11665 + components: + - type: Transform + pos: 34.5,19.5 + parent: 2 + - uid: 11667 + components: + - type: Transform + pos: 33.5,19.5 + parent: 2 + - uid: 11668 + components: + - type: Transform + pos: 32.5,18.5 + parent: 2 + - uid: 11669 + components: + - type: Transform + pos: 36.5,19.5 + parent: 2 + - uid: 11671 + components: + - type: Transform + pos: 33.5,24.5 + parent: 2 + - uid: 11673 + components: + - type: Transform + pos: 47.5,40.5 + parent: 2 + - uid: 11698 + components: + - type: Transform + pos: 27.5,36.5 + parent: 2 - uid: 11750 components: - type: Transform pos: 41.5,-34.5 parent: 2 + - uid: 11943 + components: + - type: Transform + pos: 38.5,19.5 + parent: 2 + - uid: 11953 + components: + - type: Transform + pos: 37.5,19.5 + parent: 2 + - uid: 11979 + components: + - type: Transform + pos: 32.5,24.5 + parent: 2 - uid: 11981 components: - type: Transform @@ -20124,11 +20950,6 @@ entities: - type: Transform pos: 74.5,7.5 parent: 2 - - uid: 11998 - components: - - type: Transform - pos: 74.5,6.5 - parent: 2 - uid: 11999 components: - type: Transform @@ -20282,12 +21103,12 @@ entities: - uid: 12029 components: - type: Transform - pos: 65.5,8.5 + pos: 53.5,24.5 parent: 2 - uid: 12030 components: - type: Transform - pos: 65.5,7.5 + pos: 56.5,24.5 parent: 2 - uid: 12031 components: @@ -20347,42 +21168,12 @@ entities: - uid: 12042 components: - type: Transform - pos: 73.5,11.5 + pos: 54.5,24.5 parent: 2 - uid: 12043 components: - type: Transform - pos: 73.5,12.5 - parent: 2 - - uid: 12044 - components: - - type: Transform - pos: 73.5,13.5 - parent: 2 - - uid: 12045 - components: - - type: Transform - pos: 73.5,14.5 - parent: 2 - - uid: 12046 - components: - - type: Transform - pos: 73.5,15.5 - parent: 2 - - uid: 12047 - components: - - type: Transform - pos: 73.5,16.5 - parent: 2 - - uid: 12048 - components: - - type: Transform - pos: 73.5,17.5 - parent: 2 - - uid: 12049 - components: - - type: Transform - pos: 73.5,18.5 + pos: 52.5,24.5 parent: 2 - uid: 12050 components: @@ -20654,16 +21445,66 @@ entities: - type: Transform pos: -21.5,-3.5 parent: 2 + - uid: 12231 + components: + - type: Transform + pos: 44.5,41.5 + parent: 2 + - uid: 12304 + components: + - type: Transform + pos: 19.5,-17.5 + parent: 2 + - uid: 12331 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 2 + - uid: 12371 + components: + - type: Transform + pos: 43.5,29.5 + parent: 2 + - uid: 12379 + components: + - type: Transform + pos: 39.5,21.5 + parent: 2 + - uid: 12395 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 2 + - uid: 12430 + components: + - type: Transform + pos: 49.5,46.5 + parent: 2 + - uid: 12439 + components: + - type: Transform + pos: 42.5,45.5 + parent: 2 - uid: 12448 components: - type: Transform pos: -7.5,-16.5 parent: 2 + - uid: 12450 + components: + - type: Transform + pos: 42.5,26.5 + parent: 2 - uid: 12454 components: - type: Transform pos: -7.5,-9.5 parent: 2 + - uid: 12478 + components: + - type: Transform + pos: 52.5,31.5 + parent: 2 - uid: 12500 components: - type: Transform @@ -20744,6 +21585,21 @@ entities: - type: Transform pos: 101.5,-19.5 parent: 2 + - uid: 12528 + components: + - type: Transform + pos: 56.5,32.5 + parent: 2 + - uid: 12531 + components: + - type: Transform + pos: 56.5,35.5 + parent: 2 + - uid: 12532 + components: + - type: Transform + pos: 55.5,35.5 + parent: 2 - uid: 12533 components: - type: Transform @@ -20809,6 +21665,11 @@ entities: - type: Transform pos: 110.5,-15.5 parent: 2 + - uid: 12559 + components: + - type: Transform + pos: 54.5,35.5 + parent: 2 - uid: 12560 components: - type: Transform @@ -20954,20 +21815,90 @@ entities: - type: Transform pos: 114.5,-16.5 parent: 2 + - uid: 12652 + components: + - type: Transform + pos: 54.5,36.5 + parent: 2 + - uid: 12661 + components: + - type: Transform + pos: 57.5,35.5 + parent: 2 + - uid: 12662 + components: + - type: Transform + pos: 57.5,36.5 + parent: 2 - uid: 12666 components: - type: Transform pos: 29.5,-47.5 parent: 2 + - uid: 12669 + components: + - type: Transform + pos: 57.5,37.5 + parent: 2 + - uid: 12670 + components: + - type: Transform + pos: 57.5,38.5 + parent: 2 + - uid: 12738 + components: + - type: Transform + pos: 58.5,38.5 + parent: 2 + - uid: 12739 + components: + - type: Transform + pos: 54.5,37.5 + parent: 2 + - uid: 12741 + components: + - type: Transform + pos: 55.5,32.5 + parent: 2 - uid: 12742 components: - type: Transform - pos: 31.5,33.5 + pos: 54.5,32.5 parent: 2 - - uid: 12743 + - uid: 12744 components: - type: Transform - pos: 30.5,33.5 + pos: 52.5,32.5 + parent: 2 + - uid: 12747 + components: + - type: Transform + pos: 52.5,30.5 + parent: 2 + - uid: 12748 + components: + - type: Transform + pos: 52.5,29.5 + parent: 2 + - uid: 12749 + components: + - type: Transform + pos: 50.5,32.5 + parent: 2 + - uid: 12750 + components: + - type: Transform + pos: 50.5,33.5 + parent: 2 + - uid: 12759 + components: + - type: Transform + pos: 41.5,25.5 + parent: 2 + - uid: 12766 + components: + - type: Transform + pos: 51.5,31.5 parent: 2 - uid: 12779 components: @@ -21109,6 +22040,21 @@ entities: - type: Transform pos: 43.5,-48.5 parent: 2 + - uid: 13125 + components: + - type: Transform + pos: 50.5,31.5 + parent: 2 + - uid: 13132 + components: + - type: Transform + pos: 49.5,31.5 + parent: 2 + - uid: 13138 + components: + - type: Transform + pos: 48.5,31.5 + parent: 2 - uid: 13140 components: - type: Transform @@ -21144,6 +22090,16 @@ entities: - type: Transform pos: -23.5,-3.5 parent: 2 + - uid: 13154 + components: + - type: Transform + pos: 47.5,31.5 + parent: 2 + - uid: 13177 + components: + - type: Transform + pos: 46.5,31.5 + parent: 2 - uid: 13181 components: - type: Transform @@ -21154,6 +22110,11 @@ entities: - type: Transform pos: -23.5,-7.5 parent: 2 + - uid: 13183 + components: + - type: Transform + pos: 40.5,31.5 + parent: 2 - uid: 13244 components: - type: Transform @@ -21204,6 +22165,11 @@ entities: - type: Transform pos: -12.5,0.5 parent: 2 + - uid: 13288 + components: + - type: Transform + pos: 40.5,46.5 + parent: 2 - uid: 13304 components: - type: Transform @@ -21224,30 +22190,200 @@ entities: - type: Transform pos: 10.5,-42.5 parent: 2 - - uid: 13509 + - uid: 13497 components: - type: Transform - pos: 54.5,32.5 + pos: 53.5,36.5 parent: 2 - - uid: 13513 + - uid: 13500 components: - type: Transform - pos: 57.5,40.5 + pos: 52.5,36.5 parent: 2 - - uid: 13516 + - uid: 13504 components: - type: Transform - pos: 58.5,40.5 + pos: 54.5,38.5 parent: 2 - - uid: 13528 + - uid: 13532 components: - type: Transform - pos: 57.5,32.5 + pos: 40.5,34.5 + parent: 2 + - uid: 13560 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 13566 + components: + - type: Transform + pos: 38.5,32.5 + parent: 2 + - uid: 13567 + components: + - type: Transform + pos: 39.5,31.5 parent: 2 - uid: 13570 components: - type: Transform - pos: 47.5,28.5 + pos: 44.5,34.5 + parent: 2 + - uid: 13571 + components: + - type: Transform + pos: 44.5,35.5 + parent: 2 + - uid: 13573 + components: + - type: Transform + pos: 44.5,36.5 + parent: 2 + - uid: 13582 + components: + - type: Transform + pos: 35.5,42.5 + parent: 2 + - uid: 13589 + components: + - type: Transform + pos: 39.5,42.5 + parent: 2 + - uid: 13599 + components: + - type: Transform + pos: 38.5,27.5 + parent: 2 + - uid: 13600 + components: + - type: Transform + pos: 38.5,28.5 + parent: 2 + - uid: 13601 + components: + - type: Transform + pos: 37.5,31.5 + parent: 2 + - uid: 13602 + components: + - type: Transform + pos: 36.5,31.5 + parent: 2 + - uid: 13603 + components: + - type: Transform + pos: 35.5,31.5 + parent: 2 + - uid: 13604 + components: + - type: Transform + pos: 34.5,31.5 + parent: 2 + - uid: 13605 + components: + - type: Transform + pos: 33.5,31.5 + parent: 2 + - uid: 13606 + components: + - type: Transform + pos: 34.5,32.5 + parent: 2 + - uid: 13607 + components: + - type: Transform + pos: 34.5,33.5 + parent: 2 + - uid: 13610 + components: + - type: Transform + pos: 35.5,33.5 + parent: 2 + - uid: 13611 + components: + - type: Transform + pos: 36.5,33.5 + parent: 2 + - uid: 13612 + components: + - type: Transform + pos: 33.5,30.5 + parent: 2 + - uid: 13613 + components: + - type: Transform + pos: 32.5,30.5 + parent: 2 + - uid: 13619 + components: + - type: Transform + pos: 31.5,30.5 + parent: 2 + - uid: 13620 + components: + - type: Transform + pos: 30.5,30.5 + parent: 2 + - uid: 13621 + components: + - type: Transform + pos: 29.5,30.5 + parent: 2 + - uid: 13622 + components: + - type: Transform + pos: 33.5,29.5 + parent: 2 + - uid: 13623 + components: + - type: Transform + pos: 33.5,28.5 + parent: 2 + - uid: 13624 + components: + - type: Transform + pos: 33.5,27.5 + parent: 2 + - uid: 13625 + components: + - type: Transform + pos: 32.5,27.5 + parent: 2 + - uid: 13626 + components: + - type: Transform + pos: 31.5,27.5 + parent: 2 + - uid: 13627 + components: + - type: Transform + pos: 30.5,27.5 + parent: 2 + - uid: 13628 + components: + - type: Transform + pos: 29.5,27.5 + parent: 2 + - uid: 13631 + components: + - type: Transform + pos: 26.5,24.5 + parent: 2 + - uid: 13632 + components: + - type: Transform + pos: 51.5,27.5 + parent: 2 + - uid: 13633 + components: + - type: Transform + pos: 26.5,25.5 + parent: 2 + - uid: 13636 + components: + - type: Transform + pos: 55.5,11.5 parent: 2 - uid: 13669 components: @@ -21299,10 +22435,10 @@ entities: - type: Transform pos: -26.5,-20.5 parent: 2 - - uid: 13706 + - uid: 13690 components: - type: Transform - pos: 3.5,24.5 + pos: 19.5,9.5 parent: 2 - uid: 13707 components: @@ -21564,6 +22700,11 @@ entities: - type: Transform pos: 73.5,23.5 parent: 2 + - uid: 14443 + components: + - type: Transform + pos: 26.5,23.5 + parent: 2 - uid: 14444 components: - type: Transform @@ -21622,12 +22763,7 @@ entities: - uid: 14455 components: - type: Transform - pos: 88.5,28.5 - parent: 2 - - uid: 14456 - components: - - type: Transform - pos: 88.5,29.5 + pos: 26.5,22.5 parent: 2 - uid: 14457 components: @@ -21744,15 +22880,10 @@ entities: - type: Transform pos: 96.5,29.5 parent: 2 - - uid: 14625 + - uid: 14633 components: - type: Transform - pos: 64.5,45.5 - parent: 2 - - uid: 14626 - components: - - type: Transform - pos: 64.5,44.5 + pos: 18.5,-18.5 parent: 2 - uid: 14634 components: @@ -21779,20 +22910,25 @@ entities: - type: Transform pos: 81.5,24.5 parent: 2 + - uid: 14639 + components: + - type: Transform + pos: 18.5,-19.5 + parent: 2 - uid: 14640 components: - type: Transform - pos: 35.5,29.5 + pos: 18.5,-20.5 parent: 2 - - uid: 14681 + - uid: 14654 components: - type: Transform - pos: 13.5,19.5 + pos: 74.5,18.5 parent: 2 - uid: 14682 components: - type: Transform - pos: 13.5,20.5 + pos: 9.5,17.5 parent: 2 - uid: 14683 components: @@ -21914,20 +23050,50 @@ entities: - type: Transform pos: 6.5,31.5 parent: 2 - - uid: 14743 - components: - - type: Transform - pos: 6.5,38.5 - parent: 2 - uid: 14744 components: - type: Transform pos: 5.5,38.5 parent: 2 - - uid: 14763 + - uid: 14786 components: - type: Transform - pos: 9.5,18.5 + pos: 26.5,21.5 + parent: 2 + - uid: 14791 + components: + - type: Transform + pos: 26.5,20.5 + parent: 2 + - uid: 14794 + components: + - type: Transform + pos: 26.5,19.5 + parent: 2 + - uid: 14836 + components: + - type: Transform + pos: 43.5,41.5 + parent: 2 + - uid: 14842 + components: + - type: Transform + pos: 47.5,32.5 + parent: 2 + - uid: 14848 + components: + - type: Transform + pos: 34.5,42.5 + parent: 2 + - uid: 14862 + components: + - type: Transform + pos: 34.5,23.5 + parent: 2 + - uid: 14885 + components: + - type: Transform + pos: 39.5,40.5 parent: 2 - uid: 14905 components: @@ -21954,60 +23120,10 @@ entities: - type: Transform pos: 8.5,21.5 parent: 2 - - uid: 14915 + - uid: 14962 components: - type: Transform - pos: 18.5,18.5 - parent: 2 - - uid: 14931 - components: - - type: Transform - pos: 36.5,34.5 - parent: 2 - - uid: 14932 - components: - - type: Transform - pos: 33.5,32.5 - parent: 2 - - uid: 14936 - components: - - type: Transform - pos: 31.5,36.5 - parent: 2 - - uid: 14937 - components: - - type: Transform - pos: 32.5,36.5 - parent: 2 - - uid: 14938 - components: - - type: Transform - pos: 33.5,36.5 - parent: 2 - - uid: 14939 - components: - - type: Transform - pos: 41.5,41.5 - parent: 2 - - uid: 14940 - components: - - type: Transform - pos: 42.5,41.5 - parent: 2 - - uid: 14941 - components: - - type: Transform - pos: 43.5,41.5 - parent: 2 - - uid: 14942 - components: - - type: Transform - pos: 44.5,41.5 - parent: 2 - - uid: 14943 - components: - - type: Transform - pos: 40.5,41.5 + pos: 49.5,14.5 parent: 2 - uid: 15008 components: @@ -22039,6 +23155,11 @@ entities: - type: Transform pos: 41.5,-12.5 parent: 2 + - uid: 15085 + components: + - type: Transform + pos: 57.5,13.5 + parent: 2 - uid: 15319 components: - type: Transform @@ -22064,11 +23185,6 @@ entities: - type: Transform pos: 28.5,-32.5 parent: 2 - - uid: 15387 - components: - - type: Transform - pos: 39.5,27.5 - parent: 2 - uid: 15402 components: - type: Transform @@ -22084,6 +23200,11 @@ entities: - type: Transform pos: 11.5,-29.5 parent: 2 + - uid: 15449 + components: + - type: Transform + pos: 26.5,18.5 + parent: 2 - uid: 15463 components: - type: Transform @@ -22094,33 +23215,263 @@ entities: - type: Transform pos: 55.5,-19.5 parent: 2 - - uid: 15465 + - uid: 15499 components: - type: Transform - pos: 40.5,42.5 + pos: 19.5,-16.5 parent: 2 - - uid: 15474 + - uid: 15500 components: - type: Transform - pos: 43.5,22.5 + pos: 17.5,-18.5 parent: 2 - - uid: 15475 + - uid: 15580 components: - type: Transform - pos: 43.5,21.5 + pos: 74.5,13.5 + parent: 2 + - uid: 15592 + components: + - type: Transform + pos: 64.5,24.5 + parent: 2 + - uid: 15593 + components: + - type: Transform + pos: 64.5,23.5 + parent: 2 + - uid: 15594 + components: + - type: Transform + pos: 64.5,22.5 + parent: 2 + - uid: 15595 + components: + - type: Transform + pos: 65.5,22.5 + parent: 2 + - uid: 15617 + components: + - type: Transform + pos: 44.5,10.5 + parent: 2 + - uid: 15633 + components: + - type: Transform + pos: 24.5,31.5 + parent: 2 + - uid: 15636 + components: + - type: Transform + pos: 25.5,31.5 + parent: 2 + - uid: 15637 + components: + - type: Transform + pos: 69.5,44.5 + parent: 2 + - uid: 15640 + components: + - type: Transform + pos: 60.5,47.5 + parent: 2 + - uid: 15641 + components: + - type: Transform + pos: 59.5,47.5 + parent: 2 + - uid: 15642 + components: + - type: Transform + pos: 69.5,43.5 + parent: 2 + - uid: 15643 + components: + - type: Transform + pos: 69.5,42.5 + parent: 2 + - uid: 15645 + components: + - type: Transform + pos: 68.5,42.5 + parent: 2 + - uid: 15647 + components: + - type: Transform + pos: 61.5,36.5 + parent: 2 + - uid: 15648 + components: + - type: Transform + pos: 61.5,37.5 + parent: 2 + - uid: 15650 + components: + - type: Transform + pos: 51.5,38.5 + parent: 2 + - uid: 15664 + components: + - type: Transform + pos: 37.5,38.5 + parent: 2 + - uid: 15665 + components: + - type: Transform + pos: 38.5,38.5 + parent: 2 + - uid: 15666 + components: + - type: Transform + pos: 39.5,38.5 + parent: 2 + - uid: 15692 + components: + - type: Transform + pos: 32.5,34.5 + parent: 2 + - uid: 15693 + components: + - type: Transform + pos: 31.5,34.5 + parent: 2 + - uid: 15711 + components: + - type: Transform + pos: 62.5,46.5 + parent: 2 + - uid: 15712 + components: + - type: Transform + pos: 62.5,45.5 + parent: 2 + - uid: 15814 + components: + - type: Transform + pos: 12.5,-17.5 + parent: 2 + - uid: 15820 + components: + - type: Transform + pos: 10.5,21.5 + parent: 2 + - uid: 15821 + components: + - type: Transform + pos: 10.5,20.5 + parent: 2 + - uid: 15822 + components: + - type: Transform + pos: 11.5,21.5 + parent: 2 + - uid: 15827 + components: + - type: Transform + pos: 67.5,27.5 + parent: 2 + - uid: 15828 + components: + - type: Transform + pos: 68.5,27.5 + parent: 2 + - uid: 15829 + components: + - type: Transform + pos: 37.5,20.5 + parent: 2 + - uid: 15830 + components: + - type: Transform + pos: 69.5,27.5 + parent: 2 + - uid: 15831 + components: + - type: Transform + pos: 69.5,28.5 + parent: 2 + - uid: 15832 + components: + - type: Transform + pos: 69.5,29.5 + parent: 2 + - uid: 15833 + components: + - type: Transform + pos: 69.5,30.5 + parent: 2 + - uid: 15834 + components: + - type: Transform + pos: 69.5,31.5 + parent: 2 + - uid: 15835 + components: + - type: Transform + pos: 72.5,30.5 + parent: 2 + - uid: 15836 + components: + - type: Transform + pos: 72.5,29.5 + parent: 2 + - uid: 15837 + components: + - type: Transform + pos: 72.5,28.5 + parent: 2 + - uid: 15838 + components: + - type: Transform + pos: 72.5,27.5 + parent: 2 + - uid: 15850 + components: + - type: Transform + pos: 9.5,10.5 + parent: 2 + - uid: 15852 + components: + - type: Transform + pos: 9.5,11.5 + parent: 2 + - uid: 15853 + components: + - type: Transform + pos: 9.5,8.5 + parent: 2 + - uid: 15854 + components: + - type: Transform + pos: 9.5,7.5 + parent: 2 + - uid: 15866 + components: + - type: Transform + pos: 19.5,8.5 + parent: 2 + - uid: 15888 + components: + - type: Transform + pos: 31.5,8.5 + parent: 2 + - uid: 15889 + components: + - type: Transform + pos: 32.5,8.5 + parent: 2 + - uid: 15890 + components: + - type: Transform + pos: 33.5,8.5 + parent: 2 + - uid: 15891 + components: + - type: Transform + pos: 29.5,8.5 parent: 2 - proto: CableApcStack entities: - - uid: 5386 - components: - - type: Transform - pos: 50.555935,8.595494 - parent: 2 - - uid: 5387 - components: - - type: Transform - pos: 50.555935,8.595494 - parent: 2 - uid: 5627 components: - type: Transform @@ -22129,15 +23480,43 @@ entities: - uid: 11130 components: - type: Transform - pos: 54.504898,-15.262592 + pos: 54.44119,-15.013644 + parent: 2 + - uid: 15892 + components: + - type: Transform + pos: 45.046143,9.516216 + parent: 2 + - uid: 15893 + components: + - type: Transform + pos: 44.968018,9.688091 parent: 2 - proto: CableApcStack1 entities: + - uid: 3248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.185898,38.850254 + parent: 2 - uid: 6180 components: - type: Transform pos: 84.31913,7.409586 parent: 2 + - uid: 9286 + components: + - type: Transform + pos: 58.250378,48.64745 + parent: 2 +- proto: CablecuffsBroken + entities: + - uid: 15704 + components: + - type: Transform + pos: 61.707733,50.42947 + parent: 2 - proto: CableHV entities: - uid: 11 @@ -22150,21 +23529,6 @@ entities: - type: Transform pos: 15.5,-13.5 parent: 2 - - uid: 63 - components: - - type: Transform - pos: 16.5,-11.5 - parent: 2 - - uid: 64 - components: - - type: Transform - pos: 15.5,-11.5 - parent: 2 - - uid: 65 - components: - - type: Transform - pos: 14.5,-11.5 - parent: 2 - uid: 66 components: - type: Transform @@ -22190,26 +23554,36 @@ entities: - type: Transform pos: 26.5,-32.5 parent: 2 + - uid: 232 + components: + - type: Transform + pos: 85.5,40.5 + parent: 2 - uid: 338 components: - type: Transform pos: 24.5,-32.5 parent: 2 - - uid: 603 + - uid: 625 components: - type: Transform - pos: 42.5,41.5 + pos: 11.5,-21.5 parent: 2 - - uid: 628 + - uid: 629 components: - type: Transform - pos: 60.5,18.5 + pos: 16.5,-11.5 parent: 2 - uid: 682 components: - type: Transform pos: 25.5,-31.5 parent: 2 + - uid: 780 + components: + - type: Transform + pos: 62.5,45.5 + parent: 2 - uid: 828 components: - type: Transform @@ -22275,76 +23649,61 @@ entities: - type: Transform pos: 17.5,-33.5 parent: 2 - - uid: 2319 + - uid: 2134 components: - type: Transform - pos: 45.5,34.5 + pos: -3.5,-30.5 parent: 2 - - uid: 2324 + - uid: 2188 components: - type: Transform - pos: 45.5,38.5 + pos: 40.5,43.5 parent: 2 - - uid: 2332 + - uid: 2200 components: - type: Transform - pos: 43.5,41.5 + pos: 32.5,36.5 parent: 2 - - uid: 2347 + - uid: 2209 components: - type: Transform - pos: 45.5,37.5 + pos: 30.5,34.5 parent: 2 - - uid: 2353 + - uid: 2211 components: - type: Transform - pos: 45.5,35.5 + pos: 28.5,34.5 parent: 2 - - uid: 2354 + - uid: 2238 components: - type: Transform - pos: 45.5,32.5 + pos: 33.5,36.5 parent: 2 - - uid: 2355 + - uid: 2277 components: - type: Transform - pos: 45.5,33.5 + pos: 87.5,40.5 parent: 2 - - uid: 2356 + - uid: 2301 components: - type: Transform - pos: 45.5,31.5 + pos: 32.5,34.5 parent: 2 - - uid: 2360 + - uid: 2375 components: - type: Transform - pos: 45.5,30.5 - parent: 2 - - uid: 2361 - components: - - type: Transform - pos: 45.5,29.5 - parent: 2 - - uid: 2362 - components: - - type: Transform - pos: 45.5,28.5 - parent: 2 - - uid: 2366 - components: - - type: Transform - pos: 45.5,27.5 - parent: 2 - - uid: 2380 - components: - - type: Transform - pos: 45.5,36.5 + pos: 77.5,50.5 parent: 2 - uid: 2387 components: - type: Transform pos: 25.5,-28.5 parent: 2 + - uid: 2470 + components: + - type: Transform + pos: 54.5,27.5 + parent: 2 - uid: 2564 components: - type: Transform @@ -22355,6 +23714,16 @@ entities: - type: Transform pos: 70.5,-12.5 parent: 2 + - uid: 2676 + components: + - type: Transform + pos: 39.5,40.5 + parent: 2 + - uid: 2677 + components: + - type: Transform + pos: 39.5,39.5 + parent: 2 - uid: 2711 components: - type: Transform @@ -22390,30 +23759,105 @@ entities: - type: Transform pos: 22.5,9.5 parent: 2 + - uid: 3074 + components: + - type: Transform + pos: 77.5,40.5 + parent: 2 + - uid: 3099 + components: + - type: Transform + pos: 55.5,27.5 + parent: 2 + - uid: 3100 + components: + - type: Transform + pos: 51.5,27.5 + parent: 2 + - uid: 3111 + components: + - type: Transform + pos: 29.5,34.5 + parent: 2 + - uid: 3151 + components: + - type: Transform + pos: 39.5,41.5 + parent: 2 - uid: 3163 components: - type: Transform pos: 67.5,19.5 parent: 2 - - uid: 3165 + - uid: 3185 components: - type: Transform - pos: 31.5,33.5 + pos: 40.5,46.5 parent: 2 - - uid: 3171 + - uid: 3223 components: - type: Transform - pos: 30.5,33.5 + pos: 63.5,34.5 parent: 2 - - uid: 3183 + - uid: 3228 components: - type: Transform - pos: 35.5,33.5 + pos: 10.5,-22.5 parent: 2 - - uid: 3184 + - uid: 3254 components: - type: Transform - pos: 36.5,33.5 + pos: 66.5,43.5 + parent: 2 + - uid: 3255 + components: + - type: Transform + pos: 66.5,44.5 + parent: 2 + - uid: 3256 + components: + - type: Transform + pos: 65.5,44.5 + parent: 2 + - uid: 3278 + components: + - type: Transform + pos: 31.5,34.5 + parent: 2 + - uid: 3281 + components: + - type: Transform + pos: 32.5,35.5 + parent: 2 + - uid: 3315 + components: + - type: Transform + pos: 51.5,47.5 + parent: 2 + - uid: 3386 + components: + - type: Transform + pos: 46.5,27.5 + parent: 2 + - uid: 3453 + components: + - type: Transform + pos: 79.5,50.5 + parent: 2 + - uid: 3477 + components: + - type: Transform + pos: 53.5,27.5 + parent: 2 + - uid: 3844 + components: + - type: Transform + pos: 52.5,47.5 + parent: 2 + - uid: 3965 + components: + - type: Transform + pos: 46.5,19.5 parent: 2 - uid: 3980 components: @@ -22425,15 +23869,20 @@ entities: - type: Transform pos: 27.5,-32.5 parent: 2 - - uid: 4123 + - uid: 4127 components: - type: Transform - pos: 64.5,17.5 + pos: 46.5,25.5 + parent: 2 + - uid: 4128 + components: + - type: Transform + pos: 46.5,24.5 parent: 2 - uid: 4129 components: - type: Transform - pos: 60.5,25.5 + pos: 46.5,23.5 parent: 2 - uid: 4213 components: @@ -22455,6 +23904,16 @@ entities: - type: Transform pos: 22.5,-36.5 parent: 2 + - uid: 4291 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 2 + - uid: 4304 + components: + - type: Transform + pos: 45.5,46.5 + parent: 2 - uid: 4307 components: - type: Transform @@ -22470,6 +23929,16 @@ entities: - type: Transform pos: 23.5,-42.5 parent: 2 + - uid: 4401 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 2 + - uid: 4406 + components: + - type: Transform + pos: 61.5,36.5 + parent: 2 - uid: 4503 components: - type: Transform @@ -22985,11 +24454,6 @@ entities: - type: Transform pos: -5.5,-32.5 parent: 2 - - uid: 4843 - components: - - type: Transform - pos: -5.5,-31.5 - parent: 2 - uid: 4844 components: - type: Transform @@ -23135,10 +24599,45 @@ entities: - type: Transform pos: 22.5,5.5 parent: 2 - - uid: 5146 + - uid: 4914 components: - type: Transform - pos: 41.5,41.5 + pos: 47.5,46.5 + parent: 2 + - uid: 5298 + components: + - type: Transform + pos: 42.5,46.5 + parent: 2 + - uid: 5317 + components: + - type: Transform + pos: 44.5,46.5 + parent: 2 + - uid: 5338 + components: + - type: Transform + pos: 46.5,46.5 + parent: 2 + - uid: 5474 + components: + - type: Transform + pos: 48.5,46.5 + parent: 2 + - uid: 5501 + components: + - type: Transform + pos: 79.5,40.5 + parent: 2 + - uid: 5507 + components: + - type: Transform + pos: 61.5,47.5 + parent: 2 + - uid: 5516 + components: + - type: Transform + pos: 60.5,47.5 parent: 2 - uid: 5660 components: @@ -23165,6 +24664,11 @@ entities: - type: Transform pos: 25.5,-32.5 parent: 2 + - uid: 5686 + components: + - type: Transform + pos: 59.5,47.5 + parent: 2 - uid: 5726 components: - type: Transform @@ -23183,7 +24687,7 @@ entities: - uid: 5873 components: - type: Transform - pos: 63.5,48.5 + pos: 62.5,47.5 parent: 2 - uid: 5903 components: @@ -23270,26 +24774,6 @@ entities: - type: Transform pos: 10.5,-23.5 parent: 2 - - uid: 5928 - components: - - type: Transform - pos: 11.5,-23.5 - parent: 2 - - uid: 5929 - components: - - type: Transform - pos: 11.5,-22.5 - parent: 2 - - uid: 5930 - components: - - type: Transform - pos: 11.5,-21.5 - parent: 2 - - uid: 5931 - components: - - type: Transform - pos: 11.5,-20.5 - parent: 2 - uid: 5932 components: - type: Transform @@ -24005,6 +25489,16 @@ entities: - type: Transform pos: 82.5,4.5 parent: 2 + - uid: 6131 + components: + - type: Transform + pos: 43.5,46.5 + parent: 2 + - uid: 6138 + components: + - type: Transform + pos: 62.5,36.5 + parent: 2 - uid: 6141 components: - type: Transform @@ -24260,6 +25754,11 @@ entities: - type: Transform pos: 66.5,29.5 parent: 2 + - uid: 6196 + components: + - type: Transform + pos: 52.5,27.5 + parent: 2 - uid: 6200 components: - type: Transform @@ -24390,16 +25889,6 @@ entities: - type: Transform pos: 77.5,47.5 parent: 2 - - uid: 6230 - components: - - type: Transform - pos: 77.5,48.5 - parent: 2 - - uid: 6231 - components: - - type: Transform - pos: 77.5,49.5 - parent: 2 - uid: 6232 components: - type: Transform @@ -24450,16 +25939,6 @@ entities: - type: Transform pos: 78.5,43.5 parent: 2 - - uid: 6243 - components: - - type: Transform - pos: 78.5,44.5 - parent: 2 - - uid: 6244 - components: - - type: Transform - pos: 78.5,46.5 - parent: 2 - uid: 6245 components: - type: Transform @@ -24510,11 +25989,6 @@ entities: - type: Transform pos: 82.5,47.5 parent: 2 - - uid: 6255 - components: - - type: Transform - pos: 82.5,46.5 - parent: 2 - uid: 6256 components: - type: Transform @@ -24560,11 +26034,6 @@ entities: - type: Transform pos: 82.5,43.5 parent: 2 - - uid: 6265 - components: - - type: Transform - pos: 82.5,44.5 - parent: 2 - uid: 6266 components: - type: Transform @@ -24585,11 +26054,6 @@ entities: - type: Transform pos: 86.5,47.5 parent: 2 - - uid: 6270 - components: - - type: Transform - pos: 86.5,46.5 - parent: 2 - uid: 6271 components: - type: Transform @@ -24640,11 +26104,6 @@ entities: - type: Transform pos: 86.5,43.5 parent: 2 - - uid: 6281 - components: - - type: Transform - pos: 86.5,44.5 - parent: 2 - uid: 6282 components: - type: Transform @@ -24655,66 +26114,6 @@ entities: - type: Transform pos: 88.5,45.5 parent: 2 - - uid: 6285 - components: - - type: Transform - pos: 67.5,43.5 - parent: 2 - - uid: 6286 - components: - - type: Transform - pos: 67.5,44.5 - parent: 2 - - uid: 6287 - components: - - type: Transform - pos: 67.5,45.5 - parent: 2 - - uid: 6288 - components: - - type: Transform - pos: 67.5,46.5 - parent: 2 - - uid: 6289 - components: - - type: Transform - pos: 66.5,46.5 - parent: 2 - - uid: 6290 - components: - - type: Transform - pos: 65.5,46.5 - parent: 2 - - uid: 6291 - components: - - type: Transform - pos: 64.5,46.5 - parent: 2 - - uid: 6292 - components: - - type: Transform - pos: 63.5,46.5 - parent: 2 - - uid: 6293 - components: - - type: Transform - pos: 63.5,47.5 - parent: 2 - - uid: 6294 - components: - - type: Transform - pos: 62.5,48.5 - parent: 2 - - uid: 6295 - components: - - type: Transform - pos: 61.5,48.5 - parent: 2 - - uid: 6296 - components: - - type: Transform - pos: 60.5,48.5 - parent: 2 - uid: 6297 components: - type: Transform @@ -24750,100 +26149,10 @@ entities: - type: Transform pos: 53.5,48.5 parent: 2 - - uid: 6304 - components: - - type: Transform - pos: 52.5,48.5 - parent: 2 - uid: 6305 components: - type: Transform - pos: 51.5,48.5 - parent: 2 - - uid: 6306 - components: - - type: Transform - pos: 50.5,48.5 - parent: 2 - - uid: 6307 - components: - - type: Transform - pos: 49.5,48.5 - parent: 2 - - uid: 6310 - components: - - type: Transform - pos: 49.5,47.5 - parent: 2 - - uid: 6311 - components: - - type: Transform - pos: 48.5,47.5 - parent: 2 - - uid: 6312 - components: - - type: Transform - pos: 47.5,47.5 - parent: 2 - - uid: 6313 - components: - - type: Transform - pos: 46.5,47.5 - parent: 2 - - uid: 6314 - components: - - type: Transform - pos: 46.5,46.5 - parent: 2 - - uid: 6315 - components: - - type: Transform - pos: 45.5,46.5 - parent: 2 - - uid: 6317 - components: - - type: Transform - pos: 47.5,26.5 - parent: 2 - - uid: 6318 - components: - - type: Transform - pos: 44.5,46.5 - parent: 2 - - uid: 6319 - components: - - type: Transform - pos: 44.5,45.5 - parent: 2 - - uid: 6320 - components: - - type: Transform - pos: 44.5,44.5 - parent: 2 - - uid: 6321 - components: - - type: Transform - pos: 44.5,43.5 - parent: 2 - - uid: 6322 - components: - - type: Transform - pos: 44.5,42.5 - parent: 2 - - uid: 6323 - components: - - type: Transform - pos: 44.5,41.5 - parent: 2 - - uid: 6326 - components: - - type: Transform - pos: 45.5,39.5 - parent: 2 - - uid: 6341 - components: - - type: Transform - pos: 46.5,27.5 + pos: 53.5,47.5 parent: 2 - uid: 6343 components: @@ -24865,36 +26174,6 @@ entities: - type: Transform pos: 50.5,27.5 parent: 2 - - uid: 6347 - components: - - type: Transform - pos: 47.5,25.5 - parent: 2 - - uid: 6348 - components: - - type: Transform - pos: 47.5,24.5 - parent: 2 - - uid: 6349 - components: - - type: Transform - pos: 47.5,23.5 - parent: 2 - - uid: 6350 - components: - - type: Transform - pos: 47.5,22.5 - parent: 2 - - uid: 6351 - components: - - type: Transform - pos: 47.5,21.5 - parent: 2 - - uid: 6352 - components: - - type: Transform - pos: 47.5,20.5 - parent: 2 - uid: 6353 components: - type: Transform @@ -25115,16 +26394,6 @@ entities: - type: Transform pos: 65.5,6.5 parent: 2 - - uid: 6399 - components: - - type: Transform - pos: 65.5,7.5 - parent: 2 - - uid: 6400 - components: - - type: Transform - pos: 65.5,8.5 - parent: 2 - uid: 6401 components: - type: Transform @@ -25360,6 +26629,11 @@ entities: - type: Transform pos: 20.5,-39.5 parent: 2 + - uid: 6532 + components: + - type: Transform + pos: 85.5,50.5 + parent: 2 - uid: 6897 components: - type: Transform @@ -25710,6 +26984,11 @@ entities: - type: Transform pos: 16.5,-41.5 parent: 2 + - uid: 8031 + components: + - type: Transform + pos: 62.5,19.5 + parent: 2 - uid: 8107 components: - type: Transform @@ -25725,6 +27004,51 @@ entities: - type: Transform pos: 8.5,16.5 parent: 2 + - uid: 8366 + components: + - type: Transform + pos: 50.5,47.5 + parent: 2 + - uid: 8479 + components: + - type: Transform + pos: 87.5,50.5 + parent: 2 + - uid: 8514 + components: + - type: Transform + pos: 63.5,44.5 + parent: 2 + - uid: 8515 + components: + - type: Transform + pos: 64.5,44.5 + parent: 2 + - uid: 8536 + components: + - type: Transform + pos: 77.5,48.5 + parent: 2 + - uid: 8544 + components: + - type: Transform + pos: 46.5,22.5 + parent: 2 + - uid: 8581 + components: + - type: Transform + pos: 46.5,21.5 + parent: 2 + - uid: 8588 + components: + - type: Transform + pos: 46.5,20.5 + parent: 2 + - uid: 8759 + components: + - type: Transform + pos: 40.5,42.5 + parent: 2 - uid: 8818 components: - type: Transform @@ -25740,6 +27064,11 @@ entities: - type: Transform pos: 120.5,-17.5 parent: 2 + - uid: 9299 + components: + - type: Transform + pos: 77.5,49.5 + parent: 2 - uid: 9370 components: - type: Transform @@ -25875,46 +27204,6 @@ entities: - type: Transform pos: 27.5,27.5 parent: 2 - - uid: 9439 - components: - - type: Transform - pos: 40.5,41.5 - parent: 2 - - uid: 9440 - components: - - type: Transform - pos: 39.5,41.5 - parent: 2 - - uid: 9441 - components: - - type: Transform - pos: 39.5,40.5 - parent: 2 - - uid: 9442 - components: - - type: Transform - pos: 39.5,39.5 - parent: 2 - - uid: 9443 - components: - - type: Transform - pos: 39.5,38.5 - parent: 2 - - uid: 9444 - components: - - type: Transform - pos: 38.5,38.5 - parent: 2 - - uid: 9445 - components: - - type: Transform - pos: 37.5,38.5 - parent: 2 - - uid: 9446 - components: - - type: Transform - pos: 36.5,38.5 - parent: 2 - uid: 9447 components: - type: Transform @@ -25935,36 +27224,6 @@ entities: - type: Transform pos: 34.5,36.5 parent: 2 - - uid: 9451 - components: - - type: Transform - pos: 34.5,35.5 - parent: 2 - - uid: 9452 - components: - - type: Transform - pos: 34.5,34.5 - parent: 2 - - uid: 9453 - components: - - type: Transform - pos: 34.5,33.5 - parent: 2 - - uid: 9458 - components: - - type: Transform - pos: 30.5,32.5 - parent: 2 - - uid: 9459 - components: - - type: Transform - pos: 29.5,32.5 - parent: 2 - - uid: 9460 - components: - - type: Transform - pos: 28.5,32.5 - parent: 2 - uid: 9462 components: - type: Transform @@ -26125,11 +27384,6 @@ entities: - type: Transform pos: 17.5,-7.5 parent: 2 - - uid: 9499 - components: - - type: Transform - pos: 17.5,-11.5 - parent: 2 - uid: 9500 components: - type: Transform @@ -26300,6 +27554,11 @@ entities: - type: Transform pos: 14.5,35.5 parent: 2 + - uid: 9745 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 2 - uid: 9821 components: - type: Transform @@ -26415,11 +27674,136 @@ entities: - type: Transform pos: 27.5,13.5 parent: 2 + - uid: 10317 + components: + - type: Transform + pos: 56.5,27.5 + parent: 2 + - uid: 10318 + components: + - type: Transform + pos: 49.5,47.5 + parent: 2 + - uid: 10343 + components: + - type: Transform + pos: 57.5,27.5 + parent: 2 + - uid: 10410 + components: + - type: Transform + pos: 57.5,28.5 + parent: 2 + - uid: 10411 + components: + - type: Transform + pos: 57.5,29.5 + parent: 2 + - uid: 10412 + components: + - type: Transform + pos: 58.5,29.5 + parent: 2 + - uid: 10422 + components: + - type: Transform + pos: 59.5,29.5 + parent: 2 + - uid: 10423 + components: + - type: Transform + pos: 60.5,29.5 + parent: 2 + - uid: 10424 + components: + - type: Transform + pos: 60.5,30.5 + parent: 2 + - uid: 10427 + components: + - type: Transform + pos: 60.5,31.5 + parent: 2 + - uid: 10428 + components: + - type: Transform + pos: 60.5,32.5 + parent: 2 + - uid: 10429 + components: + - type: Transform + pos: 60.5,33.5 + parent: 2 + - uid: 10430 + components: + - type: Transform + pos: 60.5,34.5 + parent: 2 + - uid: 10437 + components: + - type: Transform + pos: 64.5,34.5 + parent: 2 + - uid: 10439 + components: + - type: Transform + pos: 61.5,34.5 + parent: 2 + - uid: 10451 + components: + - type: Transform + pos: 40.5,44.5 + parent: 2 + - uid: 10462 + components: + - type: Transform + pos: 66.5,7.5 + parent: 2 + - uid: 10664 + components: + - type: Transform + pos: 66.5,6.5 + parent: 2 + - uid: 10772 + components: + - type: Transform + pos: 65.5,34.5 + parent: 2 + - uid: 10970 + components: + - type: Transform + pos: 62.5,34.5 + parent: 2 - uid: 11811 components: - type: Transform pos: 10.5,16.5 parent: 2 + - uid: 12044 + components: + - type: Transform + pos: 49.5,46.5 + parent: 2 + - uid: 12110 + components: + - type: Transform + pos: 61.5,35.5 + parent: 2 + - uid: 12111 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 2 + - uid: 12112 + components: + - type: Transform + pos: 10.5,-21.5 + parent: 2 + - uid: 12184 + components: + - type: Transform + pos: 41.5,46.5 + parent: 2 - uid: 12596 components: - type: Transform @@ -26670,16 +28054,6 @@ entities: - type: Transform pos: 112.5,-15.5 parent: 2 - - uid: 12759 - components: - - type: Transform - pos: 33.5,33.5 - parent: 2 - - uid: 12760 - components: - - type: Transform - pos: 32.5,33.5 - parent: 2 - uid: 12780 components: - type: Transform @@ -26735,6 +28109,11 @@ entities: - type: Transform pos: 13.5,-22.5 parent: 2 + - uid: 12875 + components: + - type: Transform + pos: 66.5,19.5 + parent: 2 - uid: 13046 components: - type: Transform @@ -27075,10 +28454,15 @@ entities: - type: Transform pos: 19.5,-38.5 parent: 2 - - uid: 13485 + - uid: 13580 components: - type: Transform - pos: 15.5,-14.5 + pos: 39.5,42.5 + parent: 2 + - uid: 13640 + components: + - type: Transform + pos: 46.5,26.5 parent: 2 - uid: 13689 components: @@ -27090,6 +28474,11 @@ entities: - type: Transform pos: 16.5,-38.5 parent: 2 + - uid: 14247 + components: + - type: Transform + pos: 40.5,45.5 + parent: 2 - uid: 14396 components: - type: Transform @@ -27105,30 +28494,20 @@ entities: - type: Transform pos: 80.5,34.5 parent: 2 - - uid: 14582 - components: - - type: Transform - pos: 45.5,41.5 - parent: 2 - - uid: 14583 - components: - - type: Transform - pos: 45.5,40.5 - parent: 2 - uid: 14727 components: - type: Transform pos: 41.5,-19.5 parent: 2 - - uid: 14929 + - uid: 14849 components: - type: Transform - pos: 37.5,33.5 + pos: 64.5,19.5 parent: 2 - - uid: 14930 + - uid: 14887 components: - type: Transform - pos: 37.5,34.5 + pos: 65.5,19.5 parent: 2 - uid: 15021 components: @@ -27160,6 +28539,86 @@ entities: - type: Transform pos: 52.5,-19.5 parent: 2 + - uid: 15531 + components: + - type: Transform + pos: 63.5,19.5 + parent: 2 + - uid: 15553 + components: + - type: Transform + pos: 62.5,20.5 + parent: 2 + - uid: 15659 + components: + - type: Transform + pos: 38.5,38.5 + parent: 2 + - uid: 15660 + components: + - type: Transform + pos: 39.5,38.5 + parent: 2 + - uid: 15661 + components: + - type: Transform + pos: 37.5,38.5 + parent: 2 + - uid: 15662 + components: + - type: Transform + pos: 36.5,38.5 + parent: 2 + - uid: 15687 + components: + - type: Transform + pos: 62.5,46.5 + parent: 2 + - uid: 15707 + components: + - type: Transform + pos: 62.5,44.5 + parent: 2 + - uid: 15747 + components: + - type: Transform + pos: -5.5,-31.5 + parent: 2 + - uid: 15748 + components: + - type: Transform + pos: -5.5,-30.5 + parent: 2 + - uid: 15749 + components: + - type: Transform + pos: -3.5,-40.5 + parent: 2 + - uid: 15750 + components: + - type: Transform + pos: -5.5,-40.5 + parent: 2 + - uid: 15751 + components: + - type: Transform + pos: -11.5,-40.5 + parent: 2 + - uid: 15752 + components: + - type: Transform + pos: -13.5,-40.5 + parent: 2 + - uid: 15773 + components: + - type: Transform + pos: -11.5,-30.5 + parent: 2 + - uid: 15774 + components: + - type: Transform + pos: -13.5,-30.5 + parent: 2 - proto: CableHVStack entities: - uid: 5629 @@ -27167,17 +28626,6 @@ entities: - type: Transform pos: 18.055033,-23.484873 parent: 2 - - uid: 5638 - components: - - type: Transform - rot: -0.0038357104640454054 rad - pos: 70.31901,45.73474 - parent: 2 - - uid: 5651 - components: - - type: Transform - pos: 70.69434,45.41789 - parent: 2 - uid: 6308 components: - type: Transform @@ -27190,11 +28638,6 @@ entities: - type: Transform pos: 15.5,21.5 parent: 2 - - uid: 27 - components: - - type: Transform - pos: 28.5,29.5 - parent: 2 - uid: 44 components: - type: Transform @@ -27275,15 +28718,35 @@ entities: - type: Transform pos: 69.5,-12.5 parent: 2 + - uid: 380 + components: + - type: Transform + pos: 62.5,36.5 + parent: 2 - uid: 384 components: - type: Transform pos: 12.5,36.5 parent: 2 + - uid: 414 + components: + - type: Transform + pos: 18.5,-14.5 + parent: 2 + - uid: 535 + components: + - type: Transform + pos: 16.5,-17.5 + parent: 2 - uid: 545 components: - type: Transform - pos: 44.5,23.5 + pos: 65.5,44.5 + parent: 2 + - uid: 591 + components: + - type: Transform + pos: 64.5,44.5 parent: 2 - uid: 609 components: @@ -27295,11 +28758,46 @@ entities: - type: Transform pos: 12.5,21.5 parent: 2 + - uid: 630 + components: + - type: Transform + pos: 18.5,-16.5 + parent: 2 + - uid: 633 + components: + - type: Transform + pos: 15.5,-13.5 + parent: 2 + - uid: 648 + components: + - type: Transform + pos: 18.5,-15.5 + parent: 2 + - uid: 649 + components: + - type: Transform + pos: 14.5,-17.5 + parent: 2 + - uid: 650 + components: + - type: Transform + pos: 15.5,-17.5 + parent: 2 - uid: 769 components: - type: Transform pos: 4.5,-30.5 parent: 2 + - uid: 782 + components: + - type: Transform + pos: 39.5,-14.5 + parent: 2 + - uid: 896 + components: + - type: Transform + pos: 29.5,36.5 + parent: 2 - uid: 1028 components: - type: Transform @@ -27325,20 +28823,15 @@ entities: - type: Transform pos: 4.5,-31.5 parent: 2 - - uid: 1041 - components: - - type: Transform - pos: 31.5,36.5 - parent: 2 - uid: 1180 components: - type: Transform pos: -4.5,-1.5 parent: 2 - - uid: 1281 + - uid: 1255 components: - type: Transform - pos: 42.5,32.5 + pos: 28.5,36.5 parent: 2 - uid: 1307 components: @@ -27355,20 +28848,35 @@ entities: - type: Transform pos: 11.5,21.5 parent: 2 + - uid: 1465 + components: + - type: Transform + pos: 47.5,37.5 + parent: 2 + - uid: 1481 + components: + - type: Transform + pos: 62.5,14.5 + parent: 2 - uid: 1555 components: - type: Transform pos: 41.5,-0.5 parent: 2 - - uid: 2065 + - uid: 1560 components: - type: Transform - pos: 41.5,31.5 + pos: 18.5,-17.5 parent: 2 - - uid: 2132 + - uid: 1838 components: - type: Transform - pos: 39.5,29.5 + pos: 51.5,27.5 + parent: 2 + - uid: 2131 + components: + - type: Transform + pos: 70.5,45.5 parent: 2 - uid: 2150 components: @@ -27385,91 +28893,81 @@ entities: - type: Transform pos: 8.5,21.5 parent: 2 - - uid: 2279 + - uid: 2190 components: - type: Transform - pos: 40.5,30.5 + pos: 54.5,24.5 parent: 2 - - uid: 2292 + - uid: 2341 components: - type: Transform - pos: 45.5,31.5 + pos: 5.5,9.5 parent: 2 - - uid: 2293 + - uid: 2347 components: - type: Transform - pos: 45.5,32.5 + pos: 57.5,48.5 parent: 2 - - uid: 2294 + - uid: 2350 components: - type: Transform - pos: 45.5,33.5 + pos: 70.5,47.5 parent: 2 - - uid: 2299 + - uid: 2351 components: - type: Transform - pos: 33.5,33.5 + pos: 17.5,-17.5 parent: 2 - - uid: 2307 + - uid: 2410 components: - type: Transform - pos: 35.5,31.5 + pos: 18.5,2.5 parent: 2 - - uid: 2308 + - uid: 2429 components: - type: Transform - pos: 34.5,31.5 + pos: 94.5,33.5 parent: 2 - - uid: 2309 + - uid: 2466 components: - type: Transform - pos: 42.5,31.5 - parent: 2 - - uid: 2310 - components: - - type: Transform - pos: 37.5,31.5 - parent: 2 - - uid: 2312 - components: - - type: Transform - pos: 36.5,31.5 - parent: 2 - - uid: 2462 - components: - - type: Transform - pos: 38.5,31.5 - parent: 2 - - uid: 2463 - components: - - type: Transform - pos: 44.5,31.5 - parent: 2 - - uid: 2464 - components: - - type: Transform - pos: 39.5,31.5 - parent: 2 - - uid: 2465 - components: - - type: Transform - pos: 40.5,31.5 - parent: 2 - - uid: 2467 - components: - - type: Transform - pos: 43.5,31.5 + pos: 44.5,37.5 parent: 2 - uid: 2494 components: - type: Transform pos: 70.5,-12.5 parent: 2 + - uid: 2613 + components: + - type: Transform + pos: 47.5,40.5 + parent: 2 + - uid: 2685 + components: + - type: Transform + pos: 35.5,28.5 + parent: 2 - uid: 2688 components: - type: Transform pos: 22.5,6.5 parent: 2 + - uid: 2691 + components: + - type: Transform + pos: 36.5,28.5 + parent: 2 + - uid: 2713 + components: + - type: Transform + pos: 36.5,29.5 + parent: 2 + - uid: 2714 + components: + - type: Transform + pos: 35.5,27.5 + parent: 2 - uid: 2954 components: - type: Transform @@ -27485,45 +28983,130 @@ entities: - type: Transform pos: 22.5,5.5 parent: 2 + - uid: 3041 + components: + - type: Transform + pos: 55.5,11.5 + parent: 2 + - uid: 3045 + components: + - type: Transform + pos: 55.5,10.5 + parent: 2 + - uid: 3046 + components: + - type: Transform + pos: 54.5,10.5 + parent: 2 + - uid: 3077 + components: + - type: Transform + pos: 51.5,25.5 + parent: 2 + - uid: 3079 + components: + - type: Transform + pos: 46.5,21.5 + parent: 2 + - uid: 3105 + components: + - type: Transform + pos: 46.5,19.5 + parent: 2 + - uid: 3112 + components: + - type: Transform + pos: 69.5,42.5 + parent: 2 - uid: 3131 components: - type: Transform pos: -25.5,-18.5 parent: 2 - - uid: 3168 + - uid: 3144 components: - type: Transform - pos: 37.5,33.5 + pos: 47.5,41.5 parent: 2 - - uid: 3218 + - uid: 3192 components: - type: Transform - pos: 49.5,35.5 + pos: 5.5,5.5 parent: 2 - - uid: 3219 + - uid: 3199 components: - type: Transform - pos: 48.5,35.5 + pos: 33.5,31.5 parent: 2 - - uid: 3220 + - uid: 3225 components: - type: Transform - pos: 51.5,36.5 + pos: 66.5,35.5 + parent: 2 + - uid: 3226 + components: + - type: Transform + pos: 66.5,41.5 parent: 2 - uid: 3232 components: - type: Transform - pos: 45.5,34.5 + pos: 69.5,44.5 parent: 2 - - uid: 3239 + - uid: 3234 components: - type: Transform - pos: 41.5,31.5 + pos: 94.5,34.5 parent: 2 - - uid: 3276 + - uid: 3241 components: - type: Transform - pos: 34.5,33.5 + pos: 46.5,46.5 + parent: 2 + - uid: 3245 + components: + - type: Transform + pos: 59.5,48.5 + parent: 2 + - uid: 3252 + components: + - type: Transform + pos: 56.5,48.5 + parent: 2 + - uid: 3257 + components: + - type: Transform + pos: 58.5,48.5 + parent: 2 + - uid: 3277 + components: + - type: Transform + pos: 42.5,45.5 + parent: 2 + - uid: 3280 + components: + - type: Transform + pos: 32.5,30.5 + parent: 2 + - uid: 3317 + components: + - type: Transform + pos: 47.5,35.5 + parent: 2 + - uid: 3336 + components: + - type: Transform + pos: 48.5,46.5 + parent: 2 + - uid: 3346 + components: + - type: Transform + pos: 47.5,46.5 + parent: 2 + - uid: 3372 + components: + - type: Transform + pos: 61.5,37.5 parent: 2 - uid: 3403 components: @@ -27540,16 +29123,46 @@ entities: - type: Transform pos: 66.5,37.5 parent: 2 - - uid: 3486 + - uid: 3478 components: - type: Transform - pos: 51.5,21.5 + pos: 42.5,34.5 parent: 2 - uid: 3487 components: - type: Transform pos: 50.5,21.5 parent: 2 + - uid: 3492 + components: + - type: Transform + pos: 34.5,19.5 + parent: 2 + - uid: 3496 + components: + - type: Transform + pos: 34.5,20.5 + parent: 2 + - uid: 3504 + components: + - type: Transform + pos: 37.5,29.5 + parent: 2 + - uid: 3509 + components: + - type: Transform + pos: 40.5,29.5 + parent: 2 + - uid: 3615 + components: + - type: Transform + pos: 39.5,29.5 + parent: 2 + - uid: 3673 + components: + - type: Transform + pos: 53.5,3.5 + parent: 2 - uid: 3682 components: - type: Transform @@ -27563,12 +29176,17 @@ entities: - uid: 4020 components: - type: Transform - pos: 13.5,19.5 + pos: 52.5,3.5 parent: 2 - - uid: 4026 + - uid: 4114 components: - type: Transform - pos: 13.5,20.5 + pos: 47.5,3.5 + parent: 2 + - uid: 4162 + components: + - type: Transform + pos: 63.5,12.5 parent: 2 - uid: 4182 components: @@ -27580,20 +29198,20 @@ entities: - type: Transform pos: 15.5,-39.5 parent: 2 - - uid: 4349 + - uid: 4348 components: - type: Transform - pos: 51.5,35.5 - parent: 2 - - uid: 4360 - components: - - type: Transform - pos: 47.5,35.5 + pos: 54.5,48.5 parent: 2 - uid: 4363 components: - type: Transform - pos: 50.5,35.5 + pos: 46.5,20.5 + parent: 2 + - uid: 4403 + components: + - type: Transform + pos: 64.5,14.5 parent: 2 - uid: 4605 components: @@ -27850,6 +29468,11 @@ entities: - type: Transform pos: 38.5,-38.5 parent: 2 + - uid: 4784 + components: + - type: Transform + pos: 65.5,14.5 + parent: 2 - uid: 4785 components: - type: Transform @@ -27905,10 +29528,15 @@ entities: - type: Transform pos: 32.5,-26.5 parent: 2 - - uid: 5116 + - uid: 5062 components: - type: Transform - pos: 35.5,33.5 + pos: 66.5,14.5 + parent: 2 + - uid: 5066 + components: + - type: Transform + pos: 51.5,24.5 parent: 2 - uid: 5185 components: @@ -27920,10 +29548,60 @@ entities: - type: Transform pos: 62.5,-6.5 parent: 2 - - uid: 5511 + - uid: 5239 components: - type: Transform - pos: 66.5,36.5 + pos: 59.5,18.5 + parent: 2 + - uid: 5247 + components: + - type: Transform + pos: 59.5,17.5 + parent: 2 + - uid: 5249 + components: + - type: Transform + pos: 59.5,16.5 + parent: 2 + - uid: 5253 + components: + - type: Transform + pos: 59.5,15.5 + parent: 2 + - uid: 5313 + components: + - type: Transform + pos: 34.5,18.5 + parent: 2 + - uid: 5337 + components: + - type: Transform + pos: 48.5,3.5 + parent: 2 + - uid: 5362 + components: + - type: Transform + pos: 38.5,27.5 + parent: 2 + - uid: 5370 + components: + - type: Transform + pos: 64.5,24.5 + parent: 2 + - uid: 5464 + components: + - type: Transform + pos: 47.5,43.5 + parent: 2 + - uid: 5466 + components: + - type: Transform + pos: 47.5,42.5 + parent: 2 + - uid: 5509 + components: + - type: Transform + pos: 66.5,7.5 parent: 2 - uid: 5578 components: @@ -27940,6 +29618,21 @@ entities: - type: Transform pos: 40.5,-38.5 parent: 2 + - uid: 5687 + components: + - type: Transform + pos: 59.5,47.5 + parent: 2 + - uid: 5751 + components: + - type: Transform + pos: 60.5,47.5 + parent: 2 + - uid: 6007 + components: + - type: Transform + pos: 50.5,47.5 + parent: 2 - uid: 6039 components: - type: Transform @@ -27955,11 +29648,36 @@ entities: - type: Transform pos: 25.5,-36.5 parent: 2 + - uid: 6304 + components: + - type: Transform + pos: 53.5,47.5 + parent: 2 + - uid: 6307 + components: + - type: Transform + pos: 51.5,47.5 + parent: 2 + - uid: 6310 + components: + - type: Transform + pos: 41.5,38.5 + parent: 2 - uid: 6358 components: - type: Transform pos: 36.5,-23.5 parent: 2 + - uid: 6379 + components: + - type: Transform + pos: 62.5,47.5 + parent: 2 + - uid: 6424 + components: + - type: Transform + pos: 61.5,47.5 + parent: 2 - uid: 6455 components: - type: Transform @@ -27983,7 +29701,12 @@ entities: - uid: 6459 components: - type: Transform - pos: 19.5,-13.5 + pos: 13.5,-17.5 + parent: 2 + - uid: 6537 + components: + - type: Transform + pos: 59.5,10.5 parent: 2 - uid: 6572 components: @@ -28020,6 +29743,11 @@ entities: - type: Transform pos: 13.5,-45.5 parent: 2 + - uid: 6774 + components: + - type: Transform + pos: 61.5,10.5 + parent: 2 - uid: 6780 components: - type: Transform @@ -28065,6 +29793,11 @@ entities: - type: Transform pos: 16.5,-39.5 parent: 2 + - uid: 6954 + components: + - type: Transform + pos: 21.5,11.5 + parent: 2 - uid: 6955 components: - type: Transform @@ -28073,7 +29806,7 @@ entities: - uid: 6956 components: - type: Transform - pos: 14.5,8.5 + pos: 15.5,8.5 parent: 2 - uid: 6957 components: @@ -28110,46 +29843,6 @@ entities: - type: Transform pos: 11.5,5.5 parent: 2 - - uid: 6965 - components: - - type: Transform - pos: 10.5,5.5 - parent: 2 - - uid: 6966 - components: - - type: Transform - pos: 9.5,5.5 - parent: 2 - - uid: 6967 - components: - - type: Transform - pos: 9.5,4.5 - parent: 2 - - uid: 6968 - components: - - type: Transform - pos: 9.5,3.5 - parent: 2 - - uid: 6969 - components: - - type: Transform - pos: 10.5,3.5 - parent: 2 - - uid: 6970 - components: - - type: Transform - pos: 11.5,3.5 - parent: 2 - - uid: 6971 - components: - - type: Transform - pos: 11.5,2.5 - parent: 2 - - uid: 6972 - components: - - type: Transform - pos: 8.5,3.5 - parent: 2 - uid: 6973 components: - type: Transform @@ -28180,95 +29873,35 @@ entities: - type: Transform pos: 9.5,10.5 parent: 2 - - uid: 6979 - components: - - type: Transform - pos: 10.5,10.5 - parent: 2 - uid: 6980 components: - type: Transform - pos: 10.5,11.5 - parent: 2 - - uid: 6981 - components: - - type: Transform - pos: 11.5,10.5 - parent: 2 - - uid: 6982 - components: - - type: Transform - pos: 12.5,10.5 - parent: 2 - - uid: 6983 - components: - - type: Transform - pos: 13.5,10.5 - parent: 2 - - uid: 6984 - components: - - type: Transform - pos: 14.5,10.5 + pos: 31.5,24.5 parent: 2 - uid: 6985 components: - type: Transform - pos: 15.5,10.5 - parent: 2 - - uid: 6986 - components: - - type: Transform - pos: 16.5,10.5 - parent: 2 - - uid: 6987 - components: - - type: Transform - pos: 17.5,10.5 + pos: 66.5,36.5 parent: 2 - uid: 6988 components: - type: Transform - pos: 18.5,10.5 - parent: 2 - - uid: 6989 - components: - - type: Transform - pos: 19.5,10.5 - parent: 2 - - uid: 6990 - components: - - type: Transform - pos: 19.5,9.5 - parent: 2 - - uid: 6991 - components: - - type: Transform - pos: 19.5,8.5 - parent: 2 - - uid: 6992 - components: - - type: Transform - pos: 19.5,7.5 - parent: 2 - - uid: 6993 - components: - - type: Transform - pos: 19.5,6.5 + pos: 50.5,3.5 parent: 2 - uid: 6994 components: - type: Transform - pos: 19.5,5.5 + pos: 46.5,3.5 parent: 2 - uid: 6995 components: - type: Transform - pos: 20.5,5.5 + pos: 49.5,3.5 parent: 2 - uid: 6996 components: - type: Transform - pos: 21.5,5.5 + pos: 14.5,19.5 parent: 2 - uid: 6997 components: @@ -28328,7 +29961,7 @@ entities: - uid: 7018 components: - type: Transform - pos: 22.5,11.5 + pos: 14.5,20.5 parent: 2 - uid: 7019 components: @@ -28358,7 +29991,7 @@ entities: - uid: 7024 components: - type: Transform - pos: 28.5,9.5 + pos: 9.5,17.5 parent: 2 - uid: 7025 components: @@ -28385,46 +30018,101 @@ entities: - type: Transform pos: 26.5,9.5 parent: 2 - - uid: 7030 - components: - - type: Transform - pos: 33.5,7.5 - parent: 2 - uid: 7031 components: - type: Transform - pos: 32.5,7.5 + pos: 29.5,20.5 parent: 2 - uid: 7032 components: - type: Transform - pos: 31.5,7.5 + pos: 32.5,20.5 parent: 2 - uid: 7033 components: - type: Transform - pos: 30.5,7.5 - parent: 2 - - uid: 7036 - components: - - type: Transform - pos: 29.5,7.5 + pos: 14.5,18.5 parent: 2 - uid: 7037 components: - type: Transform - pos: 29.5,8.5 + pos: 33.5,20.5 parent: 2 - uid: 7038 components: - type: Transform - pos: 29.5,9.5 + pos: 51.5,3.5 parent: 2 - uid: 7039 components: - type: Transform pos: 29.5,10.5 parent: 2 + - uid: 7047 + components: + - type: Transform + pos: 18.5,1.5 + parent: 2 + - uid: 7051 + components: + - type: Transform + pos: 10.5,5.5 + parent: 2 + - uid: 7052 + components: + - type: Transform + pos: 9.5,5.5 + parent: 2 + - uid: 7053 + components: + - type: Transform + pos: 6.5,3.5 + parent: 2 + - uid: 7054 + components: + - type: Transform + pos: 5.5,4.5 + parent: 2 + - uid: 7066 + components: + - type: Transform + pos: 5.5,6.5 + parent: 2 + - uid: 7073 + components: + - type: Transform + pos: 5.5,7.5 + parent: 2 + - uid: 7087 + components: + - type: Transform + pos: 5.5,8.5 + parent: 2 + - uid: 7088 + components: + - type: Transform + pos: 5.5,3.5 + parent: 2 + - uid: 7116 + components: + - type: Transform + pos: 10.5,10.5 + parent: 2 + - uid: 7130 + components: + - type: Transform + pos: 11.5,10.5 + parent: 2 + - uid: 7132 + components: + - type: Transform + pos: 12.5,10.5 + parent: 2 + - uid: 7135 + components: + - type: Transform + pos: 13.5,10.5 + parent: 2 - uid: 7221 components: - type: Transform @@ -28508,12 +30196,12 @@ entities: - uid: 7255 components: - type: Transform - pos: 13.5,16.5 + pos: 14.5,10.5 parent: 2 - uid: 7256 components: - type: Transform - pos: 12.5,16.5 + pos: 15.5,10.5 parent: 2 - uid: 7257 components: @@ -28550,6 +30238,21 @@ entities: - type: Transform pos: 13.5,21.5 parent: 2 + - uid: 7452 + components: + - type: Transform + pos: 16.5,10.5 + parent: 2 + - uid: 7453 + components: + - type: Transform + pos: 17.5,10.5 + parent: 2 + - uid: 7454 + components: + - type: Transform + pos: 18.5,10.5 + parent: 2 - uid: 7475 components: - type: Transform @@ -28765,46 +30468,31 @@ entities: - type: Transform pos: 18.5,19.5 parent: 2 - - uid: 7849 + - uid: 7793 components: - type: Transform - pos: 32.5,36.5 + pos: 62.5,11.5 parent: 2 - uid: 7891 components: - type: Transform pos: 15.5,-38.5 parent: 2 - - uid: 7937 - components: - - type: Transform - pos: 40.5,20.5 - parent: 2 - - uid: 7939 - components: - - type: Transform - pos: 41.5,20.5 - parent: 2 - - uid: 7947 - components: - - type: Transform - pos: 40.5,29.5 - parent: 2 - - uid: 7953 - components: - - type: Transform - pos: 30.5,29.5 - parent: 2 - - uid: 7956 - components: - - type: Transform - pos: 29.5,29.5 - parent: 2 - uid: 8047 components: - type: Transform pos: 14.5,37.5 parent: 2 + - uid: 8049 + components: + - type: Transform + pos: 19.5,10.5 + parent: 2 + - uid: 8050 + components: + - type: Transform + pos: 19.5,11.5 + parent: 2 - uid: 8060 components: - type: Transform @@ -28815,11 +30503,6 @@ entities: - type: Transform pos: 8.5,16.5 parent: 2 - - uid: 8287 - components: - - type: Transform - pos: 27.5,33.5 - parent: 2 - uid: 8325 components: - type: Transform @@ -28830,290 +30513,150 @@ entities: - type: Transform pos: 52.5,-10.5 parent: 2 - - uid: 8352 - components: - - type: Transform - pos: 43.5,23.5 - parent: 2 - - uid: 8353 - components: - - type: Transform - pos: 42.5,23.5 - parent: 2 - - uid: 8354 - components: - - type: Transform - pos: 41.5,23.5 - parent: 2 - - uid: 8355 - components: - - type: Transform - pos: 40.5,23.5 - parent: 2 - - uid: 8356 - components: - - type: Transform - pos: 39.5,23.5 - parent: 2 - - uid: 8359 - components: - - type: Transform - pos: 39.5,22.5 - parent: 2 - - uid: 8360 - components: - - type: Transform - pos: 38.5,22.5 - parent: 2 - - uid: 8362 - components: - - type: Transform - pos: 37.5,22.5 - parent: 2 - - uid: 8363 - components: - - type: Transform - pos: 36.5,22.5 - parent: 2 - - uid: 8364 - components: - - type: Transform - pos: 35.5,22.5 - parent: 2 - - uid: 8365 - components: - - type: Transform - pos: 34.5,22.5 - parent: 2 - - uid: 8366 - components: - - type: Transform - pos: 33.5,22.5 - parent: 2 - uid: 8367 components: - type: Transform - pos: 33.5,23.5 + pos: 52.5,47.5 parent: 2 - - uid: 8368 + - uid: 8389 components: - type: Transform - pos: 33.5,24.5 + pos: 61.5,36.5 parent: 2 - - uid: 8369 + - uid: 8405 components: - type: Transform - pos: 33.5,25.5 + pos: 63.5,44.5 parent: 2 - - uid: 8370 + - uid: 8407 components: - type: Transform - pos: 33.5,26.5 + pos: 56.5,10.5 parent: 2 - - uid: 8371 + - uid: 8418 components: - type: Transform - pos: 33.5,27.5 + pos: 56.5,22.5 parent: 2 - - uid: 8372 + - uid: 8423 components: - type: Transform - pos: 33.5,28.5 + pos: 19.5,12.5 parent: 2 - - uid: 8373 - components: - - type: Transform - pos: 33.5,29.5 - parent: 2 - - uid: 8374 - components: - - type: Transform - pos: 33.5,30.5 - parent: 2 - - uid: 8392 - components: - - type: Transform - pos: 32.5,29.5 - parent: 2 - - uid: 8456 - components: - - type: Transform - pos: 33.5,21.5 - parent: 2 - - uid: 8457 - components: - - type: Transform - pos: 32.5,21.5 - parent: 2 - - uid: 8458 - components: - - type: Transform - pos: 31.5,21.5 - parent: 2 - - uid: 8459 - components: - - type: Transform - pos: 30.5,21.5 - parent: 2 - - uid: 8460 - components: - - type: Transform - pos: 29.5,21.5 - parent: 2 - - uid: 8461 - components: - - type: Transform - pos: 28.5,21.5 - parent: 2 - - uid: 8462 - components: - - type: Transform - pos: 28.5,20.5 - parent: 2 - - uid: 8463 - components: - - type: Transform - pos: 33.5,20.5 - parent: 2 - - uid: 8464 - components: - - type: Transform - pos: 33.5,19.5 - parent: 2 - - uid: 8465 - components: - - type: Transform - pos: 33.5,18.5 - parent: 2 - - uid: 8466 - components: - - type: Transform - pos: 32.5,18.5 - parent: 2 - - uid: 8467 - components: - - type: Transform - pos: 31.5,18.5 - parent: 2 - - uid: 8468 - components: - - type: Transform - pos: 30.5,18.5 - parent: 2 - - uid: 8469 - components: - - type: Transform - pos: 29.5,18.5 - parent: 2 - - uid: 8470 - components: - - type: Transform - pos: 28.5,18.5 - parent: 2 - - uid: 8471 - components: - - type: Transform - pos: 28.5,17.5 - parent: 2 - - uid: 8473 - components: - - type: Transform - pos: 35.5,28.5 - parent: 2 - - uid: 8474 - components: - - type: Transform - pos: 35.5,29.5 - parent: 2 - - uid: 8475 - components: - - type: Transform - pos: 34.5,28.5 - parent: 2 - - uid: 8483 - components: - - type: Transform - pos: 45.5,35.5 - parent: 2 - - uid: 8531 - components: - - type: Transform - pos: 39.5,26.5 - parent: 2 - - uid: 8536 - components: - - type: Transform - pos: 41.5,21.5 - parent: 2 - - uid: 8539 - components: - - type: Transform - pos: 38.5,25.5 - parent: 2 - - uid: 8540 - components: - - type: Transform - pos: 39.5,25.5 - parent: 2 - - uid: 8541 + - uid: 8428 components: - type: Transform pos: 40.5,25.5 parent: 2 - - uid: 8542 + - uid: 8432 components: - type: Transform - pos: 41.5,25.5 + pos: 56.5,21.5 + parent: 2 + - uid: 8443 + components: + - type: Transform + pos: 56.5,20.5 + parent: 2 + - uid: 8465 + components: + - type: Transform + pos: 19.5,13.5 + parent: 2 + - uid: 8512 + components: + - type: Transform + pos: 42.5,46.5 + parent: 2 + - uid: 8522 + components: + - type: Transform + pos: 64.5,16.5 + parent: 2 + - uid: 8535 + components: + - type: Transform + pos: 63.5,19.5 + parent: 2 + - uid: 8537 + components: + - type: Transform + pos: 62.5,19.5 + parent: 2 + - uid: 8539 + components: + - type: Transform + pos: 62.5,20.5 parent: 2 - uid: 8543 components: - type: Transform - pos: 37.5,23.5 - parent: 2 - - uid: 8544 - components: - - type: Transform - pos: 37.5,24.5 - parent: 2 - - uid: 8545 - components: - - type: Transform - pos: 37.5,21.5 - parent: 2 - - uid: 8546 - components: - - type: Transform - pos: 38.5,21.5 + pos: 50.5,27.5 parent: 2 - uid: 8547 components: - type: Transform - pos: 38.5,20.5 + pos: 49.5,29.5 parent: 2 - - uid: 8548 + - uid: 8572 components: - type: Transform - pos: 31.5,17.5 - parent: 2 - - uid: 8562 - components: - - type: Transform - pos: 34.5,16.5 - parent: 2 - - uid: 8570 - components: - - type: Transform - pos: 46.5,35.5 + pos: 33.5,29.5 parent: 2 - uid: 8585 components: - type: Transform pos: 36.5,-25.5 parent: 2 - - uid: 8698 + - uid: 8595 components: - type: Transform - pos: 47.5,28.5 + pos: 70.5,46.5 + parent: 2 + - uid: 8624 + components: + - type: Transform + pos: 46.5,39.5 + parent: 2 + - uid: 8677 + components: + - type: Transform + pos: 38.5,25.5 + parent: 2 + - uid: 8682 + components: + - type: Transform + pos: 47.5,33.5 + parent: 2 + - uid: 8688 + components: + - type: Transform + pos: 47.5,32.5 + parent: 2 + - uid: 8715 + components: + - type: Transform + pos: 53.5,48.5 + parent: 2 + - uid: 8718 + components: + - type: Transform + pos: 66.5,43.5 + parent: 2 + - uid: 8766 + components: + - type: Transform + pos: 47.5,34.5 + parent: 2 + - uid: 8934 + components: + - type: Transform + pos: 45.5,46.5 + parent: 2 + - uid: 8985 + components: + - type: Transform + pos: 49.5,27.5 parent: 2 - uid: 9007 components: @@ -29150,16 +30693,6 @@ entities: - type: Transform pos: 20.5,36.5 parent: 2 - - uid: 9014 - components: - - type: Transform - pos: 20.5,35.5 - parent: 2 - - uid: 9015 - components: - - type: Transform - pos: 20.5,34.5 - parent: 2 - uid: 9021 components: - type: Transform @@ -29225,31 +30758,6 @@ entities: - type: Transform pos: 27.5,36.5 parent: 2 - - uid: 9034 - components: - - type: Transform - pos: 28.5,36.5 - parent: 2 - - uid: 9035 - components: - - type: Transform - pos: 28.5,33.5 - parent: 2 - - uid: 9037 - components: - - type: Transform - pos: 28.5,33.5 - parent: 2 - - uid: 9038 - components: - - type: Transform - pos: 29.5,36.5 - parent: 2 - - uid: 9039 - components: - - type: Transform - pos: 30.5,36.5 - parent: 2 - uid: 9042 components: - type: Transform @@ -29520,105 +31028,50 @@ entities: - type: Transform pos: 36.5,46.5 parent: 2 - - uid: 9238 + - uid: 9179 components: - type: Transform - pos: 53.5,35.5 + pos: 55.5,48.5 parent: 2 - - uid: 9239 + - uid: 9245 components: - type: Transform - pos: 56.5,30.5 + pos: 66.5,44.5 + parent: 2 + - uid: 9249 + components: + - type: Transform + pos: 61.5,35.5 + parent: 2 + - uid: 9250 + components: + - type: Transform + pos: 64.5,19.5 parent: 2 - uid: 9253 components: - type: Transform pos: 70.5,44.5 parent: 2 - - uid: 9254 - components: - - type: Transform - pos: 69.5,44.5 - parent: 2 - - uid: 9255 - components: - - type: Transform - pos: 69.5,45.5 - parent: 2 - - uid: 9256 - components: - - type: Transform - pos: 69.5,46.5 - parent: 2 - - uid: 9257 - components: - - type: Transform - pos: 69.5,47.5 - parent: 2 - - uid: 9258 - components: - - type: Transform - pos: 69.5,43.5 - parent: 2 - - uid: 9259 - components: - - type: Transform - pos: 69.5,42.5 - parent: 2 - - uid: 9260 - components: - - type: Transform - pos: 68.5,42.5 - parent: 2 - - uid: 9261 - components: - - type: Transform - pos: 68.5,41.5 - parent: 2 - uid: 9262 components: - type: Transform - pos: 67.5,42.5 + pos: 49.5,30.5 parent: 2 - - uid: 9263 + - uid: 9319 components: - type: Transform - pos: 67.5,43.5 + pos: 20.5,13.5 parent: 2 - - uid: 9264 + - uid: 9338 components: - type: Transform - pos: 67.5,44.5 + pos: 21.5,13.5 parent: 2 - - uid: 9265 + - uid: 9341 components: - type: Transform - pos: 66.5,44.5 - parent: 2 - - uid: 9266 - components: - - type: Transform - pos: 66.5,45.5 - parent: 2 - - uid: 9296 - components: - - type: Transform - pos: 55.5,39.5 - parent: 2 - - uid: 9333 - components: - - type: Transform - pos: 39.5,24.5 - parent: 2 - - uid: 9457 - components: - - type: Transform - pos: 33.5,32.5 - parent: 2 - - uid: 9474 - components: - - type: Transform - pos: 24.5,44.5 + pos: 38.5,30.5 parent: 2 - uid: 9475 components: @@ -29905,11 +31358,6 @@ entities: - type: Transform pos: 52.5,-8.5 parent: 2 - - uid: 9745 - components: - - type: Transform - pos: 16.5,-14.5 - parent: 2 - uid: 9746 components: - type: Transform @@ -29920,21 +31368,6 @@ entities: - type: Transform pos: 16.5,-12.5 parent: 2 - - uid: 9748 - components: - - type: Transform - pos: 16.5,-11.5 - parent: 2 - - uid: 9749 - components: - - type: Transform - pos: 15.5,-11.5 - parent: 2 - - uid: 9750 - components: - - type: Transform - pos: 14.5,-11.5 - parent: 2 - uid: 9751 components: - type: Transform @@ -29980,11 +31413,6 @@ entities: - type: Transform pos: 11.5,-15.5 parent: 2 - - uid: 9760 - components: - - type: Transform - pos: 17.5,-11.5 - parent: 2 - uid: 9761 components: - type: Transform @@ -30058,7 +31486,7 @@ entities: - uid: 9776 components: - type: Transform - pos: 23.5,3.5 + pos: 21.5,12.5 parent: 2 - uid: 9777 components: @@ -30095,11 +31523,6 @@ entities: - type: Transform pos: 38.5,-15.5 parent: 2 - - uid: 9835 - components: - - type: Transform - pos: 39.5,-15.5 - parent: 2 - uid: 9836 components: - type: Transform @@ -30315,11 +31738,6 @@ entities: - type: Transform pos: 41.5,-37.5 parent: 2 - - uid: 9884 - components: - - type: Transform - pos: 43.5,23.5 - parent: 2 - uid: 9891 components: - type: Transform @@ -30330,66 +31748,131 @@ entities: - type: Transform pos: 36.5,-22.5 parent: 2 - - uid: 9928 - components: - - type: Transform - pos: 55.5,35.5 - parent: 2 - uid: 10036 components: - type: Transform pos: 24.5,-33.5 parent: 2 - - uid: 10044 + - uid: 10051 components: - type: Transform - pos: 56.5,34.5 + pos: 63.5,14.5 + parent: 2 + - uid: 10087 + components: + - type: Transform + pos: 52.5,24.5 + parent: 2 + - uid: 10116 + components: + - type: Transform + pos: 55.5,24.5 parent: 2 - uid: 10130 components: - type: Transform pos: 63.5,-7.5 parent: 2 - - uid: 10136 + - uid: 10320 components: - type: Transform - pos: 31.5,29.5 + pos: 33.5,27.5 parent: 2 - - uid: 10318 + - uid: 10352 components: - type: Transform - pos: 36.5,33.5 + pos: 49.5,47.5 + parent: 2 + - uid: 10353 + components: + - type: Transform + pos: 33.5,24.5 + parent: 2 + - uid: 10354 + components: + - type: Transform + pos: 33.5,25.5 + parent: 2 + - uid: 10355 + components: + - type: Transform + pos: 33.5,28.5 + parent: 2 + - uid: 10362 + components: + - type: Transform + pos: 62.5,10.5 + parent: 2 + - uid: 10363 + components: + - type: Transform + pos: 33.5,26.5 + parent: 2 + - uid: 10403 + components: + - type: Transform + pos: 56.5,24.5 + parent: 2 + - uid: 10443 + components: + - type: Transform + pos: 18.5,-17.5 parent: 2 - uid: 10445 components: - type: Transform - pos: 33.5,17.5 + pos: 57.5,29.5 parent: 2 - - uid: 10672 + - uid: 10452 components: - type: Transform - pos: 64.5,11.5 + pos: 69.5,43.5 parent: 2 - - uid: 10673 + - uid: 10521 components: - type: Transform - pos: 63.5,11.5 + pos: 49.5,28.5 parent: 2 - - uid: 10674 + - uid: 10569 components: - type: Transform - pos: 62.5,11.5 + pos: 58.5,29.5 + parent: 2 + - uid: 10570 + components: + - type: Transform + pos: 59.5,29.5 + parent: 2 + - uid: 10571 + components: + - type: Transform + pos: 60.5,29.5 + parent: 2 + - uid: 10589 + components: + - type: Transform + pos: 60.5,10.5 + parent: 2 + - uid: 10602 + components: + - type: Transform + pos: 52.5,22.5 + parent: 2 + - uid: 10657 + components: + - type: Transform + pos: 60.5,30.5 + parent: 2 + - uid: 10658 + components: + - type: Transform + pos: 60.5,31.5 parent: 2 - uid: 10675 components: - type: Transform pos: 62.5,12.5 parent: 2 - - uid: 10676 - components: - - type: Transform - pos: 63.5,12.5 - parent: 2 - uid: 10677 components: - type: Transform @@ -30405,31 +31888,6 @@ entities: - type: Transform pos: 62.5,13.5 parent: 2 - - uid: 10680 - components: - - type: Transform - pos: 62.5,14.5 - parent: 2 - - uid: 10681 - components: - - type: Transform - pos: 62.5,15.5 - parent: 2 - - uid: 10682 - components: - - type: Transform - pos: 63.5,15.5 - parent: 2 - - uid: 10683 - components: - - type: Transform - pos: 64.5,15.5 - parent: 2 - - uid: 10684 - components: - - type: Transform - pos: 65.5,15.5 - parent: 2 - uid: 10685 components: - type: Transform @@ -30485,11 +31943,6 @@ entities: - type: Transform pos: 57.5,11.5 parent: 2 - - uid: 10696 - components: - - type: Transform - pos: 56.5,11.5 - parent: 2 - uid: 10697 components: - type: Transform @@ -30535,6 +31988,26 @@ entities: - type: Transform pos: 48.5,14.5 parent: 2 + - uid: 10726 + components: + - type: Transform + pos: 60.5,32.5 + parent: 2 + - uid: 10727 + components: + - type: Transform + pos: 60.5,33.5 + parent: 2 + - uid: 10728 + components: + - type: Transform + pos: 60.5,34.5 + parent: 2 + - uid: 10729 + components: + - type: Transform + pos: 68.5,42.5 + parent: 2 - uid: 10752 components: - type: Transform @@ -30560,11 +32033,6 @@ entities: - type: Transform pos: 43.5,14.5 parent: 2 - - uid: 10765 - components: - - type: Transform - pos: 37.5,26.5 - parent: 2 - uid: 10777 components: - type: Transform @@ -30600,75 +32068,15 @@ entities: - type: Transform pos: 47.5,19.5 parent: 2 - - uid: 10805 - components: - - type: Transform - pos: 47.5,20.5 - parent: 2 - uid: 10806 components: - type: Transform pos: 47.5,21.5 parent: 2 - - uid: 10852 + - uid: 10840 components: - type: Transform - pos: 33.5,31.5 - parent: 2 - - uid: 10854 - components: - - type: Transform - pos: 47.5,22.5 - parent: 2 - - uid: 10855 - components: - - type: Transform - pos: 47.5,23.5 - parent: 2 - - uid: 10857 - components: - - type: Transform - pos: 47.5,24.5 - parent: 2 - - uid: 10858 - components: - - type: Transform - pos: 47.5,25.5 - parent: 2 - - uid: 10859 - components: - - type: Transform - pos: 47.5,26.5 - parent: 2 - - uid: 10860 - components: - - type: Transform - pos: 47.5,27.5 - parent: 2 - - uid: 10861 - components: - - type: Transform - pos: 48.5,27.5 - parent: 2 - - uid: 10862 - components: - - type: Transform - pos: 49.5,27.5 - parent: 2 - - uid: 10865 - components: - - type: Transform - pos: 50.5,27.5 - parent: 2 - - uid: 10866 - components: - - type: Transform - pos: 51.5,22.5 - parent: 2 - - uid: 10867 - components: - - type: Transform - pos: 51.5,20.5 + pos: 67.5,42.5 parent: 2 - uid: 10868 components: @@ -30678,12 +32086,7 @@ entities: - uid: 10869 components: - type: Transform - pos: 53.5,20.5 - parent: 2 - - uid: 10870 - components: - - type: Transform - pos: 53.5,21.5 + pos: 52.5,21.5 parent: 2 - uid: 10871 components: @@ -30720,81 +32123,6 @@ entities: - type: Transform pos: 59.5,19.5 parent: 2 - - uid: 10881 - components: - - type: Transform - pos: 60.5,19.5 - parent: 2 - - uid: 10882 - components: - - type: Transform - pos: 60.5,18.5 - parent: 2 - - uid: 10883 - components: - - type: Transform - pos: 61.5,18.5 - parent: 2 - - uid: 10884 - components: - - type: Transform - pos: 60.5,17.5 - parent: 2 - - uid: 10885 - components: - - type: Transform - pos: 60.5,16.5 - parent: 2 - - uid: 10886 - components: - - type: Transform - pos: 60.5,15.5 - parent: 2 - - uid: 10887 - components: - - type: Transform - pos: 60.5,20.5 - parent: 2 - - uid: 10888 - components: - - type: Transform - pos: 60.5,21.5 - parent: 2 - - uid: 10889 - components: - - type: Transform - pos: 60.5,22.5 - parent: 2 - - uid: 10890 - components: - - type: Transform - pos: 60.5,23.5 - parent: 2 - - uid: 10891 - components: - - type: Transform - pos: 61.5,23.5 - parent: 2 - - uid: 10892 - components: - - type: Transform - pos: 62.5,23.5 - parent: 2 - - uid: 10893 - components: - - type: Transform - pos: 63.5,23.5 - parent: 2 - - uid: 10894 - components: - - type: Transform - pos: 64.5,23.5 - parent: 2 - - uid: 10895 - components: - - type: Transform - pos: 65.5,23.5 - parent: 2 - uid: 10913 components: - type: Transform @@ -30815,11 +32143,6 @@ entities: - type: Transform pos: 41.5,3.5 parent: 2 - - uid: 10917 - components: - - type: Transform - pos: 42.5,3.5 - parent: 2 - uid: 10918 components: - type: Transform @@ -30850,6 +32173,36 @@ entities: - type: Transform pos: 43.5,6.5 parent: 2 + - uid: 10959 + components: + - type: Transform + pos: 64.5,15.5 + parent: 2 + - uid: 10988 + components: + - type: Transform + pos: 64.5,17.5 + parent: 2 + - uid: 10993 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 2 + - uid: 10994 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 2 + - uid: 10999 + components: + - type: Transform + pos: 64.5,18.5 + parent: 2 + - uid: 11109 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 2 - uid: 11148 components: - type: Transform @@ -30995,11 +32348,6 @@ entities: - type: Transform pos: 65.5,-5.5 parent: 2 - - uid: 11192 - components: - - type: Transform - pos: 33.5,16.5 - parent: 2 - uid: 11197 components: - type: Transform @@ -31190,10 +32538,10 @@ entities: - type: Transform pos: 65.5,0.5 parent: 2 - - uid: 11283 + - uid: 11385 components: - type: Transform - pos: 66.5,41.5 + pos: 32.5,24.5 parent: 2 - uid: 11425 components: @@ -31205,11 +32553,6 @@ entities: - type: Transform pos: 49.5,-14.5 parent: 2 - - uid: 11472 - components: - - type: Transform - pos: 37.5,27.5 - parent: 2 - uid: 11692 components: - type: Transform @@ -31220,20 +32563,35 @@ entities: - type: Transform pos: 9.5,16.5 parent: 2 + - uid: 11880 + components: + - type: Transform + pos: 64.5,22.5 + parent: 2 - uid: 11882 components: - type: Transform pos: 66.5,40.5 parent: 2 + - uid: 11939 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 2 + - uid: 11980 + components: + - type: Transform + pos: 66.5,6.5 + parent: 2 - uid: 11985 components: - type: Transform pos: 10.5,16.5 parent: 2 - - uid: 12091 + - uid: 12045 components: - type: Transform - pos: 41.5,22.5 + pos: 49.5,46.5 parent: 2 - uid: 12139 components: @@ -31370,16 +32728,6 @@ entities: - type: Transform pos: 66.5,8.5 parent: 2 - - uid: 12198 - components: - - type: Transform - pos: 65.5,8.5 - parent: 2 - - uid: 12199 - components: - - type: Transform - pos: 65.5,7.5 - parent: 2 - uid: 12200 components: - type: Transform @@ -31445,6 +32793,21 @@ entities: - type: Transform pos: 57.5,10.5 parent: 2 + - uid: 12365 + components: + - type: Transform + pos: 33.5,30.5 + parent: 2 + - uid: 12440 + components: + - type: Transform + pos: 30.5,36.5 + parent: 2 + - uid: 12556 + components: + - type: Transform + pos: 56.5,23.5 + parent: 2 - uid: 12648 components: - type: Transform @@ -31465,6 +32828,41 @@ entities: - type: Transform pos: 110.5,-14.5 parent: 2 + - uid: 12826 + components: + - type: Transform + pos: 56.5,29.5 + parent: 2 + - uid: 12851 + components: + - type: Transform + pos: 56.5,30.5 + parent: 2 + - uid: 12853 + components: + - type: Transform + pos: 56.5,31.5 + parent: 2 + - uid: 12854 + components: + - type: Transform + pos: 56.5,32.5 + parent: 2 + - uid: 12856 + components: + - type: Transform + pos: 55.5,32.5 + parent: 2 + - uid: 12857 + components: + - type: Transform + pos: 54.5,32.5 + parent: 2 + - uid: 12858 + components: + - type: Transform + pos: 53.5,32.5 + parent: 2 - uid: 12942 components: - type: Transform @@ -31500,21 +32898,61 @@ entities: - type: Transform pos: 37.5,-41.5 parent: 2 + - uid: 13091 + components: + - type: Transform + pos: 52.5,32.5 + parent: 2 + - uid: 13096 + components: + - type: Transform + pos: 52.5,31.5 + parent: 2 + - uid: 13103 + components: + - type: Transform + pos: 52.5,30.5 + parent: 2 + - uid: 13104 + components: + - type: Transform + pos: 52.5,29.5 + parent: 2 - uid: 13151 components: - type: Transform pos: 21.5,-41.5 parent: 2 - - uid: 13154 - components: - - type: Transform - pos: 47.5,29.5 - parent: 2 - uid: 13170 components: - type: Transform pos: 18.5,21.5 parent: 2 + - uid: 13282 + components: + - type: Transform + pos: 41.5,31.5 + parent: 2 + - uid: 13283 + components: + - type: Transform + pos: 34.5,31.5 + parent: 2 + - uid: 13284 + components: + - type: Transform + pos: 56.5,33.5 + parent: 2 + - uid: 13285 + components: + - type: Transform + pos: 56.5,34.5 + parent: 2 + - uid: 13286 + components: + - type: Transform + pos: 56.5,35.5 + parent: 2 - uid: 13313 components: - type: Transform @@ -31730,130 +33168,230 @@ entities: - type: Transform pos: 25.5,-58.5 parent: 2 - - uid: 13499 + - uid: 13485 components: - type: Transform - pos: 56.5,39.5 + pos: 18.5,-18.5 parent: 2 - - uid: 13500 + - uid: 13498 components: - type: Transform - pos: 56.5,32.5 - parent: 2 - - uid: 13501 - components: - - type: Transform - pos: 56.5,37.5 - parent: 2 - - uid: 13502 - components: - - type: Transform - pos: 56.5,33.5 - parent: 2 - - uid: 13503 - components: - - type: Transform - pos: 56.5,31.5 - parent: 2 - - uid: 13504 - components: - - type: Transform - pos: 55.5,30.5 + pos: 51.5,31.5 parent: 2 - uid: 13505 components: - type: Transform - pos: 56.5,38.5 + pos: 55.5,35.5 parent: 2 - uid: 13506 components: - type: Transform pos: 54.5,35.5 parent: 2 + - uid: 13507 + components: + - type: Transform + pos: 54.5,36.5 + parent: 2 - uid: 13508 components: - type: Transform - pos: 56.5,35.5 + pos: 53.5,36.5 parent: 2 - - uid: 13526 + - uid: 13509 components: - type: Transform - pos: 52.5,35.5 + pos: 52.5,36.5 + parent: 2 + - uid: 13512 + components: + - type: Transform + pos: 50.5,31.5 + parent: 2 + - uid: 13515 + components: + - type: Transform + pos: 41.5,39.5 + parent: 2 + - uid: 13524 + components: + - type: Transform + pos: 47.5,36.5 + parent: 2 + - uid: 13525 + components: + - type: Transform + pos: 42.5,44.5 parent: 2 - uid: 13527 components: - type: Transform - pos: 56.5,41.5 + pos: 35.5,31.5 parent: 2 - - uid: 13529 + - uid: 13528 components: - type: Transform - pos: 52.5,39.5 - parent: 2 - - uid: 13530 - components: - - type: Transform - pos: 54.5,39.5 + pos: 36.5,31.5 parent: 2 - uid: 13531 components: - type: Transform - pos: 56.5,40.5 - parent: 2 - - uid: 13532 - components: - - type: Transform - pos: 52.5,38.5 + pos: 38.5,29.5 parent: 2 - uid: 13533 components: - type: Transform - pos: 55.5,42.5 + pos: 38.5,26.5 parent: 2 - uid: 13534 components: - type: Transform - pos: 53.5,39.5 + pos: 41.5,25.5 parent: 2 - uid: 13535 components: - type: Transform - pos: 56.5,42.5 + pos: 43.5,39.5 parent: 2 - uid: 13536 components: - type: Transform - pos: 57.5,42.5 - parent: 2 - - uid: 13537 - components: - - type: Transform - pos: 59.5,36.5 + pos: 42.5,26.5 parent: 2 - uid: 13538 components: - type: Transform - pos: 60.5,36.5 + pos: 39.5,25.5 parent: 2 - uid: 13539 components: - type: Transform - pos: 57.5,30.5 + pos: 38.5,28.5 parent: 2 - uid: 13543 components: - type: Transform - pos: 56.5,36.5 + pos: 40.5,34.5 parent: 2 - uid: 13544 components: - type: Transform - pos: 57.5,36.5 + pos: 40.5,33.5 + parent: 2 + - uid: 13545 + components: + - type: Transform + pos: 40.5,32.5 parent: 2 - uid: 13546 components: - type: Transform - pos: 58.5,36.5 + pos: 40.5,31.5 + parent: 2 + - uid: 13547 + components: + - type: Transform + pos: 37.5,31.5 + parent: 2 + - uid: 13548 + components: + - type: Transform + pos: 42.5,31.5 + parent: 2 + - uid: 13550 + components: + - type: Transform + pos: 43.5,31.5 + parent: 2 + - uid: 13551 + components: + - type: Transform + pos: 44.5,31.5 + parent: 2 + - uid: 13552 + components: + - type: Transform + pos: 45.5,31.5 + parent: 2 + - uid: 13553 + components: + - type: Transform + pos: 46.5,31.5 + parent: 2 + - uid: 13554 + components: + - type: Transform + pos: 47.5,31.5 + parent: 2 + - uid: 13555 + components: + - type: Transform + pos: 48.5,31.5 + parent: 2 + - uid: 13556 + components: + - type: Transform + pos: 49.5,31.5 + parent: 2 + - uid: 13557 + components: + - type: Transform + pos: 39.5,31.5 + parent: 2 + - uid: 13558 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 13559 + components: + - type: Transform + pos: 38.5,32.5 + parent: 2 + - uid: 13565 + components: + - type: Transform + pos: 42.5,25.5 + parent: 2 + - uid: 13592 + components: + - type: Transform + pos: 44.5,39.5 + parent: 2 + - uid: 13594 + components: + - type: Transform + pos: 44.5,36.5 + parent: 2 + - uid: 13595 + components: + - type: Transform + pos: 44.5,35.5 + parent: 2 + - uid: 13596 + components: + - type: Transform + pos: 44.5,34.5 + parent: 2 + - uid: 13597 + components: + - type: Transform + pos: 43.5,34.5 + parent: 2 + - uid: 13598 + components: + - type: Transform + pos: 41.5,34.5 + parent: 2 + - uid: 13608 + components: + - type: Transform + pos: 42.5,39.5 + parent: 2 + - uid: 13655 + components: + - type: Transform + pos: 32.5,16.5 parent: 2 - uid: 13679 components: @@ -31873,7 +33411,7 @@ entities: - uid: 13695 components: - type: Transform - pos: 15.5,-14.5 + pos: 18.5,-19.5 parent: 2 - uid: 13701 components: @@ -31940,6 +33478,66 @@ entities: - type: Transform pos: -23.5,-19.5 parent: 2 + - uid: 13738 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 2 + - uid: 13744 + components: + - type: Transform + pos: 33.5,16.5 + parent: 2 + - uid: 13745 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 + - uid: 13748 + components: + - type: Transform + pos: 35.5,16.5 + parent: 2 + - uid: 13752 + components: + - type: Transform + pos: 38.5,24.5 + parent: 2 + - uid: 13753 + components: + - type: Transform + pos: 38.5,23.5 + parent: 2 + - uid: 13754 + components: + - type: Transform + pos: 39.5,23.5 + parent: 2 + - uid: 13755 + components: + - type: Transform + pos: 40.5,23.5 + parent: 2 + - uid: 13757 + components: + - type: Transform + pos: 37.5,23.5 + parent: 2 + - uid: 13758 + components: + - type: Transform + pos: 36.5,23.5 + parent: 2 + - uid: 13759 + components: + - type: Transform + pos: 37.5,25.5 + parent: 2 + - uid: 13761 + components: + - type: Transform + pos: 36.5,25.5 + parent: 2 - uid: 13762 components: - type: Transform @@ -32140,6 +33738,36 @@ entities: - type: Transform pos: 1.5,-13.5 parent: 2 + - uid: 13915 + components: + - type: Transform + pos: 35.5,25.5 + parent: 2 + - uid: 14085 + components: + - type: Transform + pos: 35.5,24.5 + parent: 2 + - uid: 14089 + components: + - type: Transform + pos: 31.5,30.5 + parent: 2 + - uid: 14090 + components: + - type: Transform + pos: 30.5,30.5 + parent: 2 + - uid: 14091 + components: + - type: Transform + pos: 30.5,29.5 + parent: 2 + - uid: 14092 + components: + - type: Transform + pos: 29.5,29.5 + parent: 2 - uid: 14094 components: - type: Transform @@ -32150,11 +33778,6 @@ entities: - type: Transform pos: 72.5,21.5 parent: 2 - - uid: 14097 - components: - - type: Transform - pos: 66.5,35.5 - parent: 2 - uid: 14098 components: - type: Transform @@ -32310,6 +33933,16 @@ entities: - type: Transform pos: 75.5,22.5 parent: 2 + - uid: 14240 + components: + - type: Transform + pos: 53.5,24.5 + parent: 2 + - uid: 14256 + components: + - type: Transform + pos: 45.5,39.5 + parent: 2 - uid: 14399 components: - type: Transform @@ -32375,16 +34008,6 @@ entities: - type: Transform pos: 88.5,30.5 parent: 2 - - uid: 14442 - components: - - type: Transform - pos: 88.5,29.5 - parent: 2 - - uid: 14443 - components: - - type: Transform - pos: 88.5,28.5 - parent: 2 - uid: 14532 components: - type: Transform @@ -32563,222 +34186,57 @@ entities: - uid: 14731 components: - type: Transform - pos: 9.5,18.5 + pos: 30.5,20.5 + parent: 2 + - uid: 14763 + components: + - type: Transform + pos: 31.5,20.5 parent: 2 - uid: 14784 components: - type: Transform pos: 28.5,-35.5 parent: 2 - - uid: 14856 + - uid: 14833 components: - type: Transform - pos: 66.5,46.5 + pos: 47.5,39.5 parent: 2 - - uid: 14857 + - uid: 14835 components: - type: Transform - pos: 65.5,46.5 + pos: 61.5,34.5 parent: 2 - - uid: 14858 + - uid: 14840 components: - type: Transform - pos: 64.5,46.5 - parent: 2 - - uid: 14859 - components: - - type: Transform - pos: 64.5,45.5 - parent: 2 - - uid: 14860 - components: - - type: Transform - pos: 64.5,44.5 - parent: 2 - - uid: 14861 - components: - - type: Transform - pos: 64.5,43.5 - parent: 2 - - uid: 14862 - components: - - type: Transform - pos: 64.5,42.5 + pos: 47.5,38.5 parent: 2 - uid: 14863 components: - type: Transform - pos: 63.5,42.5 + pos: 30.5,21.5 parent: 2 - uid: 14864 components: - type: Transform - pos: 62.5,42.5 + pos: 34.5,23.5 parent: 2 - uid: 14865 components: - type: Transform - pos: 62.5,41.5 + pos: 28.5,21.5 parent: 2 - uid: 14866 components: - type: Transform - pos: 62.5,40.5 - parent: 2 - - uid: 14867 - components: - - type: Transform - pos: 62.5,39.5 + pos: 28.5,20.5 parent: 2 - uid: 14868 components: - type: Transform - pos: 62.5,37.5 - parent: 2 - - uid: 14869 - components: - - type: Transform - pos: 62.5,36.5 - parent: 2 - - uid: 14870 - components: - - type: Transform - pos: 62.5,35.5 - parent: 2 - - uid: 14871 - components: - - type: Transform - pos: 62.5,34.5 - parent: 2 - - uid: 14872 - components: - - type: Transform - pos: 62.5,33.5 - parent: 2 - - uid: 14873 - components: - - type: Transform - pos: 62.5,32.5 - parent: 2 - - uid: 14874 - components: - - type: Transform - pos: 62.5,38.5 - parent: 2 - - uid: 14875 - components: - - type: Transform - pos: 61.5,42.5 - parent: 2 - - uid: 14876 - components: - - type: Transform - pos: 60.5,42.5 - parent: 2 - - uid: 14877 - components: - - type: Transform - pos: 60.5,43.5 - parent: 2 - - uid: 14878 - components: - - type: Transform - pos: 60.5,44.5 - parent: 2 - - uid: 14879 - components: - - type: Transform - pos: 59.5,44.5 - parent: 2 - - uid: 14880 - components: - - type: Transform - pos: 58.5,44.5 - parent: 2 - - uid: 14881 - components: - - type: Transform - pos: 57.5,44.5 - parent: 2 - - uid: 14882 - components: - - type: Transform - pos: 56.5,44.5 - parent: 2 - - uid: 14883 - components: - - type: Transform - pos: 54.5,44.5 - parent: 2 - - uid: 14884 - components: - - type: Transform - pos: 53.5,44.5 - parent: 2 - - uid: 14885 - components: - - type: Transform - pos: 55.5,44.5 - parent: 2 - - uid: 14886 - components: - - type: Transform - pos: 52.5,43.5 - parent: 2 - - uid: 14887 - components: - - type: Transform - pos: 51.5,43.5 - parent: 2 - - uid: 14888 - components: - - type: Transform - pos: 52.5,44.5 - parent: 2 - - uid: 14889 - components: - - type: Transform - pos: 50.5,43.5 - parent: 2 - - uid: 14890 - components: - - type: Transform - pos: 50.5,42.5 - parent: 2 - - uid: 14891 - components: - - type: Transform - pos: 50.5,40.5 - parent: 2 - - uid: 14892 - components: - - type: Transform - pos: 50.5,39.5 - parent: 2 - - uid: 14893 - components: - - type: Transform - pos: 50.5,41.5 - parent: 2 - - uid: 14894 - components: - - type: Transform - pos: 50.5,38.5 - parent: 2 - - uid: 14895 - components: - - type: Transform - pos: 62.5,31.5 - parent: 2 - - uid: 14927 - components: - - type: Transform - pos: 36.5,34.5 - parent: 2 - - uid: 14928 - components: - - type: Transform - pos: 37.5,34.5 + pos: 34.5,17.5 parent: 2 - uid: 14933 components: @@ -32790,11 +34248,6 @@ entities: - type: Transform pos: 26.5,35.5 parent: 2 - - uid: 14935 - components: - - type: Transform - pos: 33.5,36.5 - parent: 2 - uid: 14944 components: - type: Transform @@ -32825,6 +34278,11 @@ entities: - type: Transform pos: 17.5,-39.5 parent: 2 + - uid: 14980 + components: + - type: Transform + pos: 44.5,46.5 + parent: 2 - uid: 14981 components: - type: Transform @@ -32855,6 +34313,11 @@ entities: - type: Transform pos: 38.5,-12.5 parent: 2 + - uid: 15106 + components: + - type: Transform + pos: 43.5,46.5 + parent: 2 - uid: 15315 components: - type: Transform @@ -32885,16 +34348,6 @@ entities: - type: Transform pos: 27.5,-35.5 parent: 2 - - uid: 15385 - components: - - type: Transform - pos: 39.5,27.5 - parent: 2 - - uid: 15386 - components: - - type: Transform - pos: 38.5,27.5 - parent: 2 - uid: 15389 components: - type: Transform @@ -33020,15 +34473,295 @@ entities: - type: Transform pos: 35.5,-25.5 parent: 2 - - uid: 15472 + - uid: 15555 components: - type: Transform - pos: 43.5,22.5 + pos: 52.5,27.5 parent: 2 - - uid: 15473 + - uid: 15556 components: - type: Transform - pos: 43.5,21.5 + pos: 53.5,27.5 + parent: 2 + - uid: 15557 + components: + - type: Transform + pos: 54.5,27.5 + parent: 2 + - uid: 15558 + components: + - type: Transform + pos: 55.5,27.5 + parent: 2 + - uid: 15559 + components: + - type: Transform + pos: 56.5,27.5 + parent: 2 + - uid: 15560 + components: + - type: Transform + pos: 57.5,27.5 + parent: 2 + - uid: 15561 + components: + - type: Transform + pos: 57.5,28.5 + parent: 2 + - uid: 15563 + components: + - type: Transform + pos: 34.5,24.5 + parent: 2 + - uid: 15570 + components: + - type: Transform + pos: 52.5,19.5 + parent: 2 + - uid: 15571 + components: + - type: Transform + pos: 51.5,19.5 + parent: 2 + - uid: 15572 + components: + - type: Transform + pos: 50.5,19.5 + parent: 2 + - uid: 15573 + components: + - type: Transform + pos: 50.5,20.5 + parent: 2 + - uid: 15577 + components: + - type: Transform + pos: 65.5,22.5 + parent: 2 + - uid: 15582 + components: + - type: Transform + pos: 64.5,23.5 + parent: 2 + - uid: 15584 + components: + - type: Transform + pos: 63.5,24.5 + parent: 2 + - uid: 15586 + components: + - type: Transform + pos: 62.5,24.5 + parent: 2 + - uid: 15587 + components: + - type: Transform + pos: 61.5,24.5 + parent: 2 + - uid: 15588 + components: + - type: Transform + pos: 60.5,24.5 + parent: 2 + - uid: 15589 + components: + - type: Transform + pos: 59.5,24.5 + parent: 2 + - uid: 15590 + components: + - type: Transform + pos: 58.5,24.5 + parent: 2 + - uid: 15591 + components: + - type: Transform + pos: 57.5,24.5 + parent: 2 + - uid: 15708 + components: + - type: Transform + pos: 62.5,44.5 + parent: 2 + - uid: 15709 + components: + - type: Transform + pos: 62.5,45.5 + parent: 2 + - uid: 15710 + components: + - type: Transform + pos: 62.5,46.5 + parent: 2 + - uid: 15802 + components: + - type: Transform + pos: 38.5,-14.5 + parent: 2 + - uid: 15815 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 2 + - uid: 15819 + components: + - type: Transform + pos: 10.5,20.5 + parent: 2 + - uid: 15823 + components: + - type: Transform + pos: 30.5,24.5 + parent: 2 + - uid: 15824 + components: + - type: Transform + pos: 30.5,23.5 + parent: 2 + - uid: 15825 + components: + - type: Transform + pos: 30.5,22.5 + parent: 2 + - uid: 15826 + components: + - type: Transform + pos: 34.5,22.5 + parent: 2 + - uid: 15839 + components: + - type: Transform + pos: 45.5,3.5 + parent: 2 + - uid: 15840 + components: + - type: Transform + pos: 44.5,3.5 + parent: 2 + - uid: 15843 + components: + - type: Transform + pos: 54.5,9.5 + parent: 2 + - uid: 15844 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 15845 + components: + - type: Transform + pos: 53.5,9.5 + parent: 2 + - uid: 15846 + components: + - type: Transform + pos: 51.5,9.5 + parent: 2 + - uid: 15847 + components: + - type: Transform + pos: 50.5,9.5 + parent: 2 + - uid: 15848 + components: + - type: Transform + pos: 50.5,8.5 + parent: 2 + - uid: 15849 + components: + - type: Transform + pos: 50.5,7.5 + parent: 2 + - uid: 15851 + components: + - type: Transform + pos: 9.5,11.5 + parent: 2 + - uid: 15855 + components: + - type: Transform + pos: 5.5,10.5 + parent: 2 + - uid: 15856 + components: + - type: Transform + pos: 6.5,10.5 + parent: 2 + - uid: 15857 + components: + - type: Transform + pos: 7.5,10.5 + parent: 2 + - uid: 15858 + components: + - type: Transform + pos: 8.5,10.5 + parent: 2 + - uid: 15859 + components: + - type: Transform + pos: 18.5,0.5 + parent: 2 + - uid: 15860 + components: + - type: Transform + pos: 19.5,0.5 + parent: 2 + - uid: 15861 + components: + - type: Transform + pos: 20.5,0.5 + parent: 2 + - uid: 15862 + components: + - type: Transform + pos: 21.5,0.5 + parent: 2 + - uid: 15863 + components: + - type: Transform + pos: 22.5,0.5 + parent: 2 + - uid: 15864 + components: + - type: Transform + pos: 23.5,0.5 + parent: 2 + - uid: 15865 + components: + - type: Transform + pos: 23.5,1.5 + parent: 2 + - uid: 15867 + components: + - type: Transform + pos: 29.5,9.5 + parent: 2 + - uid: 15868 + components: + - type: Transform + pos: 29.5,8.5 + parent: 2 + - uid: 15869 + components: + - type: Transform + pos: 30.5,8.5 + parent: 2 + - uid: 15885 + components: + - type: Transform + pos: 31.5,8.5 + parent: 2 + - uid: 15886 + components: + - type: Transform + pos: 32.5,8.5 + parent: 2 + - uid: 15887 + components: + - type: Transform + pos: 33.5,8.5 parent: 2 - proto: CableMVStack entities: @@ -33090,12 +34823,6 @@ entities: rot: 3.141592653589793 rad pos: 23.5,-15.5 parent: 2 - - uid: 7741 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,33.5 - parent: 2 - uid: 8272 components: - type: Transform @@ -33133,19 +34860,13 @@ entities: - type: Transform pos: 54.503376,-4.6494684 parent: 2 -- proto: CannabisSeeds - entities: - - uid: 8395 - components: - - type: Transform - pos: 59.5,38.5 - parent: 2 - proto: CaptainIDCard entities: - - uid: 1255 + - uid: 5385 components: - type: Transform - pos: 33.48514,41.714756 + rot: -1.5707963267948966 rad + pos: 33.659546,41.622776 parent: 2 - proto: CarbonDioxideCanister entities: @@ -33159,10 +34880,10 @@ entities: - type: Transform pos: 45.5,-37.5 parent: 2 - - uid: 7846 + - uid: 10668 components: - type: Transform - pos: 58.5,10.5 + pos: 58.5,8.5 parent: 2 - proto: CargoMailTeleporter entities: @@ -33173,11 +34894,6 @@ entities: parent: 2 - proto: Carpet entities: - - uid: 3 - components: - - type: Transform - pos: 43.5,22.5 - parent: 2 - uid: 266 components: - type: Transform @@ -33318,26 +35034,6 @@ entities: - type: Transform pos: 34.5,7.5 parent: 2 - - uid: 2611 - components: - - type: Transform - pos: 37.5,41.5 - parent: 2 - - uid: 2612 - components: - - type: Transform - pos: 36.5,41.5 - parent: 2 - - uid: 2613 - components: - - type: Transform - pos: 36.5,40.5 - parent: 2 - - uid: 2614 - components: - - type: Transform - pos: 37.5,40.5 - parent: 2 - uid: 2698 components: - type: Transform @@ -33453,40 +35149,25 @@ entities: - type: Transform pos: 22.5,43.5 parent: 2 - - uid: 5453 + - uid: 3113 components: - type: Transform - pos: 67.5,35.5 + pos: 59.5,38.5 parent: 2 - - uid: 6529 + - uid: 3392 components: - type: Transform - pos: 43.5,20.5 + pos: 58.5,38.5 parent: 2 - - uid: 6530 + - uid: 6321 components: - type: Transform - pos: 42.5,20.5 + pos: 59.5,39.5 parent: 2 - - uid: 6531 + - uid: 6326 components: - type: Transform - pos: 42.5,19.5 - parent: 2 - - uid: 6532 - components: - - type: Transform - pos: 43.5,19.5 - parent: 2 - - uid: 6533 - components: - - type: Transform - pos: 43.5,18.5 - parent: 2 - - uid: 6534 - components: - - type: Transform - pos: 42.5,18.5 + pos: 58.5,39.5 parent: 2 - uid: 10807 components: @@ -33518,31 +35199,6 @@ entities: - type: Transform pos: 28.5,48.5 parent: 2 - - uid: 11940 - components: - - type: Transform - pos: 44.5,22.5 - parent: 2 - - uid: 11941 - components: - - type: Transform - pos: 45.5,22.5 - parent: 2 - - uid: 11942 - components: - - type: Transform - pos: 45.5,23.5 - parent: 2 - - uid: 11943 - components: - - type: Transform - pos: 45.5,24.5 - parent: 2 - - uid: 11944 - components: - - type: Transform - pos: 44.5,23.5 - parent: 2 - uid: 12263 components: - type: Transform @@ -33573,6 +35229,11 @@ entities: - type: Transform pos: 14.5,15.5 parent: 2 + - uid: 15452 + components: + - type: Transform + pos: 24.5,31.5 + parent: 2 - proto: CarpetBlack entities: - uid: 430 @@ -33585,10 +35246,20 @@ entities: - type: Transform pos: 5.5,15.5 parent: 2 - - uid: 5459 + - uid: 2215 components: - type: Transform - pos: 67.5,41.5 + pos: 43.5,43.5 + parent: 2 + - uid: 3244 + components: + - type: Transform + pos: 44.5,43.5 + parent: 2 + - uid: 3249 + components: + - type: Transform + pos: 44.5,42.5 parent: 2 - uid: 7586 components: @@ -33605,63 +35276,58 @@ entities: - type: Transform pos: 5.5,16.5 parent: 2 + - uid: 8386 + components: + - type: Transform + pos: 43.5,42.5 + parent: 2 - proto: CarpetBlue entities: - - uid: 71 - components: - - type: Transform - pos: 32.5,42.5 - parent: 2 - - uid: 73 - components: - - type: Transform - pos: 34.5,40.5 - parent: 2 - - uid: 76 - components: - - type: Transform - pos: 32.5,41.5 - parent: 2 - - uid: 82 - components: - - type: Transform - pos: 32.5,40.5 - parent: 2 - - uid: 247 - components: - - type: Transform - pos: 34.5,42.5 - parent: 2 - - uid: 248 - components: - - type: Transform - pos: 34.5,41.5 - parent: 2 - - uid: 249 - components: - - type: Transform - pos: 33.5,42.5 - parent: 2 - - uid: 5455 - components: - - type: Transform - pos: 67.5,38.5 - parent: 2 - - uid: 5456 - components: - - type: Transform - pos: 67.5,37.5 - parent: 2 - - uid: 9565 + - uid: 8387 components: - type: Transform pos: 33.5,41.5 parent: 2 - - uid: 9574 + - uid: 8391 + components: + - type: Transform + pos: 32.5,40.5 + parent: 2 + - uid: 8419 + components: + - type: Transform + pos: 31.5,39.5 + parent: 2 + - uid: 8438 + components: + - type: Transform + pos: 32.5,41.5 + parent: 2 + - uid: 8441 components: - type: Transform pos: 33.5,40.5 parent: 2 + - uid: 8456 + components: + - type: Transform + pos: 33.5,39.5 + parent: 2 + - uid: 8477 + components: + - type: Transform + pos: 31.5,40.5 + parent: 2 + - uid: 8484 + components: + - type: Transform + pos: 31.5,41.5 + parent: 2 + - uid: 8490 + components: + - type: Transform + pos: 32.5,39.5 + parent: 2 - proto: CarpetChapel entities: - uid: 8377 @@ -33781,33 +35447,30 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,4.5 parent: 2 +- proto: CarpetCyan + entities: + - uid: 3246 + components: + - type: Transform + pos: 61.5,41.5 + parent: 2 + - uid: 3393 + components: + - type: Transform + pos: 61.5,40.5 + parent: 2 + - uid: 6290 + components: + - type: Transform + pos: 62.5,41.5 + parent: 2 + - uid: 7940 + components: + - type: Transform + pos: 62.5,40.5 + parent: 2 - proto: CarpetGreen entities: - - uid: 2276 - components: - - type: Transform - pos: 67.5,27.5 - parent: 2 - - uid: 5463 - components: - - type: Transform - pos: 69.5,36.5 - parent: 2 - - uid: 5514 - components: - - type: Transform - pos: 67.5,31.5 - parent: 2 - - uid: 5515 - components: - - type: Transform - pos: 67.5,32.5 - parent: 2 - - uid: 5516 - components: - - type: Transform - pos: 67.5,33.5 - parent: 2 - uid: 12679 components: - type: Transform @@ -33838,16 +35501,6 @@ entities: - type: Transform pos: 107.5,-12.5 parent: 2 - - uid: 14089 - components: - - type: Transform - pos: 67.5,29.5 - parent: 2 - - uid: 14090 - components: - - type: Transform - pos: 67.5,28.5 - parent: 2 - proto: CarpetOrange entities: - uid: 97 @@ -33865,41 +35518,6 @@ entities: - type: Transform pos: 10.5,-41.5 parent: 2 - - uid: 3431 - components: - - type: Transform - pos: 70.5,28.5 - parent: 2 - - uid: 5495 - components: - - type: Transform - pos: 70.5,34.5 - parent: 2 - - uid: 5496 - components: - - type: Transform - pos: 70.5,33.5 - parent: 2 - - uid: 5497 - components: - - type: Transform - pos: 70.5,32.5 - parent: 2 - - uid: 5513 - components: - - type: Transform - pos: 69.5,28.5 - parent: 2 - - uid: 8357 - components: - - type: Transform - pos: 70.5,27.5 - parent: 2 - - uid: 8817 - components: - - type: Transform - pos: 70.5,29.5 - parent: 2 - proto: CarpetPink entities: - uid: 1240 @@ -33912,16 +35530,65 @@ entities: - type: Transform pos: 5.5,-12.5 parent: 2 - - uid: 5457 + - uid: 2213 components: - type: Transform - pos: 67.5,39.5 + rot: 3.141592653589793 rad + pos: 48.5,42.5 + parent: 2 + - uid: 2234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,40.5 + parent: 2 + - uid: 2902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,42.5 + parent: 2 + - uid: 3065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,41.5 + parent: 2 + - uid: 3194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,41.5 + parent: 2 + - uid: 5425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,37.5 + parent: 2 + - uid: 5456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,36.5 parent: 2 - uid: 5682 components: - type: Transform pos: 6.5,-13.5 parent: 2 + - uid: 9248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,38.5 + parent: 2 + - uid: 10833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,38.5 + parent: 2 - uid: 13066 components: - type: Transform @@ -33947,24 +35614,60 @@ entities: - type: Transform pos: 4.5,-12.5 parent: 2 -- proto: CarpetPurple - entities: - - uid: 5454 + - uid: 13520 components: - type: Transform - pos: 67.5,36.5 + rot: 3.141592653589793 rad + pos: 49.5,40.5 + parent: 2 + - uid: 14837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,36.5 + parent: 2 + - uid: 15157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,37.5 parent: 2 - proto: CarpetSBlue entities: - - uid: 5458 + - uid: 2570 components: - type: Transform - pos: 67.5,40.5 + pos: 70.5,40.5 parent: 2 - - uid: 5462 + - uid: 4134 components: - type: Transform - pos: 69.5,39.5 + pos: 35.5,41.5 + parent: 2 + - uid: 4137 + components: + - type: Transform + pos: 36.5,41.5 + parent: 2 + - uid: 8660 + components: + - type: Transform + pos: 70.5,39.5 + parent: 2 + - uid: 8714 + components: + - type: Transform + pos: 71.5,40.5 + parent: 2 + - uid: 8791 + components: + - type: Transform + pos: 71.5,39.5 + parent: 2 + - uid: 9131 + components: + - type: Transform + pos: 36.5,42.5 parent: 2 - uid: 10284 components: @@ -33996,6 +35699,11 @@ entities: - type: Transform pos: 20.5,-2.5 parent: 2 + - uid: 13577 + components: + - type: Transform + pos: 35.5,42.5 + parent: 2 - proto: Catwalk entities: - uid: 8 @@ -34004,6 +35712,16 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-16.5 parent: 2 + - uid: 71 + components: + - type: Transform + pos: 40.5,45.5 + parent: 2 + - uid: 178 + components: + - type: Transform + pos: 39.5,42.5 + parent: 2 - uid: 197 components: - type: Transform @@ -34053,10 +35771,11 @@ entities: - type: Transform pos: 4.5,-32.5 parent: 2 - - uid: 1014 + - uid: 651 components: - type: Transform - pos: 47.5,21.5 + rot: 1.5707963267948966 rad + pos: 16.5,-12.5 parent: 2 - uid: 1166 components: @@ -34351,29 +36070,106 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,-30.5 parent: 2 + - uid: 2192 + components: + - type: Transform + pos: 33.5,36.5 + parent: 2 + - uid: 2198 + components: + - type: Transform + pos: 32.5,36.5 + parent: 2 + - uid: 2204 + components: + - type: Transform + pos: 45.5,46.5 + parent: 2 + - uid: 2206 + components: + - type: Transform + pos: 48.5,46.5 + parent: 2 + - uid: 2207 + components: + - type: Transform + pos: 35.5,38.5 + parent: 2 + - uid: 2258 + components: + - type: Transform + pos: 47.5,46.5 + parent: 2 - uid: 2264 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-47.5 parent: 2 + - uid: 2273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,38.5 + parent: 2 + - uid: 2274 + components: + - type: Transform + pos: 43.5,46.5 + parent: 2 - uid: 2275 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-49.5 parent: 2 + - uid: 2276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,47.5 + parent: 2 - uid: 2280 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-49.5 parent: 2 - - uid: 2567 + - uid: 2282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,44.5 + parent: 2 + - uid: 2319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,21.5 + parent: 2 + - uid: 2327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,23.5 + parent: 2 + - uid: 2331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,27.5 + parent: 2 + - uid: 2597 components: - type: Transform rot: -1.5707963267948966 rad - pos: 36.5,34.5 + pos: 31.5,34.5 + parent: 2 + - uid: 2598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,35.5 parent: 2 - uid: 2834 components: @@ -34387,45 +36183,60 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,-30.5 parent: 2 - - uid: 3172 + - uid: 3076 components: - type: Transform - pos: 34.5,34.5 + rot: 1.5707963267948966 rad + pos: 46.5,22.5 parent: 2 - - uid: 3174 + - uid: 3083 components: - type: Transform - pos: 34.5,35.5 + pos: 42.5,46.5 parent: 2 - - uid: 3188 + - uid: 3125 components: - type: Transform - pos: 45.5,33.5 + pos: 39.5,41.5 parent: 2 - - uid: 3189 + - uid: 3161 components: - type: Transform - pos: 45.5,34.5 + rot: 3.141592653589793 rad + pos: 40.5,43.5 + parent: 2 + - uid: 3187 + components: + - type: Transform + pos: 44.5,46.5 parent: 2 - uid: 3190 components: - type: Transform - pos: 45.5,35.5 + pos: 46.5,46.5 parent: 2 - - uid: 3191 + - uid: 3266 components: - type: Transform - pos: 45.5,36.5 + rot: 1.5707963267948966 rad + pos: 39.5,38.5 parent: 2 - - uid: 3254 + - uid: 3269 components: - type: Transform - pos: 47.5,25.5 + rot: 1.5707963267948966 rad + pos: 61.5,47.5 parent: 2 - - uid: 3255 + - uid: 3358 components: - type: Transform - pos: 47.5,23.5 + rot: 1.5707963267948966 rad + pos: 62.5,47.5 + parent: 2 + - uid: 3418 + components: + - type: Transform + pos: 39.5,40.5 parent: 2 - uid: 3446 components: @@ -34438,11 +36249,6 @@ entities: - type: Transform pos: 79.5,-9.5 parent: 2 - - uid: 3851 - components: - - type: Transform - pos: 74.5,-18.5 - parent: 2 - uid: 3904 components: - type: Transform @@ -34648,6 +36454,21 @@ entities: - type: Transform pos: 89.5,45.5 parent: 2 + - uid: 4071 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 2 + - uid: 4090 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 2 + - uid: 4135 + components: + - type: Transform + pos: 62.5,34.5 + parent: 2 - uid: 4272 components: - type: Transform @@ -34672,6 +36493,11 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,29.5 parent: 2 + - uid: 4346 + components: + - type: Transform + pos: 61.5,34.5 + parent: 2 - uid: 4440 components: - type: Transform @@ -34682,22 +36508,18 @@ entities: - type: Transform pos: 5.5,-30.5 parent: 2 - - uid: 4453 - components: - - type: Transform - pos: 10.5,-23.5 - parent: 2 - - uid: 4454 - components: - - type: Transform - pos: 11.5,-23.5 - parent: 2 - uid: 4504 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,32.5 parent: 2 + - uid: 4506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,38.5 + parent: 2 - uid: 4519 components: - type: Transform @@ -34750,12 +36572,6 @@ entities: - type: Transform pos: 21.5,-39.5 parent: 2 - - uid: 4784 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-14.5 - parent: 2 - uid: 4788 components: - type: Transform @@ -34808,12 +36624,24 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,-30.5 parent: 2 + - uid: 5484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,25.5 + parent: 2 - uid: 5499 components: - type: Transform rot: -1.5707963267948966 rad pos: 69.5,18.5 parent: 2 + - uid: 5505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,36.5 + parent: 2 - uid: 5606 components: - type: Transform @@ -34948,6 +36776,44 @@ entities: rot: 3.141592653589793 rad pos: 52.5,-19.5 parent: 2 + - uid: 6197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,26.5 + parent: 2 + - uid: 6292 + components: + - type: Transform + pos: 40.5,46.5 + parent: 2 + - uid: 6293 + components: + - type: Transform + pos: 40.5,42.5 + parent: 2 + - uid: 6320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,24.5 + parent: 2 + - uid: 6331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,39.5 + parent: 2 + - uid: 6531 + components: + - type: Transform + pos: 86.5,50.5 + parent: 2 + - uid: 6729 + components: + - type: Transform + pos: 53.5,47.5 + parent: 2 - uid: 6775 components: - type: Transform @@ -34972,10 +36838,10 @@ entities: rot: 3.141592653589793 rad pos: 40.5,-21.5 parent: 2 - - uid: 6866 + - uid: 6922 components: - type: Transform - pos: 47.5,24.5 + pos: 53.5,48.5 parent: 2 - uid: 7007 components: @@ -35056,23 +36922,11 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,24.5 parent: 2 - - uid: 7856 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,24.5 - parent: 2 - uid: 7860 components: - type: Transform pos: 46.5,-30.5 parent: 2 - - uid: 8029 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,26.5 - parent: 2 - uid: 8063 components: - type: Transform @@ -35100,6 +36954,11 @@ entities: - type: Transform pos: 13.5,-44.5 parent: 2 + - uid: 8287 + components: + - type: Transform + pos: 78.5,40.5 + parent: 2 - uid: 8302 components: - type: Transform @@ -35120,10 +36979,48 @@ entities: - type: Transform pos: 45.5,6.5 parent: 2 - - uid: 8391 + - uid: 8347 components: - type: Transform - pos: 45.5,27.5 + pos: 59.5,48.5 + parent: 2 + - uid: 8362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,26.5 + parent: 2 + - uid: 8363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,34.5 + parent: 2 + - uid: 8403 + components: + - type: Transform + pos: 63.5,34.5 + parent: 2 + - uid: 8417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,47.5 + parent: 2 + - uid: 8497 + components: + - type: Transform + pos: 66.5,26.5 + parent: 2 + - uid: 8590 + components: + - type: Transform + pos: 78.5,50.5 + parent: 2 + - uid: 8630 + components: + - type: Transform + pos: 86.5,40.5 parent: 2 - uid: 8750 components: @@ -35237,47 +37134,37 @@ entities: rot: 3.141592653589793 rad pos: 40.5,-19.5 parent: 2 + - uid: 9274 + components: + - type: Transform + pos: 52.5,21.5 + parent: 2 + - uid: 9434 + components: + - type: Transform + pos: 49.5,47.5 + parent: 2 - uid: 9706 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,6.5 parent: 2 + - uid: 9883 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 10432 + components: + - type: Transform + pos: 48.5,27.5 + parent: 2 - uid: 10441 components: - type: Transform pos: 39.5,-38.5 parent: 2 - - uid: 10711 - components: - - type: Transform - pos: 63.5,48.5 - parent: 2 - - uid: 10712 - components: - - type: Transform - pos: 62.5,48.5 - parent: 2 - - uid: 10713 - components: - - type: Transform - pos: 61.5,48.5 - parent: 2 - - uid: 10714 - components: - - type: Transform - pos: 60.5,48.5 - parent: 2 - - uid: 10715 - components: - - type: Transform - pos: 59.5,48.5 - parent: 2 - - uid: 10716 - components: - - type: Transform - pos: 58.5,48.5 - parent: 2 - uid: 10717 components: - type: Transform @@ -35293,56 +37180,11 @@ entities: - type: Transform pos: 54.5,48.5 parent: 2 - - uid: 10720 - components: - - type: Transform - pos: 53.5,48.5 - parent: 2 - - uid: 10721 - components: - - type: Transform - pos: 52.5,48.5 - parent: 2 - - uid: 10722 - components: - - type: Transform - pos: 51.5,48.5 - parent: 2 - - uid: 10723 - components: - - type: Transform - pos: 50.5,48.5 - parent: 2 - - uid: 10724 - components: - - type: Transform - pos: 49.5,48.5 - parent: 2 - uid: 10725 components: - type: Transform pos: 55.5,48.5 parent: 2 - - uid: 10726 - components: - - type: Transform - pos: 43.5,41.5 - parent: 2 - - uid: 10727 - components: - - type: Transform - pos: 42.5,41.5 - parent: 2 - - uid: 10728 - components: - - type: Transform - pos: 41.5,41.5 - parent: 2 - - uid: 10729 - components: - - type: Transform - pos: 40.5,41.5 - parent: 2 - uid: 10730 components: - type: Transform @@ -35458,31 +37300,6 @@ entities: - type: Transform pos: 69.5,-18.5 parent: 2 - - uid: 10769 - components: - - type: Transform - pos: 67.5,46.5 - parent: 2 - - uid: 10770 - components: - - type: Transform - pos: 49.5,47.5 - parent: 2 - - uid: 10771 - components: - - type: Transform - pos: 63.5,47.5 - parent: 2 - - uid: 10772 - components: - - type: Transform - pos: 29.5,32.5 - parent: 2 - - uid: 10773 - components: - - type: Transform - pos: 30.5,32.5 - parent: 2 - uid: 10774 components: - type: Transform @@ -35558,6 +37375,16 @@ entities: - type: Transform pos: 81.5,6.5 parent: 2 + - uid: 10870 + components: + - type: Transform + pos: 50.5,11.5 + parent: 2 + - uid: 10890 + components: + - type: Transform + pos: 52.5,17.5 + parent: 2 - uid: 10960 components: - type: Transform @@ -35614,16 +37441,147 @@ entities: - type: Transform pos: 26.5,-52.5 parent: 2 + - uid: 11672 + components: + - type: Transform + pos: 49.5,27.5 + parent: 2 + - uid: 11696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,47.5 + parent: 2 + - uid: 11733 + components: + - type: Transform + pos: 50.5,27.5 + parent: 2 + - uid: 11734 + components: + - type: Transform + pos: 51.5,27.5 + parent: 2 + - uid: 11735 + components: + - type: Transform + pos: 52.5,27.5 + parent: 2 + - uid: 11737 + components: + - type: Transform + pos: 54.5,27.5 + parent: 2 - uid: 11755 components: - type: Transform pos: 46.5,-28.5 parent: 2 + - uid: 11827 + components: + - type: Transform + pos: 55.5,27.5 + parent: 2 + - uid: 11860 + components: + - type: Transform + pos: 56.5,27.5 + parent: 2 + - uid: 11861 + components: + - type: Transform + pos: 58.5,29.5 + parent: 2 + - uid: 11866 + components: + - type: Transform + pos: 59.5,29.5 + parent: 2 - uid: 11883 components: - type: Transform pos: 74.5,20.5 parent: 2 + - uid: 11884 + components: + - type: Transform + pos: 60.5,30.5 + parent: 2 + - uid: 11940 + components: + - type: Transform + pos: 60.5,32.5 + parent: 2 + - uid: 11941 + components: + - type: Transform + pos: 60.5,31.5 + parent: 2 + - uid: 11942 + components: + - type: Transform + pos: 60.5,33.5 + parent: 2 + - uid: 12085 + components: + - type: Transform + pos: 66.5,36.5 + parent: 2 + - uid: 12089 + components: + - type: Transform + pos: 66.5,37.5 + parent: 2 + - uid: 12091 + components: + - type: Transform + pos: 66.5,39.5 + parent: 2 + - uid: 12102 + components: + - type: Transform + pos: 66.5,40.5 + parent: 2 + - uid: 12142 + components: + - type: Transform + pos: 66.5,41.5 + parent: 2 + - uid: 12143 + components: + - type: Transform + pos: 66.5,28.5 + parent: 2 + - uid: 12144 + components: + - type: Transform + pos: 66.5,43.5 + parent: 2 + - uid: 12179 + components: + - type: Transform + pos: 62.5,45.5 + parent: 2 + - uid: 12181 + components: + - type: Transform + pos: 62.5,46.5 + parent: 2 + - uid: 12233 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 2 + - uid: 12270 + components: + - type: Transform + pos: 65.5,44.5 + parent: 2 + - uid: 12280 + components: + - type: Transform + pos: 64.5,44.5 + parent: 2 - uid: 12308 components: - type: Transform @@ -35684,21 +37642,6 @@ entities: - type: Transform pos: 17.5,-8.5 parent: 2 - - uid: 12329 - components: - - type: Transform - pos: 16.5,-11.5 - parent: 2 - - uid: 12330 - components: - - type: Transform - pos: 15.5,-11.5 - parent: 2 - - uid: 12331 - components: - - type: Transform - pos: 14.5,-11.5 - parent: 2 - uid: 12332 components: - type: Transform @@ -35779,6 +37722,11 @@ entities: - type: Transform pos: 1.5,-3.5 parent: 2 + - uid: 12373 + components: + - type: Transform + pos: 66.5,27.5 + parent: 2 - uid: 12397 components: - type: Transform @@ -35814,10 +37762,15 @@ entities: - type: Transform pos: 42.5,-18.5 parent: 2 - - uid: 12741 + - uid: 12431 components: - type: Transform - pos: 47.5,26.5 + pos: 66.5,33.5 + parent: 2 + - uid: 12437 + components: + - type: Transform + pos: 66.5,32.5 parent: 2 - uid: 12844 components: @@ -36040,11 +37993,6 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-15.5 parent: 2 - - uid: 13284 - components: - - type: Transform - pos: 47.5,22.5 - parent: 2 - uid: 13324 components: - type: Transform @@ -36057,30 +38005,6 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-17.5 parent: 2 - - uid: 13326 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-1.5 - parent: 2 - - uid: 13327 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,0.5 - parent: 2 - - uid: 13328 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-22.5 - parent: 2 - - uid: 13329 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-20.5 - parent: 2 - uid: 13436 components: - type: Transform @@ -36111,35 +38035,10 @@ entities: - type: Transform pos: 46.5,-31.5 parent: 2 - - uid: 13599 + - uid: 13513 components: - type: Transform - pos: 45.5,28.5 - parent: 2 - - uid: 13600 - components: - - type: Transform - pos: 45.5,29.5 - parent: 2 - - uid: 13601 - components: - - type: Transform - pos: 45.5,31.5 - parent: 2 - - uid: 13602 - components: - - type: Transform - pos: 45.5,32.5 - parent: 2 - - uid: 13603 - components: - - type: Transform - pos: 45.5,30.5 - parent: 2 - - uid: 13728 - components: - - type: Transform - pos: 86.5,4.5 + pos: 59.5,47.5 parent: 2 - uid: 13749 components: @@ -36351,11 +38250,6 @@ entities: - type: Transform pos: 74.5,30.5 parent: 2 - - uid: 14256 - components: - - type: Transform - pos: 73.5,30.5 - parent: 2 - uid: 14257 components: - type: Transform @@ -36376,38 +38270,16 @@ entities: - type: Transform pos: 81.5,25.5 parent: 2 - - uid: 14329 - components: - - type: Transform - pos: 73.5,34.5 - parent: 2 - - uid: 14335 - components: - - type: Transform - pos: 73.5,26.5 - parent: 2 - uid: 14407 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,33.5 parent: 2 - - uid: 14599 + - uid: 14676 components: - type: Transform - pos: 64.5,44.5 - parent: 2 - - uid: 14646 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,50.5 - parent: 2 - - uid: 14647 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,50.5 + pos: 63.5,44.5 parent: 2 - uid: 14724 components: @@ -36415,50 +38287,15 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,38.5 parent: 2 - - uid: 14896 + - uid: 14741 components: - type: Transform - pos: 60.5,43.5 + pos: 50.5,10.5 parent: 2 - - uid: 14897 + - uid: 14838 components: - type: Transform - pos: 51.5,43.5 - parent: 2 - - uid: 14898 - components: - - type: Transform - pos: 52.5,43.5 - parent: 2 - - uid: 14899 - components: - - type: Transform - pos: 60.5,42.5 - parent: 2 - - uid: 14900 - components: - - type: Transform - pos: 61.5,42.5 - parent: 2 - - uid: 14901 - components: - - type: Transform - pos: 62.5,42.5 - parent: 2 - - uid: 14902 - components: - - type: Transform - pos: 63.5,42.5 - parent: 2 - - uid: 14903 - components: - - type: Transform - pos: 64.5,42.5 - parent: 2 - - uid: 14904 - components: - - type: Transform - pos: 61.5,36.5 + pos: 41.5,46.5 parent: 2 - uid: 14916 components: @@ -36802,18 +38639,6 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,-46.5 parent: 2 - - uid: 15156 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-14.5 - parent: 2 - - uid: 15157 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-14.5 - parent: 2 - uid: 15158 components: - type: Transform @@ -36961,15 +38786,52 @@ entities: rot: 1.5707963267948966 rad pos: 26.5,-39.5 parent: 2 + - uid: 15414 + components: + - type: Transform + pos: 62.5,19.5 + parent: 2 - uid: 15447 components: - type: Transform pos: 32.5,-22.5 parent: 2 - - uid: 15455 + - uid: 15469 components: - type: Transform - pos: 40.5,44.5 + rot: -1.5707963267948966 rad + pos: 49.5,46.5 + parent: 2 + - uid: 15626 + components: + - type: Transform + pos: 62.5,20.5 + parent: 2 + - uid: 15630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,47.5 + parent: 2 + - uid: 15740 + components: + - type: Transform + pos: -4.5,-30.5 + parent: 2 + - uid: 15757 + components: + - type: Transform + pos: -12.5,-30.5 + parent: 2 + - uid: 15759 + components: + - type: Transform + pos: -4.5,-40.5 + parent: 2 + - uid: 15760 + components: + - type: Transform + pos: -12.5,-40.5 parent: 2 - proto: Cautery entities: @@ -37117,21 +38979,27 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,8.5 parent: 2 - - uid: 2328 + - uid: 2237 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,22.5 + rot: 1.5707963267948966 rad + pos: 50.5,30.5 + parent: 2 + - uid: 2286 + components: + - type: Transform + pos: 57.5,33.5 parent: 2 - uid: 2566 components: - type: Transform pos: 29.5,-2.5 parent: 2 - - uid: 3234 + - uid: 3359 components: - type: Transform - pos: 40.5,36.5 + rot: -1.5707963267948966 rad + pos: 62.5,50.5 parent: 2 - uid: 5089 components: @@ -37164,6 +39032,18 @@ entities: - type: Transform pos: 55.5,-9.5 parent: 2 + - uid: 5327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,11.5 + parent: 2 + - uid: 5403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,30.5 + parent: 2 - uid: 5406 components: - type: Transform @@ -37181,6 +39061,12 @@ entities: rot: 1.5707963267948966 rad pos: 89.5,1.5 parent: 2 + - uid: 5765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,31.5 + parent: 2 - uid: 5848 components: - type: Transform @@ -37193,6 +39079,29 @@ entities: rot: 1.5707963267948966 rad pos: 45.5,17.5 parent: 2 + - uid: 6312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,44.5 + parent: 2 + - uid: 6319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,50.5 + parent: 2 + - uid: 6340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,50.5 + parent: 2 + - uid: 6888 + components: + - type: Transform + pos: 49.5,33.5 + parent: 2 - uid: 7535 components: - type: Transform @@ -37288,31 +39197,54 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,5.5 parent: 2 + - uid: 8533 + components: + - type: Transform + pos: 62.5,39.5 + parent: 2 - uid: 9361 components: - type: Transform pos: 25.5,7.5 parent: 2 + - uid: 9435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,46.5 + parent: 2 + - uid: 9446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,44.5 + parent: 2 - uid: 9642 components: - type: Transform pos: 78.5,5.5 parent: 2 + - uid: 10398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,16.5 + parent: 2 + - uid: 10544 + components: + - type: Transform + pos: 34.5,18.5 + parent: 2 - uid: 10637 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,7.5 parent: 2 - - uid: 10829 + - uid: 10888 components: - type: Transform - pos: 71.5,11.5 - parent: 2 - - uid: 10830 - components: - - type: Transform - pos: 69.5,11.5 + pos: 53.5,15.5 parent: 2 - uid: 10896 components: @@ -37326,59 +39258,11 @@ entities: rot: 3.141592653589793 rad pos: 63.5,13.5 parent: 2 - - uid: 12144 + - uid: 12082 components: - type: Transform rot: 3.141592653589793 rad - pos: 40.5,34.5 - parent: 2 - - uid: 12177 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,9.5 - parent: 2 - - uid: 12178 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,9.5 - parent: 2 - - uid: 12179 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,8.5 - parent: 2 - - uid: 12180 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,8.5 - parent: 2 - - uid: 12181 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,5.5 - parent: 2 - - uid: 12182 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,5.5 - parent: 2 - - uid: 12183 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,6.5 - parent: 2 - - uid: 12184 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,6.5 + pos: 37.5,21.5 parent: 2 - uid: 12427 components: @@ -37398,30 +39282,6 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,-13.5 parent: 2 - - uid: 13285 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,47.5 - parent: 2 - - uid: 13286 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,47.5 - parent: 2 - - uid: 13287 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,47.5 - parent: 2 - - uid: 13288 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,47.5 - parent: 2 - uid: 14076 components: - type: Transform @@ -37434,17 +39294,6 @@ entities: rot: 1.5707963267948966 rad pos: -18.5,0.5 parent: 2 - - uid: 14587 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,17.5 - parent: 2 - - uid: 14633 - components: - - type: Transform - pos: 30.5,21.5 - parent: 2 - uid: 14679 components: - type: Transform @@ -37464,6 +39313,16 @@ entities: - type: Transform pos: 34.514446,-20.35144 parent: 2 + - uid: 3412 + components: + - type: Transform + pos: 55.60609,28.7576 + parent: 2 + - uid: 5326 + components: + - type: Transform + pos: 53.074486,44.676968 + parent: 2 - proto: ChairMeat entities: - uid: 13071 @@ -37473,6 +39332,11 @@ entities: parent: 2 - proto: ChairOfficeDark entities: + - uid: 76 + components: + - type: Transform + pos: 55.011047,38.559963 + parent: 2 - uid: 190 components: - type: Transform @@ -37518,28 +39382,28 @@ entities: rot: 1.5707963267948966 rad pos: 22.517172,-24.347618 parent: 2 + - uid: 1153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.367496,26.101822 + parent: 2 + - uid: 1230 + components: + - type: Transform + pos: 49.02176,42.545933 + parent: 2 - uid: 1852 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,22.5 parent: 2 - - uid: 2318 + - uid: 2242 components: - type: Transform - pos: 37.5,18.5 - parent: 2 - - uid: 2480 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,19.5 - parent: 2 - - uid: 2489 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,27.5 + rot: -1.5707963267948966 rad + pos: 29.477934,30.77342 parent: 2 - uid: 2632 components: @@ -37547,11 +39411,6 @@ entities: rot: 3.141592653589793 rad pos: 47.5,11.5 parent: 2 - - uid: 2678 - components: - - type: Transform - pos: 62.5,9.5 - parent: 2 - uid: 2724 components: - type: Transform @@ -37606,11 +39465,10 @@ entities: rot: 3.141592653589793 rad pos: 55.5,-11.5 parent: 2 - - uid: 5321 + - uid: 5332 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,18.5 + pos: 38.50812,25.570572 parent: 2 - uid: 5389 components: @@ -37618,6 +39476,12 @@ entities: rot: 3.141592653589793 rad pos: 50.5,10.5 parent: 2 + - uid: 5465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.586388,25.604963 + parent: 2 - uid: 5742 components: - type: Transform @@ -37642,11 +39506,17 @@ entities: rot: 3.141592653589793 rad pos: 18.517927,23.649218 parent: 2 - - uid: 8608 + - uid: 8521 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.500034,25.750826 + pos: 54.979797,36.88809 + parent: 2 + - uid: 8580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.037384,40.639683 parent: 2 - uid: 8658 components: @@ -37659,6 +39529,18 @@ entities: rot: 3.141592653589793 rad pos: 7.5,18.5 parent: 2 + - uid: 10306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.36085,38.162395 + parent: 2 + - uid: 10835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.791836,18.125435 + parent: 2 - uid: 10912 components: - type: Transform @@ -37687,12 +39569,41 @@ entities: rot: 3.141592653589793 rad pos: 89.5,31.5 parent: 2 + - uid: 14642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.3234,32.735664 + parent: 2 + - uid: 14647 + components: + - type: Transform + pos: 70.52653,31.579414 + parent: 2 - uid: 15448 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-23.5 parent: 2 + - uid: 15615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.487736,11.401679 + parent: 2 + - uid: 15621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.50836,10.678778 + parent: 2 + - uid: 15649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.62344,50.569798 + parent: 2 - proto: ChairOfficeLight entities: - uid: 940 @@ -37719,6 +39630,12 @@ entities: rot: 1.5707963267948966 rad pos: 81.5,-6.5 parent: 2 + - uid: 7008 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.517727,24.605852 + parent: 2 - uid: 7075 components: - type: Transform @@ -37729,12 +39646,6 @@ entities: - type: Transform pos: 71.5,-19.495005 parent: 2 - - uid: 8664 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,24.5 - parent: 2 - uid: 10901 components: - type: Transform @@ -37746,6 +39657,17 @@ entities: rot: 1.5707963267948966 rad pos: 61.5,-11.5 parent: 2 + - uid: 11685 + components: + - type: Transform + pos: 33.03796,42.691933 + parent: 2 + - uid: 13585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.00671,40.63985 + parent: 2 - proto: ChairPilotSeat entities: - uid: 4971 @@ -37804,12 +39726,6 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,29.5 parent: 2 - - uid: 3418 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,27.5 - parent: 2 - uid: 5365 components: - type: Transform @@ -37822,23 +39738,6 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,32.5 parent: 2 - - uid: 5502 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.50498,33.5 - parent: 2 - - uid: 5503 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.49502,33.5 - parent: 2 - - uid: 5504 - components: - - type: Transform - pos: 70.5,34.495007 - parent: 2 - uid: 6477 components: - type: Transform @@ -37863,12 +39762,6 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,-41.5 parent: 2 - - uid: 8440 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,29.5 - parent: 2 - uid: 8644 components: - type: Transform @@ -37896,11 +39789,23 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,33.5 parent: 2 - - uid: 14091 + - uid: 15454 components: - type: Transform rot: -1.5707963267948966 rad - pos: 71.5,27.5 + pos: 24.406488,32.46587 + parent: 2 + - uid: 15455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.406488,33.450245 + parent: 2 + - uid: 15456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.375238,30.481497 parent: 2 - proto: CheapLighter entities: @@ -37909,10 +39814,11 @@ entities: - type: Transform pos: 37.66267,-3.4032297 parent: 2 - - uid: 7717 + - uid: 15678 components: - type: Transform - pos: 43.77102,20.318724 + rot: 1.5707963267948966 rad + pos: 58.62216,47.50274 parent: 2 - proto: CheapRollerBed entities: @@ -38100,13 +40006,26 @@ entities: - type: Transform pos: 38.63205,-29.435232 parent: 2 -- proto: CigarGold +- proto: CigaretteSpent entities: - - uid: 7936 + - uid: 1763 components: - type: Transform - pos: 43.474144,20.053099 + rot: -1.5707963267948966 rad + pos: 62.517895,19.508009 parent: 2 + - uid: 6915 + components: + - type: Transform + pos: 62.13248,19.185093 + parent: 2 + - uid: 12879 + components: + - type: Transform + pos: 62.340813,19.362177 + parent: 2 +- proto: CigarGold + entities: - uid: 12104 components: - type: Transform @@ -38146,20 +40065,29 @@ entities: - uid: 9307 components: - type: Transform - pos: 69.531136,11.469878 + rot: 6.283185307179586 rad + pos: 70.68867,11.580943 + parent: 2 +- proto: CigPackRed + entities: + - uid: 15656 + components: + - type: Transform + pos: 58.35046,47.80946 parent: 2 - proto: CircuitImprinter entities: - - uid: 12155 + - uid: 15566 components: - type: Transform - pos: 53.5,17.5 + pos: 53.5,20.5 parent: 2 - - type: MaterialStorage - materialWhiteList: - - Steel - - Glass - - Gold + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - proto: CleanerDispenser entities: - uid: 6875 @@ -38170,18 +40098,33 @@ entities: parent: 2 - proto: ClosetBombFilled entities: - - uid: 2261 + - uid: 15521 components: - type: Transform - pos: 36.5,21.5 + pos: 62.5,22.5 parent: 2 - - uid: 12854 + - uid: 15530 components: - type: Transform - pos: 55.5,25.5 + pos: 47.5,36.5 parent: 2 +- proto: ClosetChefFilled + entities: + - uid: 8431 + components: + - type: Transform + anchored: True + pos: 32.5,17.5 + parent: 2 + - type: Physics + bodyType: Static - proto: ClosetEmergencyFilledRandom entities: + - uid: 829 + components: + - type: Transform + pos: 88.5,5.5 + parent: 2 - uid: 1480 components: - type: Transform @@ -38192,6 +40135,11 @@ entities: - type: Transform pos: 72.5,-10.5 parent: 2 + - uid: 3136 + components: + - type: Transform + pos: 65.5,47.5 + parent: 2 - uid: 3328 components: - type: Transform @@ -38202,11 +40150,6 @@ entities: - type: Transform pos: 52.5,-20.5 parent: 2 - - uid: 5261 - components: - - type: Transform - pos: 49.5,13.5 - parent: 2 - uid: 5438 components: - type: Transform @@ -38232,31 +40175,21 @@ entities: - type: Transform pos: 3.5,5.5 parent: 2 - - uid: 8983 + - uid: 12198 components: - type: Transform - pos: 67.5,29.5 - parent: 2 - - uid: 10837 - components: - - type: Transform - pos: 66.5,6.5 - parent: 2 - - uid: 10839 - components: - - type: Transform - pos: 43.5,46.5 - parent: 2 - - uid: 12478 - components: - - type: Transform - pos: 56.5,47.5 + pos: 68.5,11.5 parent: 2 - uid: 13145 components: - type: Transform pos: -13.5,0.5 parent: 2 + - uid: 13518 + components: + - type: Transform + pos: 31.5,33.5 + parent: 2 - uid: 13708 components: - type: Transform @@ -38267,17 +40200,17 @@ entities: - type: Transform pos: 71.5,21.5 parent: 2 + - uid: 14942 + components: + - type: Transform + pos: 75.5,-19.5 + parent: 2 - proto: ClosetEmergencyN2FilledRandom entities: - - uid: 2173 + - uid: 2066 components: - type: Transform - pos: 47.5,28.5 - parent: 2 - - uid: 2195 - components: - - type: Transform - pos: 66.5,11.5 + pos: 75.5,-18.5 parent: 2 - uid: 2681 components: @@ -38294,11 +40227,31 @@ entities: - type: Transform pos: -9.5,0.5 parent: 2 + - uid: 8233 + components: + - type: Transform + pos: 67.5,11.5 + parent: 2 + - uid: 9242 + components: + - type: Transform + pos: 65.5,46.5 + parent: 2 - uid: 12382 components: - type: Transform pos: 5.5,-31.5 parent: 2 + - uid: 12726 + components: + - type: Transform + pos: 32.5,33.5 + parent: 2 + - uid: 15790 + components: + - type: Transform + pos: 87.5,5.5 + parent: 2 - proto: ClosetFireFilled entities: - uid: 99 @@ -38306,11 +40259,6 @@ entities: - type: Transform pos: -7.5,-14.5 parent: 2 - - uid: 5260 - components: - - type: Transform - pos: 50.5,13.5 - parent: 2 - uid: 5902 components: - type: Transform @@ -38321,26 +40269,36 @@ entities: - type: Transform pos: 3.5,9.5 parent: 2 - - uid: 10841 + - uid: 9623 components: - type: Transform - pos: 39.5,42.5 + pos: 59.5,32.5 parent: 2 - uid: 12803 components: - type: Transform pos: -5.5,0.5 parent: 2 - - uid: 12858 - components: - - type: Transform - pos: 64.5,20.5 - parent: 2 - uid: 15441 components: - type: Transform pos: 35.5,-20.5 parent: 2 + - uid: 15515 + components: + - type: Transform + pos: 5.5,-29.5 + parent: 2 + - uid: 15518 + components: + - type: Transform + pos: 59.5,22.5 + parent: 2 + - uid: 15698 + components: + - type: Transform + pos: 45.5,45.5 + parent: 2 - proto: ClosetJanitorFilled entities: - uid: 166 @@ -38355,6 +40313,40 @@ entities: - type: Transform pos: 3.5,-4.5 parent: 2 +- proto: ClosetL3ScienceFilled + entities: + - uid: 3043 + components: + - type: Transform + pos: 50.5,13.5 + parent: 2 + - uid: 3342 + components: + - type: Transform + pos: 49.5,15.5 + parent: 2 + - uid: 3433 + components: + - type: Transform + pos: 67.5,29.5 + parent: 2 + - uid: 13729 + components: + - type: Transform + pos: 67.5,28.5 + parent: 2 + - uid: 15502 + components: + - type: Transform + pos: 60.5,22.5 + parent: 2 +- proto: ClosetL3SecurityFilled + entities: + - uid: 10724 + components: + - type: Transform + pos: 47.5,35.5 + parent: 2 - proto: ClosetL3VirologyFilled entities: - uid: 5213 @@ -38379,13 +40371,6 @@ entities: - type: Transform pos: 17.5,29.5 parent: 2 -- proto: ClosetMaintenance - entities: - - uid: 10835 - components: - - type: Transform - pos: 65.5,10.5 - parent: 2 - proto: ClosetMaintenanceFilledRandom entities: - uid: 1477 @@ -38393,11 +40378,34 @@ entities: - type: Transform pos: 36.5,-20.5 parent: 2 - - uid: 3501 + - uid: 2269 components: - type: Transform - pos: 37.5,36.5 + pos: 61.5,45.5 parent: 2 + - uid: 3444 + components: + - type: Transform + pos: 49.5,26.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 - uid: 3854 components: - type: Transform @@ -38408,136 +40416,119 @@ entities: - type: Transform pos: 9.5,-19.5 parent: 2 + - uid: 5485 + components: + - type: Transform + pos: 64.5,41.5 + parent: 2 + - uid: 7716 + components: + - type: Transform + pos: 69.5,40.5 + parent: 2 + - uid: 7945 + components: + - type: Transform + pos: 53.5,40.5 + parent: 2 - uid: 8342 components: - type: Transform pos: 23.5,6.5 parent: 2 - - uid: 10836 + - uid: 8461 components: - type: Transform - pos: 65.5,9.5 + pos: 64.5,8.5 + parent: 2 + - uid: 9234 + components: + - type: Transform + pos: 59.5,33.5 + parent: 2 + - uid: 12432 + components: + - type: Transform + pos: 64.5,20.5 + parent: 2 + - uid: 13692 + components: + - type: Transform + pos: 67.5,31.5 parent: 2 - uid: 13969 components: - type: Transform pos: -11.5,-23.5 parent: 2 - - uid: 14650 + - uid: 15683 components: - type: Transform - pos: 67.5,31.5 + pos: 35.5,39.5 + parent: 2 + - uid: 15696 + components: + - type: Transform + pos: 44.5,45.5 parent: 2 - proto: ClosetRadiationSuitFilled entities: - - uid: 3687 - components: - - type: Transform - pos: 51.5,13.5 - parent: 2 - uid: 4310 components: - type: Transform pos: 19.5,-34.5 parent: 2 + - uid: 9144 + components: + - type: Transform + pos: 47.5,34.5 + parent: 2 - uid: 10906 components: - type: Transform pos: 20.5,-34.5 parent: 2 - - uid: 12853 + - uid: 11658 components: - type: Transform - pos: 54.5,25.5 + pos: 51.5,13.5 parent: 2 -- proto: ClosetSteelBase - entities: - - uid: 5460 + - uid: 15501 components: - type: Transform - pos: 69.5,40.5 + pos: 61.5,22.5 parent: 2 - - uid: 5461 + - uid: 15567 components: - type: Transform - pos: 69.5,37.5 + pos: 49.5,13.5 parent: 2 - proto: ClosetToolFilled entities: - - uid: 5649 + - uid: 8593 components: - type: Transform - pos: 49.5,46.5 + pos: 64.5,36.5 parent: 2 - uid: 14734 components: - type: Transform pos: 9.5,15.5 parent: 2 -- proto: ClosetWallOrange +- proto: ClosetWallEmergencyFilledRandom entities: - - uid: 13620 + - uid: 6118 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,37.5 + pos: 59.5,28.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: - - 13621 - - uid: 13753 +- proto: ClosetWallEmergencyN2FilledRandom + entities: + - uid: 10396 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,35.5 + pos: 60.5,28.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: - - 14550 - proto: ClothingBackpackClown entities: - uid: 9611 @@ -38592,7 +40583,7 @@ entities: - uid: 6421 components: - type: Transform - pos: 56.63094,-14.915291 + pos: 54.47244,-15.513644 parent: 2 - uid: 12219 components: @@ -38606,16 +40597,6 @@ entities: - type: Transform pos: 45.51781,-19.598537 parent: 2 - - uid: 6793 - components: - - type: Transform - pos: 53.3757,25.459305 - parent: 2 - - uid: 10291 - components: - - type: Transform - pos: 53.3757,25.646805 - parent: 2 - uid: 12167 components: - type: Transform @@ -38645,13 +40626,6 @@ entities: - type: Transform pos: 81.516914,11.673225 parent: 2 -- proto: ClothingEyesGlassesSunglasses - entities: - - uid: 5522 - components: - - type: Transform - pos: 86.49675,1.6024053 - parent: 2 - proto: ClothingEyesGlassesThermal entities: - uid: 12673 @@ -38666,6 +40640,16 @@ entities: - type: Transform pos: 17.140316,-23.554987 parent: 2 + - uid: 12579 + components: + - type: Transform + pos: 48.401104,11.708703 + parent: 2 + - uid: 14681 + components: + - type: Transform + pos: 48.57298,11.521203 + parent: 2 - proto: ClothingEyesHudMedical entities: - uid: 11422 @@ -38706,19 +40690,33 @@ entities: - type: Transform pos: 50.47578,-20.56524 parent: 2 -- proto: ClothingHeadHatAnimalCat +- proto: ClothingHeadHatBeret entities: - - uid: 12652 + - uid: 15895 components: - type: Transform - pos: 69.48217,34.466385 + pos: 45.45172,7.652416 parent: 2 -- proto: ClothingHeadHatAnimalCatBrown +- proto: ClothingHeadHatBeretHoS entities: - - uid: 8933 + - uid: 13530 components: - type: Transform - pos: 62.47656,19.694616 + pos: 49.516834,41.650898 + parent: 2 +- proto: ClothingHeadHatBeretRND + entities: + - uid: 8266 + components: + - type: Transform + pos: 51.615715,26.772182 + parent: 2 +- proto: ClothingHeadHatBeretWarden + entities: + - uid: 15817 + components: + - type: Transform + pos: 40.178272,27.519924 parent: 2 - proto: ClothingHeadHatBunny entities: @@ -38727,6 +40725,20 @@ entities: - type: Transform pos: 58.54981,-24.623142 parent: 2 +- proto: ClothingHeadHatChef + entities: + - uid: 5386 + components: + - type: Transform + pos: 52.389153,40.87982 + parent: 2 +- proto: ClothingHeadHatFedoraBrown + entities: + - uid: 8392 + components: + - type: Transform + pos: 69.3921,38.27177 + parent: 2 - proto: ClothingHeadHatFedoraGrey entities: - uid: 7557 @@ -38756,6 +40768,25 @@ entities: - type: Transform pos: 80.534454,-16.347055 parent: 2 + - uid: 11032 + components: + - type: Transform + pos: 62.767895,19.108147 + parent: 2 + - type: HandheldLight + toggleActionEntity: 11094 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 11094 + - type: ActionsContainer - proto: ClothingHeadHatHardhatRed entities: - uid: 5719 @@ -38790,13 +40821,6 @@ entities: - type: Transform pos: 7.4825606,-11.600726 parent: 2 -- proto: ClothingHeadHatSquid - entities: - - uid: 12671 - components: - - type: Transform - pos: 65.725685,11.307603 - parent: 2 - proto: ClothingHeadHatTophat entities: - uid: 2920 @@ -38823,13 +40847,6 @@ entities: - type: Transform pos: 74.46565,-6.1472054 parent: 2 -- proto: ClothingHeadHatWelding - entities: - - uid: 5377 - components: - - type: Transform - pos: 52.381424,11.673619 - parent: 2 - proto: ClothingHeadHatWitch1 entities: - uid: 6827 @@ -38837,18 +40854,52 @@ entities: - type: Transform pos: 83.46587,-12.720913 parent: 2 +- proto: ClothingHeadHelmetBasic + entities: + - uid: 9835 + components: + - type: Transform + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9885 + components: + - type: Transform + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 13483 + components: + - type: Transform + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 13634 + components: + - type: Transform + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingHeadHelmetRiot entities: - - uid: 6197 + - uid: 15480 components: - type: Transform - pos: 38.899494,28.859161 - parent: 2 - - uid: 8427 + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15574 components: - type: Transform - pos: 38.88387,28.616974 - parent: 2 + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingHeadNurseHat entities: - uid: 12672 @@ -38856,13 +40907,6 @@ entities: - type: Transform pos: 59.51385,-3.3579187 parent: 2 -- proto: ClothingHeadsetMining - entities: - - uid: 2134 - components: - - type: Transform - pos: 5.5,31.5 - parent: 2 - proto: ClothingMaskBear entities: - uid: 8828 @@ -38903,11 +40947,6 @@ entities: - type: Transform pos: 27.626308,-29.560211 parent: 2 - - uid: 5343 - components: - - type: Transform - pos: 53.65695,25.740555 - parent: 2 - uid: 10799 components: - type: Transform @@ -38979,6 +41018,11 @@ entities: parent: 2 - proto: ClothingNeckStethoscope entities: + - uid: 3447 + components: + - type: Transform + pos: 66.53242,6.502817 + parent: 2 - uid: 5193 components: - type: Transform @@ -39008,76 +41052,54 @@ entities: - type: Transform pos: 17.68529,8.556451 parent: 2 -- proto: ClothingOuterArmorBasic - entities: - - uid: 8415 - components: - - type: Transform - pos: 39.219807,28.632599 - parent: 2 - - uid: 12089 - components: - - type: Transform - pos: 39.243244,28.859161 - parent: 2 - - uid: 13560 - components: - - type: Transform - pos: 39.22762,28.741974 - parent: 2 - proto: ClothingOuterArmorBulletproof entities: - - uid: 8421 + - uid: 15442 components: - type: Transform - pos: 38.305744,28.874786 - parent: 2 - - uid: 15460 + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15459 components: - type: Transform - pos: 38.282307,28.593536 - parent: 2 + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterArmorReflective + entities: + - uid: 15799 + components: + - type: Transform + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15800 + components: + - type: Transform + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingOuterArmorRiot entities: - - uid: 8414 + - uid: 15575 components: - type: Transform - pos: 38.57137,28.679474 - parent: 2 - - uid: 8424 + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15634 components: - type: Transform - pos: 38.618244,28.835724 - parent: 2 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: This decreases your speed by [color=yellow]10%[/color]. - priority: 0 - component: ClothingSpeedModifier - - message: >- - It provides the following protection: - - - [color=yellow]Blunt[/color] damage reduced by [color=lightblue]60%[/color]. - - - [color=yellow]Slash[/color] damage reduced by [color=lightblue]60%[/color]. - - - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]30%[/color]. - - - [color=yellow]Heat[/color] damage reduced by [color=lightblue]10%[/color]. - - - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]10%[/color]. - - - [color=orange]Explosion[/color] damage reduced by [color=lightblue]10%[/color]. - priority: 0 - component: Armor - title: null + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingOuterCoatJensen entities: - uid: 7560 @@ -39099,13 +41121,51 @@ entities: - type: Transform pos: 89.47711,-12.560792 parent: 2 -- proto: ClothingOuterCoatRobo +- proto: ClothingOuterHardsuitSecurity entities: - - uid: 1847 + - uid: 12294 components: - type: Transform - pos: 52.52299,8.566419 - parent: 2 + parent: 3183 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: This decreases your speed by [color=yellow]25%[/color]. + priority: 0 + component: ClothingSpeedModifier + - message: >- + It provides the following protection: + + - [color=yellow]Blunt[/color] damage reduced by [color=lightblue]40%[/color]. + + - [color=yellow]Slash[/color] damage reduced by [color=lightblue]40%[/color]. + + - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]40%[/color]. + + - [color=yellow]Heat[/color] damage reduced by [color=lightblue]20%[/color]. + + - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]30%[/color]. + + - [color=orange]Explosion[/color] damage reduced by [color=lightblue]60%[/color]. + priority: 0 + component: Armor + title: null + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12765 + components: + - type: Transform + parent: 12746 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingOuterHospitalGown entities: - uid: 12499 @@ -39113,13 +41173,6 @@ entities: - type: Transform pos: 60.452034,-9.3230715 parent: 2 -- proto: ClothingOuterPonchoClassic - entities: - - uid: 14092 - components: - - type: Transform - pos: 70.51337,28.554468 - parent: 2 - proto: ClothingOuterSkub entities: - uid: 13075 @@ -39134,6 +41187,13 @@ entities: - type: Transform pos: 73.5,-12.5 parent: 2 +- proto: ClothingOuterVest + entities: + - uid: 15905 + components: + - type: Transform + pos: 36.3627,39.687344 + parent: 2 - proto: ClothingOuterVestHazard entities: - uid: 880 @@ -39146,24 +41206,36 @@ entities: - type: Transform pos: 11.523725,20.510695 parent: 2 -- proto: ClothingShoesBootsJack +- proto: ClothingOuterWinterRobo entities: - - uid: 3615 + - uid: 15896 components: - type: Transform - pos: 18.604328,5.443143 + pos: 45.671143,7.4380913 parent: 2 -- proto: ClothingShoesBootsMag +- proto: ClothingOuterWinterSci entities: - - uid: 10306 + - uid: 152 components: - type: Transform - pos: 8.40589,-8.309399 + pos: 51.50634,26.522182 parent: 2 - - uid: 10307 +- proto: ClothingShoesBootsMagSci + entities: + - uid: 3441 components: - type: Transform - pos: 8.56214,-8.481274 + pos: 8.394775,-8.212509 + parent: 2 + - uid: 3443 + components: + - type: Transform + pos: 8.582275,-8.415634 + parent: 2 + - uid: 8681 + components: + - type: Transform + pos: 8.37915,-8.650009 parent: 2 - proto: ClothingShoesFlippers entities: @@ -39185,24 +41257,13 @@ entities: - type: Transform pos: 74.43015,-5.8248997 parent: 2 -- proto: ClothingShoeSlippersDuck - entities: - - uid: 5405 - components: - - type: Transform - pos: 62.48992,19.519245 - parent: 2 - proto: ClothingShoesSlippers entities: - uid: 5470 components: - type: Transform - pos: 70.5,40.5 - parent: 2 - - uid: 5471 - components: - - type: Transform - pos: 70.5,37.5 + rot: 6.283185307179586 rad + pos: 70.94915,39.768127 parent: 2 - proto: ClothingUnderSocksBee entities: @@ -39252,6 +41313,13 @@ entities: - type: Transform pos: 76.476616,-13.28976 parent: 2 +- proto: ClothingUniformJumpsuitColorRed + entities: + - uid: 15906 + components: + - type: Transform + pos: 36.753326,39.531094 + parent: 2 - proto: ClothingUniformJumpsuitCossack entities: - uid: 8826 @@ -39346,11 +41414,6 @@ entities: rot: 3.141592653589793 rad pos: 34.5,3.5 parent: 2 - - uid: 2408 - components: - - type: Transform - pos: 44.5,24.5 - parent: 2 - uid: 2527 components: - type: Transform @@ -39393,23 +41456,6 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,39.5 parent: 2 - - uid: 5423 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,42.5 - parent: 2 - - uid: 5424 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,40.5 - parent: 2 - - uid: 5425 - components: - - type: Transform - pos: 33.5,43.5 - parent: 2 - uid: 10273 components: - type: Transform @@ -39434,12 +41480,18 @@ entities: rot: -1.5707963267948966 rad pos: 107.5,-13.5 parent: 2 + - uid: 15811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-10.5 + parent: 2 - proto: CommandmentCircuitBoard entities: - uid: 14286 components: - type: Transform - pos: 86.43288,28.403772 + pos: 84.51508,32.740486 parent: 2 - proto: CommsComputerCircuitboard entities: @@ -39469,14 +41521,16 @@ entities: parent: 2 - proto: ComputerAnalysisConsole entities: - - uid: 152 + - uid: 5410 components: - type: Transform - pos: 64.5,25.5 + pos: 62.5,25.5 parent: 2 + - type: AnalysisConsole + analyzerEntity: 5444 - type: DeviceLinkSource linkedPorts: - 8666: + 5444: - - ArtifactAnalyzerSender - ArtifactAnalyzerReceiver - proto: ComputerAtmosMonitoring @@ -39500,17 +41554,24 @@ entities: rot: -1.5707963267948966 rad pos: 62.5,-11.5 parent: 2 + - uid: 10473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,8.5 + parent: 2 - uid: 11401 components: - type: Transform rot: 3.141592653589793 rad pos: 66.5,-11.5 parent: 2 - - uid: 12110 +- proto: ComputerBroken + entities: + - uid: 9455 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,8.5 + pos: 72.5,33.5 parent: 2 - proto: ComputerCargoBounty entities: @@ -39521,23 +41582,23 @@ entities: parent: 2 - proto: ComputerCargoOrders entities: + - uid: 4319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,21.5 + parent: 2 - uid: 5285 components: - type: Transform pos: 20.5,23.5 parent: 2 - - uid: 7471 - components: - - type: Transform - pos: 7.5,19.5 - parent: 2 - proto: ComputerCargoOrdersEngineering entities: - - uid: 15480 + - uid: 2050 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-36.5 + pos: 20.5,-23.5 parent: 2 - proto: ComputerCargoOrdersMedical entities: @@ -39556,10 +41617,11 @@ entities: parent: 2 - proto: ComputerCargoOrdersSecurity entities: - - uid: 10290 + - uid: 5528 components: - type: Transform - pos: 35.5,28.5 + rot: 3.141592653589793 rad + pos: 39.5,24.5 parent: 2 - proto: ComputerCargoOrdersService entities: @@ -39584,17 +41646,17 @@ entities: parent: 2 - proto: ComputerCrewMonitoring entities: - - uid: 2468 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,17.5 - parent: 2 - uid: 7925 components: - type: Transform pos: 31.5,48.5 parent: 2 + - uid: 8475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,25.5 + parent: 2 - uid: 9617 components: - type: Transform @@ -39625,28 +41687,30 @@ entities: parent: 2 - proto: ComputerCriminalRecords entities: + - uid: 2222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,24.5 + parent: 2 + - uid: 2233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,39.5 + parent: 2 + - uid: 2336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,23.5 + parent: 2 - uid: 7981 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-5.5 parent: 2 - - uid: 8431 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,17.5 - parent: 2 - - uid: 12083 - components: - - type: Transform - pos: 29.5,26.5 - parent: 2 - - uid: 12090 - components: - - type: Transform - pos: 45.5,25.5 - parent: 2 - proto: ComputerFundingAllocation entities: - uid: 10270 @@ -39656,17 +41720,17 @@ entities: parent: 2 - proto: ComputerId entities: - - uid: 401 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,39.5 - parent: 2 - uid: 4988 components: - type: Transform pos: 26.5,48.5 parent: 2 + - uid: 7678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,39.5 + parent: 2 - uid: 10275 components: - type: Transform @@ -39712,11 +41776,11 @@ entities: rot: 1.5707963267948966 rad pos: 19.5,45.5 parent: 2 - - uid: 6898 + - uid: 12232 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,-13.5 + pos: 15.5,-12.5 parent: 2 - uid: 13433 components: @@ -39738,79 +41802,96 @@ entities: parent: 2 - proto: ComputerResearchAndDevelopment entities: - - uid: 5304 + - uid: 5375 + components: + - type: Transform + pos: 51.5,20.5 + parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices + - uid: 5376 components: - type: Transform rot: 3.141592653589793 rad - pos: 51.5,17.5 + pos: 49.5,8.5 parent: 2 - - uid: 5390 - components: - - type: Transform - pos: 49.5,11.5 - parent: 2 - - uid: 6474 - components: - - type: Transform - pos: 50.5,25.5 - parent: 2 - - uid: 10666 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices + - uid: 10387 components: - type: Transform rot: 3.141592653589793 rad - pos: 62.5,8.5 + pos: 51.5,23.5 parent: 2 + - uid: 15620 + components: + - type: Transform + pos: 64.5,11.5 + parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - proto: ComputerRoboticsControl entities: - - uid: 5652 + - uid: 5330 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,8.5 + rot: 1.5707963267948966 rad + pos: 60.5,11.5 parent: 2 - proto: ComputerSalvageExpedition entities: - - uid: 705 + - uid: 7885 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,30.5 + rot: 1.5707963267948966 rad + pos: 5.5,31.5 parent: 2 - proto: ComputerSalvageJobBoard entities: - - uid: 6796 + - uid: 7471 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,30.5 + rot: 1.5707963267948966 rad + pos: 5.5,32.5 parent: 2 - proto: ComputerShuttleCargo entities: + - uid: 3560 + components: + - type: Transform + pos: 7.5,19.5 + parent: 2 - uid: 7879 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,25.5 parent: 2 - - uid: 14770 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,21.5 - parent: 2 - proto: ComputerSolarControl entities: + - uid: 2126 + components: + - type: Transform + pos: 71.5,46.5 + parent: 2 - uid: 4305 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-36.5 parent: 2 - - uid: 5639 - components: - - type: Transform - pos: 70.5,46.5 - parent: 2 - uid: 11749 components: - type: Transform @@ -39818,11 +41899,11 @@ entities: parent: 2 - proto: ComputerStationRecords entities: - - uid: 2145 + - uid: 5966 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,17.5 + rot: 3.141592653589793 rad + pos: 37.5,24.5 parent: 2 - uid: 8315 components: @@ -39843,29 +41924,29 @@ entities: parent: 2 - proto: ComputerSurveillanceCameraMonitor entities: - - uid: 2469 + - uid: 183 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,17.5 + rot: 1.5707963267948966 rad + pos: 36.5,26.5 parent: 2 - uid: 8346 components: - type: Transform pos: 24.5,48.5 parent: 2 - - uid: 12082 + - uid: 15803 components: - type: Transform - pos: 30.5,26.5 + rot: 3.141592653589793 rad + pos: -0.5,-5.5 parent: 2 - proto: ComputerTelevision entities: - - uid: 8498 + - uid: 3276 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,18.5 + pos: 52.5,33.5 parent: 2 - proto: ContainmentFieldGenerator entities: @@ -39920,86 +42001,75 @@ entities: parent: 2 - proto: ConveyorBelt entities: + - uid: 258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,27.5 + parent: 2 + - uid: 320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,27.5 + parent: 2 - uid: 450 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,35.5 + rot: -1.5707963267948966 rad + pos: 3.5,27.5 parent: 2 - uid: 944 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,38.5 + pos: 7.5,36.5 parent: 2 - uid: 967 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,34.5 + pos: 7.5,37.5 parent: 2 - uid: 999 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,36.5 + pos: 7.5,38.5 parent: 2 - - uid: 2037 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,27.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 4 - - uid: 2040 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,23.5 - parent: 2 - - uid: 2041 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,27.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 4 - uid: 2042 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,27.5 + pos: 8.5,34.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 4 - uid: 2051 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,23.5 + pos: 6.5,27.5 parent: 2 - uid: 2064 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,27.5 + pos: 7.5,23.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 4 - - uid: 2066 + - uid: 4321 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,23.5 - parent: 2 - - uid: 2067 - components: - - type: Transform - rot: -1.5707963267948966 rad + rot: 1.5707963267948966 rad pos: 6.5,23.5 parent: 2 + - uid: 5467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,27.5 + parent: 2 + - uid: 5518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,23.5 + parent: 2 - uid: 5842 components: - type: Transform @@ -40063,38 +42133,59 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-26.5 parent: 2 - - uid: 8239 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,23.5 - parent: 2 - - uid: 12384 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,34.5 - parent: 2 - - uid: 13731 + - uid: 7972 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,27.5 + pos: 5.5,23.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 4 - - uid: 14660 + - uid: 8239 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,37.5 + rot: 1.5707963267948966 rad + pos: 3.5,23.5 parent: 2 + - uid: 8327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,34.5 + parent: 2 + - uid: 9342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,38.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 11473 + components: + - type: Transform + pos: 7.5,35.5 + parent: 2 + - uid: 13728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,34.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 15156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,38.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - proto: CorporateCircuitBoard entities: - uid: 14278 components: - type: Transform - pos: 84.53704,28.653946 + pos: 84.49589,28.755344 parent: 2 - proto: CowToolboxFilled entities: @@ -40105,10 +42196,10 @@ entities: parent: 2 - proto: CrateArtifactContainer entities: - - uid: 10439 + - uid: 5638 components: - type: Transform - pos: 62.5,22.5 + pos: 60.5,25.5 parent: 2 - proto: CrateCoffin entities: @@ -40117,6 +42208,16 @@ entities: - type: Transform pos: 38.5,3.5 parent: 2 +- proto: CrateContrabandStorageSecure + entities: + - uid: 14630 + components: + - type: Transform + anchored: True + pos: 43.5,36.5 + parent: 2 + - type: Physics + bodyType: Static - proto: CrateEmptySpawner entities: - uid: 8167 @@ -40153,33 +42254,46 @@ entities: - type: Transform pos: 28.5,-40.5 parent: 2 - - type: Pullable - prevFixedRotation: True -- proto: CrateEngineeringCableBulk - entities: - - uid: 782 - components: - - type: Transform - pos: 20.5,-23.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: [] - labelSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null + ents: + - 15330 + - 15329 + - 15328 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - type: Construction - containers: - - EntityStorageComponent - - entity_storage + - type: Pullable + prevFixedRotation: True +- proto: CrateEngineeringCableBulk + entities: + - uid: 3520 + components: + - type: Transform + pos: 11.5,-31.5 + parent: 2 - uid: 5526 components: - type: Transform @@ -40205,23 +42319,11 @@ entities: - entity_storage - proto: CrateEngineeringCableLV entities: - - uid: 2223 - components: - - type: Transform - pos: 49.5,28.5 - parent: 2 - uid: 12353 components: - type: Transform pos: 5.5,-8.5 parent: 2 -- proto: CrateEngineeringCableMV - entities: - - uid: 5686 - components: - - type: Transform - pos: 10.5,-31.5 - parent: 2 - proto: CrateEngineeringSecure entities: - uid: 5625 @@ -40262,6 +42364,13 @@ entities: showEnts: False occludes: True ent: null +- proto: CrateEngineeringSolar + entities: + - uid: 8466 + components: + - type: Transform + pos: 69.5,46.5 + parent: 2 - proto: CrateFilledSpawner entities: - uid: 6861 @@ -40289,11 +42398,6 @@ entities: - type: Transform pos: 11.5,30.5 parent: 2 - - uid: 11164 - components: - - type: Transform - pos: 13.5,31.5 - parent: 2 - uid: 14775 components: - type: Transform @@ -40380,17 +42484,10 @@ entities: parent: 2 - proto: CrateLockBoxScience entities: - - uid: 15487 + - uid: 12292 components: - type: Transform - pos: 58.5,8.5 - parent: 2 -- proto: CrateLockBoxSecurity - entities: - - uid: 15488 - components: - - type: Transform - pos: 32.5,19.5 + pos: 58.5,11.5 parent: 2 - proto: CrateLockBoxService entities: @@ -40406,16 +42503,18 @@ entities: parent: 2 - proto: CrateMaterialSteel entities: - - uid: 5687 - components: - - type: Transform - pos: 11.5,-31.5 - parent: 2 - uid: 13043 components: - type: Transform pos: 33.5,-52.5 parent: 2 +- proto: CrateMaterialTextiles + entities: + - uid: 4320 + components: + - type: Transform + pos: 13.5,31.5 + parent: 2 - proto: CrateMedicalSurgery entities: - uid: 5086 @@ -40453,16 +42552,21 @@ entities: parent: 2 - proto: CrateSecurityTrackingMindshieldImplants entities: - - uid: 8416 + - uid: 14832 components: - type: Transform anchored: True - pos: 41.5,28.5 + pos: 40.5,36.5 parent: 2 - type: Physics bodyType: Static - proto: CrateTrashCart entities: + - uid: 5514 + components: + - type: Transform + pos: 32.5,21.5 + parent: 2 - uid: 13122 components: - type: Transform @@ -40478,6 +42582,13 @@ entities: - type: Transform pos: 19.5,26.5 parent: 2 +- proto: CrateTrashCartFilled + entities: + - uid: 6230 + components: + - type: Transform + pos: 54.539806,50.545746 + parent: 2 - proto: CrateTrashCartJani entities: - uid: 12906 @@ -40502,11 +42613,6 @@ entities: - type: Transform pos: 30.486448,7.511799 parent: 2 - - uid: 13631 - components: - - type: Transform - pos: 55.5,31.5 - parent: 2 - proto: CrayonRainbow entities: - uid: 12700 @@ -40542,14 +42648,11 @@ entities: - 0 - proto: CrewMonitoringServer entities: - - uid: 8231 + - uid: 15498 components: - type: Transform - pos: 51.5,25.5 + pos: 15.5,-17.5 parent: 2 - - type: SingletonDeviceNetServer - active: False - available: False - proto: Crowbar entities: - uid: 686 @@ -40562,21 +42665,11 @@ entities: - type: Transform pos: 32.504723,-30.433409 parent: 2 - - uid: 5326 - components: - - type: Transform - pos: 55.436665,17.567713 - parent: 2 - uid: 5713 components: - type: Transform pos: 77.53034,-13.472758 parent: 2 - - uid: 8688 - components: - - type: Transform - pos: 32.5021,27.416605 - parent: 2 - uid: 11129 components: - type: Transform @@ -40584,30 +42677,37 @@ entities: parent: 2 - proto: CrowbarRed entities: - - uid: 2153 + - uid: 13431 components: - type: Transform - pos: 38.497105,19.578838 - parent: 2 + parent: 13141 + - type: Physics + canCollide: False - proto: CryogenicSleepUnit entities: - - uid: 3187 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,32.5 - parent: 2 - uid: 6934 components: - type: Transform pos: 22.5,17.5 parent: 2 + - uid: 12049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,17.5 + parent: 2 - uid: 13171 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,42.5 parent: 2 + - uid: 14869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,18.5 + parent: 2 - proto: CryogenicSleepUnitSpawner entities: - uid: 6935 @@ -40647,6 +42747,18 @@ entities: - type: Transform pos: 61.483326,-0.38000047 parent: 2 +- proto: CurtainsBlue + entities: + - uid: 379 + components: + - type: Transform + pos: 34.5,43.5 + parent: 2 + - uid: 2285 + components: + - type: Transform + pos: 34.5,42.5 + parent: 2 - proto: CurtainsOrangeOpen entities: - uid: 6924 @@ -40661,6 +42773,29 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,15.5 parent: 2 +- proto: CurtainsPurpleOpen + entities: + - uid: 10849 + components: + - type: Transform + pos: 62.5,8.5 + parent: 2 +- proto: CurtainsRedOpen + entities: + - uid: 3206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,43.5 + parent: 2 + - uid: 7583 + components: + - type: Transform + pos: 59.5,39.5 + parent: 2 + - type: Door + secondsUntilStateChange: -7927.499 + state: Closing - proto: d6Dice entities: - uid: 316 @@ -40669,22 +42804,6 @@ entities: rot: 3.141592653589793 rad pos: 11.493689,4.5440345 parent: 2 - - uid: 5505 - components: - - type: Transform - pos: 70.363464,33.795147 - parent: 2 - - uid: 5506 - components: - - type: Transform - pos: 70.69159,33.810772 - parent: 2 - - uid: 5517 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 70.50039,33.577915 - parent: 2 - proto: DefaultStationBeaconAICore entities: - uid: 14515 @@ -40701,17 +42820,10 @@ entities: parent: 2 - proto: DefaultStationBeaconAnomalyGenerator entities: - - uid: 12378 + - uid: 8139 components: - type: Transform - pos: 68.5,14.5 - parent: 2 -- proto: DefaultStationBeaconArmory - entities: - - uid: 12371 - components: - - type: Transform - pos: 40.5,27.5 + pos: 68.5,15.5 parent: 2 - proto: DefaultStationBeaconArrivals entities: @@ -40722,10 +42834,10 @@ entities: parent: 2 - proto: DefaultStationBeaconArtifactLab entities: - - uid: 12367 + - uid: 4362 components: - type: Transform - pos: 62.5,25.5 + pos: 61.5,25.5 parent: 2 - proto: DefaultStationBeaconAtmospherics entities: @@ -40755,13 +42867,6 @@ entities: - type: Transform pos: 26.5,45.5 parent: 2 -- proto: DefaultStationBeaconBrig - entities: - - uid: 12365 - components: - - type: Transform - pos: 32.5,23.5 - parent: 2 - proto: DefaultStationBeaconCaptainsQuarters entities: - uid: 12385 @@ -40834,10 +42939,10 @@ entities: parent: 2 - proto: DefaultStationBeaconDetectiveRoom entities: - - uid: 12851 + - uid: 5749 components: - type: Transform - pos: 42.5,18.5 + pos: 55.5,35.5 parent: 2 - proto: DefaultStationBeaconDisposals entities: @@ -40846,22 +42951,26 @@ entities: - type: Transform pos: 0.5,-30.5 parent: 2 -- proto: DefaultStationBeaconEscapePod +- proto: DefaultStationBeaconEscapePodE entities: - - uid: 13729 + - uid: 2949 components: - type: Transform - pos: 86.5,4.5 + pos: 88.5,4.5 parent: 2 - - uid: 14796 +- proto: DefaultStationBeaconEscapePodNE + entities: + - uid: 5391 components: - type: Transform - pos: 74.5,-18.5 + pos: 66.5,47.5 parent: 2 - - uid: 15454 +- proto: DefaultStationBeaconEscapePodSE + entities: + - uid: 3868 components: - type: Transform - pos: 40.5,44.5 + pos: 74.5,-19.5 parent: 2 - proto: DefaultStationBeaconEvac entities: @@ -40884,13 +42993,6 @@ entities: - type: Transform pos: 17.5,-4.5 parent: 2 -- proto: DefaultStationBeaconHOSRoom - entities: - - uid: 13132 - components: - - type: Transform - pos: 43.5,22.5 - parent: 2 - proto: DefaultStationBeaconJanitorsCloset entities: - uid: 13133 @@ -40926,13 +43028,6 @@ entities: - type: Transform pos: 70.5,-3.5 parent: 2 -- proto: DefaultStationBeaconPermaBrig - entities: - - uid: 13518 - components: - - type: Transform - pos: 56.5,36.5 - parent: 2 - proto: DefaultStationBeaconPowerBank entities: - uid: 13139 @@ -40949,10 +43044,10 @@ entities: parent: 2 - proto: DefaultStationBeaconRDRoom entities: - - uid: 13141 + - uid: 15625 components: - type: Transform - pos: 60.5,9.5 + pos: 62.5,11.5 parent: 2 - proto: DefaultStationBeaconRND entities: @@ -40963,10 +43058,10 @@ entities: parent: 2 - proto: DefaultStationBeaconRobotics entities: - - uid: 13169 + - uid: 3486 components: - type: Transform - pos: 51.5,10.5 + pos: 49.5,9.5 parent: 2 - proto: DefaultStationBeaconSalvage entities: @@ -40977,11 +43072,6 @@ entities: parent: 2 - proto: DefaultStationBeaconServerRoom entities: - - uid: 2288 - components: - - type: Transform - pos: 31.5,36.5 - parent: 2 - uid: 13172 components: - type: Transform @@ -40994,14 +43084,16 @@ entities: - type: Transform pos: 21.5,-38.5 parent: 2 -- proto: DefaultStationBeaconSolars +- proto: DefaultStationBeaconSolarsNE entities: - - uid: 13178 + - uid: 9624 components: - type: Transform pos: 70.5,45.5 parent: 2 - - uid: 13179 +- proto: DefaultStationBeaconSolarsSW + entities: + - uid: 12825 components: - type: Transform pos: 3.5,-35.5 @@ -41022,10 +43114,10 @@ entities: parent: 2 - proto: DefaultStationBeaconTelecoms entities: - - uid: 13173 + - uid: 5827 components: - type: Transform - pos: 15.5,-17.5 + pos: 15.5,-16.5 parent: 2 - proto: DefaultStationBeaconToolRoom entities: @@ -41041,13 +43133,6 @@ entities: - type: Transform pos: 18.5,41.5 parent: 2 -- proto: DefaultStationBeaconWardensOffice - entities: - - uid: 13177 - components: - - type: Transform - pos: 38.5,22.5 - parent: 2 - proto: Defibrillator entities: - uid: 11416 @@ -41057,6 +43142,12 @@ entities: parent: 2 - proto: DefibrillatorCabinetFilled entities: + - uid: 2283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,28.5 + parent: 2 - uid: 9627 components: - type: Transform @@ -41080,15 +43171,20 @@ entities: parent: 2 - proto: DeployableBarrier entities: - - uid: 8519 + - uid: 2208 components: - type: Transform - pos: 36.5,24.5 + pos: 32.5,31.5 parent: 2 - - uid: 9602 + - uid: 2223 components: - type: Transform - pos: 36.5,23.5 + pos: 33.5,31.5 + parent: 2 + - uid: 11000 + components: + - type: Transform + pos: 34.5,31.5 parent: 2 - proto: DeskBell entities: @@ -41114,20 +43210,20 @@ entities: - type: Transform pos: 82.5,-7.5 parent: 2 -- proto: DiseaseSwab - entities: - - uid: 13754 - components: - - type: Transform - pos: 56.618065,41.538536 - parent: 2 - - uid: 13755 - components: - - type: Transform - pos: 56.451397,41.674046 - parent: 2 - proto: DisposalBend entities: + - uid: 616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-21.5 + parent: 2 + - uid: 1219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-23.5 + parent: 2 - uid: 1228 components: - type: Transform @@ -41139,11 +43235,17 @@ entities: rot: 3.141592653589793 rad pos: 4.5,10.5 parent: 2 - - uid: 3251 + - uid: 3235 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,23.5 + pos: 54.5,11.5 + parent: 2 + - uid: 4568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,35.5 parent: 2 - uid: 5777 components: @@ -41174,18 +43276,6 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,-28.5 parent: 2 - - uid: 5820 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-21.5 - parent: 2 - - uid: 5821 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-23.5 - parent: 2 - uid: 5822 components: - type: Transform @@ -41216,6 +43306,12 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-30.5 parent: 2 + - uid: 6473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,18.5 + parent: 2 - uid: 7289 components: - type: Transform @@ -41309,47 +43405,23 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,13.5 parent: 2 + - uid: 8473 + components: + - type: Transform + pos: 28.5,44.5 + parent: 2 - uid: 8927 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-9.5 parent: 2 - - uid: 9401 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,42.5 - parent: 2 - - uid: 9402 - components: - - type: Transform - pos: 32.5,45.5 - parent: 2 - - uid: 9403 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,45.5 - parent: 2 - uid: 9432 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,35.5 parent: 2 - - uid: 9433 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,34.5 - parent: 2 - - uid: 9434 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,35.5 - parent: 2 - uid: 10255 components: - type: Transform @@ -41362,28 +43434,11 @@ entities: rot: 3.141592653589793 rad pos: 12.5,-3.5 parent: 2 - - uid: 10586 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,11.5 - parent: 2 - - uid: 10598 + - uid: 10543 components: - type: Transform rot: -1.5707963267948966 rad - pos: 58.5,14.5 - parent: 2 - - uid: 10599 - components: - - type: Transform - pos: 58.5,22.5 - parent: 2 - - uid: 10602 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,18.5 + pos: 33.5,28.5 parent: 2 - uid: 10622 components: @@ -41391,6 +43446,12 @@ entities: rot: 1.5707963267948966 rad pos: 41.5,14.5 parent: 2 + - uid: 10964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,30.5 + parent: 2 - uid: 11435 components: - type: Transform @@ -41442,23 +43503,30 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,23.5 parent: 2 - - uid: 13583 - components: - - type: Transform - pos: 33.5,31.5 - parent: 2 - uid: 14178 components: - type: Transform rot: -1.5707963267948966 rad pos: 79.5,23.5 parent: 2 + - uid: 14553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,14.5 + parent: 2 - uid: 15041 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,-6.5 parent: 2 + - uid: 15612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,30.5 + parent: 2 - proto: DisposalJunction entities: - uid: 2422 @@ -41503,22 +43571,6 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,0.5 parent: 2 - - uid: 9411 - components: - - type: Transform - pos: 28.5,44.5 - parent: 2 - - uid: 9435 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,34.5 - parent: 2 - - uid: 10600 - components: - - type: Transform - pos: 58.5,18.5 - parent: 2 - uid: 11456 components: - type: Transform @@ -41533,10 +43585,16 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,-0.5 parent: 2 - - uid: 5141 + - uid: 3669 components: - type: Transform - pos: 26.5,23.5 + rot: -1.5707963267948966 rad + pos: 54.5,14.5 + parent: 2 + - uid: 5102 + components: + - type: Transform + pos: 28.5,37.5 parent: 2 - uid: 5142 components: @@ -41544,6 +43602,23 @@ entities: rot: -1.5707963267948966 rad pos: 33.5,0.5 parent: 2 + - uid: 5473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,30.5 + parent: 2 + - uid: 5513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,13.5 + parent: 2 + - uid: 6285 + components: + - type: Transform + pos: 26.5,28.5 + parent: 2 - uid: 7290 components: - type: Transform @@ -41567,12 +43642,6 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,-0.5 parent: 2 - - uid: 10601 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,14.5 - parent: 2 - uid: 11436 components: - type: Transform @@ -41592,6 +43661,12 @@ entities: rot: 3.141592653589793 rad pos: 26.5,16.5 parent: 2 + - uid: 182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,15.5 + parent: 2 - uid: 256 components: - type: Transform @@ -41610,24 +43685,29 @@ entities: rot: 3.141592653589793 rad pos: 26.5,18.5 parent: 2 + - uid: 533 + components: + - type: Transform + pos: 10.5,-22.5 + parent: 2 - uid: 584 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-24.5 parent: 2 + - uid: 1173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-21.5 + parent: 2 - uid: 2118 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,13.5 parent: 2 - - uid: 2133 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,23.5 - parent: 2 - uid: 2314 components: - type: Transform @@ -41640,6 +43720,41 @@ entities: rot: 3.141592653589793 rad pos: 4.5,12.5 parent: 2 + - uid: 3410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,14.5 + parent: 2 + - uid: 4410 + components: + - type: Transform + pos: 26.5,34.5 + parent: 2 + - uid: 4412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,35.5 + parent: 2 + - uid: 5304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,14.5 + parent: 2 + - uid: 5347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,28.5 + parent: 2 + - uid: 5377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,28.5 + parent: 2 - uid: 5534 components: - type: Transform @@ -41870,18 +43985,6 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-23.5 parent: 2 - - uid: 5826 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-23.5 - parent: 2 - - uid: 5827 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-22.5 - parent: 2 - uid: 5830 components: - type: Transform @@ -41942,23 +44045,71 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-29.5 parent: 2 - - uid: 6848 + - uid: 6006 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,23.5 + pos: 53.5,11.5 parent: 2 - - uid: 6849 + - uid: 6128 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,23.5 + pos: 55.5,14.5 parent: 2 - - uid: 6850 + - uid: 6139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,17.5 + parent: 2 + - uid: 6327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,16.5 + parent: 2 + - uid: 6328 components: - type: Transform rot: -1.5707963267948966 rad - pos: 32.5,23.5 + pos: 58.5,14.5 + parent: 2 + - uid: 6329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,14.5 + parent: 2 + - uid: 6330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,14.5 + parent: 2 + - uid: 6335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,14.5 + parent: 2 + - uid: 6337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,28.5 + parent: 2 + - uid: 6347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,14.5 + parent: 2 + - uid: 6462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,28.5 parent: 2 - uid: 6877 components: @@ -41999,6 +44150,12 @@ entities: - type: Transform pos: 14.5,20.5 parent: 2 + - uid: 6991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,14.5 + parent: 2 - uid: 7291 components: - type: Transform @@ -42463,24 +44620,12 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,-0.5 parent: 2 - - uid: 7457 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,23.5 - parent: 2 - uid: 7458 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,19.5 parent: 2 - - uid: 7459 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,23.5 - parent: 2 - uid: 7473 components: - type: Transform @@ -42594,10 +44739,11 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,-0.5 parent: 2 - - uid: 7946 + - uid: 7718 components: - type: Transform - pos: 33.5,29.5 + rot: -1.5707963267948966 rad + pos: 35.5,30.5 parent: 2 - uid: 8270 components: @@ -42644,11 +44790,6 @@ entities: rot: 3.141592653589793 rad pos: 11.5,11.5 parent: 2 - - uid: 8496 - components: - - type: Transform - pos: 33.5,30.5 - parent: 2 - uid: 8928 components: - type: Transform @@ -42703,39 +44844,11 @@ entities: rot: 3.141592653589793 rad pos: 33.5,-8.5 parent: 2 - - uid: 9405 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,42.5 - parent: 2 - - uid: 9406 - components: - - type: Transform - pos: 32.5,43.5 - parent: 2 - - uid: 9407 - components: - - type: Transform - pos: 32.5,44.5 - parent: 2 - - uid: 9408 + - uid: 9145 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,45.5 - parent: 2 - - uid: 9409 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,45.5 - parent: 2 - - uid: 9410 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,45.5 + pos: 34.5,30.5 parent: 2 - uid: 9412 components: @@ -42767,11 +44880,6 @@ entities: - type: Transform pos: 28.5,38.5 parent: 2 - - uid: 9418 - components: - - type: Transform - pos: 28.5,37.5 - parent: 2 - uid: 9419 components: - type: Transform @@ -42797,11 +44905,6 @@ entities: - type: Transform pos: 26.5,27.5 parent: 2 - - uid: 9425 - components: - - type: Transform - pos: 26.5,28.5 - parent: 2 - uid: 9426 components: - type: Transform @@ -42890,143 +44993,22 @@ entities: - type: Transform pos: 12.5,-0.5 parent: 2 - - uid: 10587 + - uid: 10358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,28.5 + parent: 2 + - uid: 10448 components: - type: Transform - rot: 3.141592653589793 rad pos: 54.5,12.5 parent: 2 - - uid: 10588 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,13.5 - parent: 2 - - uid: 10589 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,21.5 - parent: 2 - uid: 10590 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,20.5 - parent: 2 - - uid: 10591 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,19.5 - parent: 2 - - uid: 10592 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,17.5 - parent: 2 - - uid: 10593 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,16.5 - parent: 2 - - uid: 10594 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,15.5 - parent: 2 - - uid: 10595 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,14.5 - parent: 2 - - uid: 10596 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,14.5 - parent: 2 - - uid: 10597 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,14.5 - parent: 2 - - uid: 10603 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,18.5 - parent: 2 - - uid: 10604 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,18.5 - parent: 2 - - uid: 10605 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,18.5 - parent: 2 - - uid: 10606 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,18.5 - parent: 2 - - uid: 10607 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,18.5 - parent: 2 - - uid: 10608 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,18.5 - parent: 2 - - uid: 10609 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,18.5 - parent: 2 - - uid: 10610 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,14.5 - parent: 2 - - uid: 10611 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,14.5 - parent: 2 - - uid: 10612 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,14.5 - parent: 2 - - uid: 10613 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,14.5 - parent: 2 - - uid: 10614 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,14.5 + pos: 38.5,30.5 parent: 2 - uid: 10615 components: @@ -43130,6 +45112,12 @@ entities: - type: Transform pos: 41.5,2.5 parent: 2 + - uid: 10895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,30.5 + parent: 2 - uid: 11441 components: - type: Transform @@ -43483,6 +45471,18 @@ entities: - type: Transform pos: 27.5,1.5 parent: 2 + - uid: 12557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,29.5 + parent: 2 + - uid: 12671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,30.5 + parent: 2 - uid: 12837 components: - type: Transform @@ -43493,30 +45493,11 @@ entities: - type: Transform pos: 26.5,-26.5 parent: 2 - - uid: 13586 + - uid: 13114 components: - type: Transform - pos: 33.5,28.5 - parent: 2 - - uid: 13587 - components: - - type: Transform - pos: 33.5,27.5 - parent: 2 - - uid: 13588 - components: - - type: Transform - pos: 33.5,26.5 - parent: 2 - - uid: 13589 - components: - - type: Transform - pos: 33.5,25.5 - parent: 2 - - uid: 13590 - components: - - type: Transform - pos: 33.5,24.5 + rot: -1.5707963267948966 rad + pos: 27.5,28.5 parent: 2 - uid: 14130 components: @@ -43602,20 +45583,113 @@ entities: rot: 3.141592653589793 rad pos: 46.5,-5.5 parent: 2 -- proto: DisposalTrunk - entities: - - uid: 183 + - uid: 15596 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,22.5 + pos: 40.5,30.5 parent: 2 - - uid: 184 + - uid: 15597 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,30.5 + parent: 2 + - uid: 15598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,30.5 + parent: 2 + - uid: 15599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,30.5 + parent: 2 + - uid: 15600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,30.5 + parent: 2 + - uid: 15601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,30.5 + parent: 2 + - uid: 15602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,30.5 + parent: 2 + - uid: 15603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,30.5 + parent: 2 + - uid: 15604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,30.5 + parent: 2 + - uid: 15605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,30.5 + parent: 2 + - uid: 15606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,30.5 + parent: 2 + - uid: 15607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,30.5 + parent: 2 + - uid: 15608 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,30.5 + parent: 2 + - uid: 15609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,30.5 + parent: 2 + - uid: 15610 + components: + - type: Transform + pos: 54.5,31.5 + parent: 2 + - uid: 15611 + components: + - type: Transform + pos: 54.5,32.5 + parent: 2 + - uid: 15616 + components: + - type: Transform + pos: 26.5,23.5 + parent: 2 + - uid: 15870 components: - type: Transform rot: 3.141592653589793 rad - pos: 50.5,17.5 + pos: 37.5,29.5 parent: 2 +- proto: DisposalTrunk + entities: - uid: 358 components: - type: Transform @@ -43627,6 +45701,12 @@ entities: rot: 3.141592653589793 rad pos: 34.5,-10.5 parent: 2 + - uid: 2279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,37.5 + parent: 2 - uid: 2320 components: - type: Transform @@ -43664,12 +45744,6 @@ entities: - type: Transform pos: 22.5,15.5 parent: 2 - - uid: 6008 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,42.5 - parent: 2 - uid: 7288 components: - type: Transform @@ -43694,6 +45768,12 @@ entities: rot: 3.141592653589793 rad pos: -22.5,-2.5 parent: 2 + - uid: 7688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,18.5 + parent: 2 - uid: 8849 components: - type: Transform @@ -43706,22 +45786,16 @@ entities: rot: 1.5707963267948966 rad pos: 27.5,44.5 parent: 2 - - uid: 9420 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,34.5 - parent: 2 - uid: 10254 components: - type: Transform pos: 20.5,-2.5 parent: 2 - - uid: 10585 + - uid: 10586 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,11.5 + rot: 1.5707963267948966 rad + pos: 53.5,13.5 parent: 2 - uid: 11434 components: @@ -43746,16 +45820,21 @@ entities: rot: -1.5707963267948966 rad pos: 81.5,1.5 parent: 2 + - uid: 11660 + components: + - type: Transform + pos: 54.5,33.5 + parent: 2 - uid: 12479 components: - type: Transform pos: 27.5,3.5 parent: 2 - - uid: 13581 + - uid: 12911 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,31.5 + pos: 52.5,11.5 parent: 2 - uid: 14126 components: @@ -43774,6 +45853,12 @@ entities: rot: -1.5707963267948966 rad pos: 47.5,-6.5 parent: 2 + - uid: 15883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,28.5 + parent: 2 - proto: DisposalUnit entities: - uid: 374 @@ -43801,6 +45886,11 @@ entities: - type: Transform pos: 34.5,-10.5 parent: 2 + - uid: 1286 + components: + - type: Transform + pos: 54.5,33.5 + parent: 2 - uid: 1321 components: - type: Transform @@ -43846,21 +45936,6 @@ entities: - type: Transform pos: 82.5,-3.5 parent: 2 - - uid: 5341 - components: - - type: Transform - pos: 57.5,22.5 - parent: 2 - - uid: 5392 - components: - - type: Transform - pos: 55.5,11.5 - parent: 2 - - uid: 5411 - components: - - type: Transform - pos: 30.5,42.5 - parent: 2 - uid: 6427 components: - type: Transform @@ -43876,15 +45951,20 @@ entities: - type: Transform pos: 41.5,-1.5 parent: 2 + - uid: 7595 + components: + - type: Transform + pos: 37.5,28.5 + parent: 2 - uid: 8361 components: - type: Transform pos: 27.5,-25.5 parent: 2 - - uid: 8435 + - uid: 8480 components: - type: Transform - pos: 32.5,31.5 + pos: 60.5,18.5 parent: 2 - uid: 8848 components: @@ -43896,26 +45976,31 @@ entities: - type: Transform pos: 100.5,-10.5 parent: 2 - - uid: 9431 + - uid: 9268 components: - type: Transform - pos: 28.5,34.5 + pos: 29.5,37.5 parent: 2 - uid: 10069 components: - type: Transform pos: 54.5,-9.5 parent: 2 - - uid: 10118 - components: - - type: Transform - pos: 50.5,17.5 - parent: 2 - uid: 10253 components: - type: Transform pos: 20.5,-2.5 parent: 2 + - uid: 10406 + components: + - type: Transform + pos: 53.5,13.5 + parent: 2 + - uid: 10475 + components: + - type: Transform + pos: 52.5,11.5 + parent: 2 - uid: 11433 components: - type: Transform @@ -43984,10 +46069,10 @@ entities: parent: 2 - proto: DogBed entities: - - uid: 8393 + - uid: 1748 components: - type: Transform - pos: 36.5,19.5 + pos: 40.5,27.5 parent: 2 - uid: 9716 components: @@ -44009,6 +46094,16 @@ entities: - type: Transform pos: 5.5,15.5 parent: 2 + - uid: 15373 + components: + - type: Transform + pos: 43.5,41.5 + parent: 2 + - uid: 15474 + components: + - type: Transform + pos: 31.5,39.5 + parent: 2 - proto: DonkpocketBoxSpawner entities: - uid: 11431 @@ -44033,19 +46128,12 @@ entities: - type: Transform pos: 9.474669,-14.422774 parent: 2 -- proto: DoubleEmergencyOxygenTankFilled - entities: - - uid: 5530 - components: - - type: Transform - pos: 74.515,18.613554 - parent: 2 - proto: DresserCaptainFilled entities: - - uid: 10279 + - uid: 13583 components: - type: Transform - pos: 37.5,40.5 + pos: 35.5,41.5 parent: 2 - proto: DresserChiefEngineerFilled entities: @@ -44094,10 +46182,10 @@ entities: - 544 - proto: DresserHeadOfSecurityFilled entities: - - uid: 386 + - uid: 8427 components: - type: Transform - pos: 45.5,22.5 + pos: 42.5,43.5 parent: 2 - proto: DresserQuarterMasterFilled entities: @@ -44108,29 +46196,40 @@ entities: parent: 2 - proto: DresserResearchDirectorFilled entities: - - uid: 565 + - uid: 15624 components: - type: Transform - pos: 60.5,11.5 + pos: 61.5,8.5 + parent: 2 +- proto: DresserWardenFilled + entities: + - uid: 3672 + components: + - type: Transform + pos: 43.5,24.5 + parent: 2 +- proto: DrinkBottleBeer + entities: + - uid: 1287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.534847,-13.435519 + parent: 2 +- proto: DrinkBottleVodka + entities: + - uid: 10450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.11051,49.81447 parent: 2 - - type: Storage - storedItems: - 4300: - position: 0,0 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 4300 - proto: DrinkFlask entities: - - uid: 9223 + - uid: 9410 components: - type: Transform - pos: 37.68926,43.584465 + pos: 35.652603,43.65095 parent: 2 - proto: DrinkFlaskBar entities: @@ -44139,6 +46238,13 @@ entities: - type: Transform pos: 63.594597,-16.258825 parent: 2 +- proto: DrinkGinBottleFull + entities: + - uid: 8797 + components: + - type: Transform + pos: 48.41424,42.191265 + parent: 2 - proto: DrinkGlass entities: - uid: 8129 @@ -44165,24 +46271,17 @@ entities: parent: 2 - proto: DrinkHotCoco entities: - - uid: 5451 + - uid: 8452 components: - type: Transform - pos: 71.508354,37.570084 + pos: 69.67335,38.49052 parent: 2 -- proto: DrinkHotCoffee +- proto: DrinkMopwataBottleRandom entities: - - uid: 15374 + - uid: 15667 components: - type: Transform - pos: 34.080093,17.48581 - parent: 2 -- proto: DrinkLemonadeGlass - entities: - - uid: 5452 - components: - - type: Transform - pos: 71.477104,40.663834 + pos: 63.602173,38.82123 parent: 2 - proto: DrinkMugBlack entities: @@ -44205,21 +46304,28 @@ entities: parent: 2 - proto: DrinkMugMetal entities: - - uid: 14600 + - uid: 2463 components: - type: Transform - pos: 55.15004,41.505497 + pos: 35.44559,18.47621 parent: 2 - - uid: 14663 + - uid: 8442 components: - type: Transform - pos: 5.063261,40.729393 + pos: 35.66434,18.710585 parent: 2 - uid: 15303 components: - type: Transform pos: 38.59038,-29.278873 parent: 2 +- proto: DrinkMugMoebius + entities: + - uid: 11893 + components: + - type: Transform + pos: 71.55619,33.63624 + parent: 2 - proto: DrinkMugOne entities: - uid: 12405 @@ -44227,6 +46333,11 @@ entities: - type: Transform pos: 78.602234,4.557168 parent: 2 + - uid: 13501 + components: + - type: Transform + pos: 32.628296,41.841526 + parent: 2 - uid: 14567 components: - type: Transform @@ -44251,6 +46362,43 @@ entities: - type: Transform pos: 67.47043,-15.094364 parent: 2 +- proto: DrinkShotGlass + entities: + - uid: 2221 + components: + - type: Transform + pos: 48.53924,41.628765 + parent: 2 + - uid: 3084 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 58.69356,39.47997 + parent: 2 + - uid: 3227 + components: + - type: Transform + pos: 48.75799,41.816265 + parent: 2 + - uid: 10684 + components: + - type: Transform + pos: 58.66231,39.714344 + parent: 2 +- proto: DrinkVodkaBottleFull + entities: + - uid: 3216 + components: + - type: Transform + pos: 49.20426,50.03322 + parent: 2 +- proto: DrinkVodkaGlass + entities: + - uid: 7584 + components: + - type: Transform + pos: 48.675804,44.565666 + parent: 2 - proto: DrinkWaterCup entities: - uid: 5644 @@ -44290,6 +46438,12 @@ entities: parent: 2 - proto: DrinkWhiskeyBottleFull entities: + - uid: 2458 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 58.302937,39.745594 + parent: 2 - uid: 5680 components: - type: Transform @@ -44300,15 +46454,18 @@ entities: - type: Transform pos: 57.63163,-13.7188425 parent: 2 -- proto: ElectricGuitarInstrument +- proto: Dropper entities: - - uid: 14550 + - uid: 10885 components: - type: Transform - parent: 13753 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: 63.395325,25.383368 + parent: 2 + - uid: 13541 + components: + - type: Transform + pos: 71.575096,30.73986 + parent: 2 - proto: EmergencyLight entities: - uid: 323 @@ -44323,6 +46480,12 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,-14.5 parent: 2 + - uid: 2294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,47.5 + parent: 2 - uid: 3215 components: - type: Transform @@ -44335,19 +46498,56 @@ entities: rot: 3.141592653589793 rad pos: 27.5,-36.5 parent: 2 + - uid: 5334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,21.5 + parent: 2 + - uid: 5423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,32.5 + parent: 2 + - uid: 7795 + components: + - type: Transform + pos: 49.5,11.5 + parent: 2 + - uid: 7802 + components: + - type: Transform + pos: 57.5,15.5 + parent: 2 - uid: 8408 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,8.5 parent: 2 - - uid: 11333 + - uid: 8478 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,33.5 + rot: 3.141592653589793 rad + pos: 50.5,30.5 + parent: 2 + - uid: 8549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,35.5 + parent: 2 + - uid: 10137 + components: + - type: Transform + pos: 80.5,31.5 + parent: 2 + - uid: 10600 + components: + - type: Transform + pos: 39.5,31.5 parent: 2 - - type: ActiveEmergencyLight - uid: 12375 components: - type: Transform @@ -44367,13 +46567,6 @@ entities: pos: 16.5,-33.5 parent: 2 - type: ActiveEmergencyLight - - uid: 12379 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,25.5 - parent: 2 - - type: ActiveEmergencyLight - uid: 12380 components: - type: Transform @@ -44381,24 +46574,12 @@ entities: pos: 25.5,44.5 parent: 2 - type: ActiveEmergencyLight - - uid: 12383 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,18.5 - parent: 2 - - type: ActiveEmergencyLight - uid: 14641 components: - type: Transform rot: 3.141592653589793 rad pos: 73.5,22.5 parent: 2 - - uid: 14642 - components: - - type: Transform - pos: 79.5,31.5 - parent: 2 - uid: 14644 components: - type: Transform @@ -44416,12 +46597,6 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,30.5 parent: 2 - - uid: 14974 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,36.5 - parent: 2 - uid: 15131 components: - type: Transform @@ -44467,27 +46642,6 @@ entities: rot: 1.5707963267948966 rad pos: 49.5,-5.5 parent: 2 - - uid: 15140 - components: - - type: Transform - pos: 49.5,11.5 - parent: 2 - - uid: 15141 - components: - - type: Transform - pos: 55.5,20.5 - parent: 2 - - uid: 15142 - components: - - type: Transform - pos: 67.5,16.5 - parent: 2 - - uid: 15143 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,17.5 - parent: 2 - uid: 15144 components: - type: Transform @@ -44573,6 +46727,12 @@ entities: rot: 3.141592653589793 rad pos: 31.5,13.5 parent: 2 + - uid: 15534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,19.5 + parent: 2 - proto: EmergencyNitrogenTankFilled entities: - uid: 4959 @@ -44596,16 +46756,6 @@ entities: parent: 2 - proto: Emitter entities: - - uid: 748 - components: - - type: Transform - anchored: False - pos: 9.5,-29.5 - parent: 2 - - type: Physics - bodyType: Dynamic - - type: PowerConsumer - drawRate: 1 - uid: 749 components: - type: Transform @@ -44616,6 +46766,11 @@ entities: bodyType: Dynamic - type: PowerConsumer drawRate: 1 + - uid: 2628 + components: + - type: Transform + pos: 9.5,-29.5 + parent: 2 - uid: 10875 components: - type: Transform @@ -44659,84 +46814,49 @@ entities: - type: Transform pos: 25.530586,-38.32224 parent: 2 -- proto: EncryptionKeyCargo +- proto: EvidenceMarkerFour entities: - - uid: 412 + - uid: 11089 components: - type: Transform - parent: 5183 - - type: Physics - canCollide: False -- proto: EncryptionKeyCommand + pos: 54.801388,44.239468 + parent: 2 +- proto: EvidenceMarkerOne entities: - - uid: 413 + - uid: 11191 components: - type: Transform - parent: 10443 - - type: Physics - canCollide: False -- proto: EncryptionKeyCommon + rot: 6.283185307179586 rad + pos: 54.967278,45.75482 + parent: 2 +- proto: EvidenceMarkerThree entities: - - uid: 414 + - uid: 15706 components: - type: Transform - parent: 12111 - - type: Physics - canCollide: False -- proto: EncryptionKeyEngineering + pos: 51.6788,42.82845 + parent: 2 +- proto: EvidenceMarkerTwo entities: - - uid: 535 + - uid: 5393 components: - type: Transform - parent: 533 - - type: Physics - canCollide: False -- proto: EncryptionKeyMedical - entities: - - uid: 421 - components: - - type: Transform - parent: 12112 - - type: Physics - canCollide: False -- proto: EncryptionKeyScience - entities: - - uid: 422 - components: - - type: Transform - parent: 12232 - - type: Physics - canCollide: False -- proto: EncryptionKeySecurity - entities: - - uid: 423 - components: - - type: Transform - parent: 12233 - - type: Physics - canCollide: False -- proto: EncryptionKeyService - entities: - - uid: 424 - components: - - type: Transform - parent: 12395 - - type: Physics - canCollide: False + rot: 6.283185307179586 rad + pos: 53.951653,42.645718 + parent: 2 - proto: ExosuitFabricator entities: - - uid: 12579 + - uid: 10384 components: - type: Transform - pos: 51.5,11.5 - parent: 2 -- proto: ExplosivesSignMed - entities: - - uid: 10438 - components: - - type: Transform - pos: 61.5,28.5 + pos: 50.5,8.5 parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - proto: ExtinguisherCabinetFilled entities: - uid: 315 @@ -44771,26 +46891,6 @@ entities: - type: Transform pos: 52.5,12.5 parent: 2 - - uid: 5336 - components: - - type: Transform - pos: 53.5,22.5 - parent: 2 - - uid: 5337 - components: - - type: Transform - pos: 50.5,22.5 - parent: 2 - - uid: 5347 - components: - - type: Transform - pos: 62.5,21.5 - parent: 2 - - uid: 5348 - components: - - type: Transform - pos: 68.5,12.5 - parent: 2 - uid: 5658 components: - type: Transform @@ -44816,11 +46916,6 @@ entities: - type: Transform pos: 40.5,-5.5 parent: 2 - - uid: 8985 - components: - - type: Transform - pos: 36.5,16.5 - parent: 2 - uid: 9399 components: - type: Transform @@ -44836,21 +46931,8 @@ entities: - type: Transform pos: 14.5,11.5 parent: 2 - - uid: 14569 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 87.5,29.5 - parent: 2 - proto: FaxMachineBase entities: - - uid: 1622 - components: - - type: Transform - pos: 63.5,10.5 - parent: 2 - - type: FaxMachine - name: RD Office - uid: 1649 components: - type: Transform @@ -44858,6 +46940,13 @@ entities: parent: 2 - type: FaxMachine name: Library + - uid: 2220 + components: + - type: Transform + pos: 38.5,22.5 + parent: 2 + - type: FaxMachine + name: Brig - uid: 2394 components: - type: Transform @@ -44865,13 +46954,30 @@ entities: parent: 2 - type: FaxMachine name: CE Office - - uid: 7566 + - uid: 3109 components: - type: Transform - pos: 45.5,24.5 + pos: 59.5,36.5 + parent: 2 + - uid: 5343 + components: + - type: Transform + pos: 36.5,24.5 parent: 2 - type: FaxMachine - name: HoS Office + name: Security + - uid: 5361 + components: + - type: Transform + pos: 60.5,20.5 + parent: 2 + - type: FaxMachine + name: Science + - uid: 6351 + components: + - type: Transform + pos: 65.5,11.5 + parent: 2 - uid: 7668 components: - type: Transform @@ -44886,6 +46992,13 @@ entities: parent: 2 - type: FaxMachine name: Law Office + - uid: 7946 + components: + - type: Transform + pos: 46.5,42.5 + parent: 2 + - type: FaxMachine + name: Head of Security - uid: 8080 components: - type: Transform @@ -44893,13 +47006,6 @@ entities: parent: 2 - type: FaxMachine name: Quartermaster - - uid: 8320 - components: - - type: Transform - pos: 36.5,25.5 - parent: 2 - - type: FaxMachine - name: Security - uid: 9006 components: - type: Transform @@ -44949,19 +47055,19 @@ entities: parent: 2 - type: FaxMachine name: Medical - - uid: 14997 - components: - - type: Transform - pos: 57.5,20.5 - parent: 2 - - type: FaxMachine - name: Science - proto: FaxMachineCaptain entities: - - uid: 1465 + - uid: 5329 components: - type: Transform - pos: 30.5,41.5 + pos: 30.5,42.5 + parent: 2 +- proto: filingCabinetDrawer + entities: + - uid: 14574 + components: + - type: Transform + pos: 58.5,20.5 parent: 2 - proto: filingCabinetDrawerRandom entities: @@ -44975,7 +47081,7 @@ entities: - type: Transform pos: 19.5,29.5 parent: 2 - - uid: 10659 + - uid: 10546 components: - type: Transform pos: 63.5,11.5 @@ -44997,10 +47103,10 @@ entities: - type: Transform pos: 15.5,-5.5 parent: 2 - - uid: 7834 + - uid: 12768 components: - type: Transform - pos: 41.5,19.5 + pos: 55.5,38.5 parent: 2 - uid: 15479 components: @@ -45072,6 +47178,21 @@ entities: - 1515 - 1513 - 12834 + - uid: 2045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 5390 + - 15554 + - 12518 + - 15552 + - 14330 + - 5395 + - 15368 - uid: 2123 components: - type: Transform @@ -45084,18 +47205,29 @@ entities: - 241 - 14065 - 14064 - - uid: 2474 + - uid: 2248 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,22.5 + rot: 3.141592653589793 rad + pos: 47.5,29.5 parent: 2 - type: DeviceList devices: - - 12559 - - 10413 - - 10414 - - 10415 + - 15375 + - 15368 + - uid: 2296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,8.5 + parent: 2 + - type: DeviceList + devices: + - 12989 + - 10662 + - 12485 + - 5392 + - 13435 - uid: 4049 components: - type: Transform @@ -45214,6 +47346,32 @@ entities: - 14066 - 192 - 1317 + - uid: 7720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 2334 + - 10527 + - 15368 + - 9589 + - 1103 + - 1104 + - 11250 + - 11249 + - 11248 + - 11322 + - 11323 + - 11324 + - 12516 + - 10613 + - 10612 + - 5390 + - 15554 + - 12518 - uid: 8005 components: - type: Transform @@ -45317,6 +47475,21 @@ entities: - 7011 - 6620 - 5144 + - uid: 8570 + components: + - type: Transform + pos: 56.5,16.5 + parent: 2 + - type: DeviceList + devices: + - 10418 + - 8460 + - 10416 + - 15492 + - 15898 + - 10662 + - 5478 + - 12485 - uid: 8920 components: - type: Transform @@ -45335,20 +47508,24 @@ entities: - 10206 - 10205 - 5093 - - uid: 9588 + - uid: 10078 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,30.5 + pos: 59.5,21.5 parent: 2 - type: DeviceList devices: - - 9586 - - 9585 - - 9584 - - 9589 - - 9236 - - 13510 + - 10418 + - 8460 + - 10416 + - 15492 + - 15898 + - 5651 + - 10671 + - 15476 + - 12087 + - 7267 + - 12485 - uid: 10208 components: - type: Transform @@ -45367,27 +47544,6 @@ entities: - type: DeviceList devices: - 8659 - - uid: 10964 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,19.5 - parent: 2 - - type: DeviceList - devices: - - 1103 - - 1104 - - 11250 - - 11249 - - 11248 - - 11322 - - 11323 - - 11324 - - 12516 - - 12085 - - 9586 - - 9585 - - 9584 - uid: 11507 components: - type: Transform @@ -45502,7 +47658,6 @@ entities: - 3459 - 9352 - 9353 - - 9351 - 2690 - uid: 12483 components: @@ -45539,10 +47694,14 @@ entities: - 11251 - 11252 - 11253 - - 9351 - 9353 - 9352 - 12087 + - 3224 + - 7267 + - 15492 + - 5478 + - 15898 - uid: 12489 components: - type: Transform @@ -45564,50 +47723,13 @@ entities: - type: DeviceList devices: - 11250 - - 11249 - - 11248 - 11322 - 11323 - 11324 - 12518 - - uid: 12549 - components: - - type: Transform - pos: 49.5,22.5 - parent: 2 - - type: DeviceList - devices: - - 12550 - - 12087 - - uid: 12556 - components: - - type: Transform - pos: 61.5,16.5 - parent: 2 - - type: DeviceList - devices: - - 10416 - - 10417 - - 10418 - - 12554 - - 1252 - - 1162 - - 6473 - - uid: 12557 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,19.5 - parent: 2 - - type: DeviceList - devices: - - 10416 - - 10417 - - 10418 - - 185 - - 10413 - - 10414 - - 10415 + - 11249 + - 11248 + - 12516 - uid: 14041 components: - type: Transform @@ -45641,6 +47763,50 @@ entities: - 29 - 8238 - 371 + - uid: 15172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,29.5 + parent: 2 + - type: DeviceList + devices: + - 73 + - 248 + - 15375 + - 11683 + - 2334 + - 10527 + - 15368 + - 9589 + - 5395 + - 15554 + - uid: 15585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,23.5 + parent: 2 + - type: DeviceList + devices: + - 5651 + - 10671 + - 15476 + - 15492 + - uid: 15897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,7.5 + parent: 2 + - type: DeviceList + devices: + - 10585 + - 10336 + - 2421 + - 15882 + - 15898 + - 5392 - proto: FireAxeCabinetFilled entities: - uid: 1571 @@ -45671,6 +47837,50 @@ entities: - type: Transform pos: 81.454414,9.641975 parent: 2 +- proto: Firelock + entities: + - uid: 8376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,46.5 + parent: 2 + - uid: 8384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,46.5 + parent: 2 + - uid: 8406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,35.5 + parent: 2 + - uid: 8426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,28.5 + parent: 2 + - uid: 9437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,34.5 + parent: 2 + - uid: 9443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,46.5 + parent: 2 + - uid: 9574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,27.5 + parent: 2 - proto: FirelockEdge entities: - uid: 36 @@ -45775,12 +47985,20 @@ entities: rot: 3.141592653589793 rad pos: 25.5,15.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 7720 + - 15466 - uid: 1104 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,15.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 7720 + - 15466 - uid: 1317 components: - type: Transform @@ -46152,10 +48370,9 @@ entities: rot: 3.141592653589793 rad pos: 26.5,37.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 9587 - - 9588 + - type: Door + secondsUntilStateChange: -55221.285 + state: Closing - uid: 9362 components: - type: Transform @@ -46171,24 +48388,6 @@ entities: - type: Transform pos: 42.5,13.5 parent: 2 - - uid: 9584 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,28.5 - parent: 2 - - uid: 9585 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,28.5 - parent: 2 - - uid: 9586 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,28.5 - parent: 2 - uid: 9858 components: - type: Transform @@ -46226,18 +48425,34 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,22.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 12517 + - 7720 + - 15466 + - 11165 - uid: 11249 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,21.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 12517 + - 7720 + - 15466 + - 11165 - uid: 11250 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,20.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 7720 + - 15466 - uid: 11251 components: - type: Transform @@ -46316,18 +48531,30 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,23.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 7720 + - 15466 - uid: 11323 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,24.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 7720 + - 15466 - uid: 11324 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,25.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 7720 + - 15466 - uid: 11325 components: - type: Transform @@ -46388,43 +48615,12 @@ entities: - type: DeviceNetwork deviceLists: - 1657 - - uid: 13507 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,34.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13512 - uid: 13510 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,37.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 9587 - - 9588 - - uid: 13514 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,35.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13512 - - uid: 13523 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,36.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13512 - uid: 13894 components: - type: Transform @@ -46542,42 +48738,6 @@ entities: deviceLists: - 14041 - 13984 - - uid: 14551 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 88.5,30.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14247 - - uid: 14552 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 88.5,31.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14247 - - uid: 14553 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 88.5,29.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14247 - - uid: 14622 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,20.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14615 - uid: 14992 components: - type: Transform @@ -46616,6 +48776,15 @@ entities: - 14737 - 5 - 14754 + - uid: 73 + components: + - type: Transform + pos: 46.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8571 + - 15172 - uid: 169 components: - type: Transform @@ -46624,6 +48793,15 @@ entities: - type: DeviceNetwork deviceLists: - 1017 + - uid: 248 + components: + - type: Transform + pos: 46.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8571 + - 15172 - uid: 554 components: - type: Transform @@ -46661,16 +48839,6 @@ entities: - type: DeviceNetwork deviceLists: - 1017 - - uid: 1162 - components: - - type: Transform - pos: 53.5,14.5 - parent: 2 - - uid: 1252 - components: - - type: Transform - pos: 53.5,13.5 - parent: 2 - uid: 1510 components: - type: Transform @@ -46696,10 +48864,41 @@ entities: - type: Transform pos: 35.5,-8.5 parent: 2 - - uid: 3175 + - uid: 2334 components: - type: Transform - pos: 38.5,38.5 + pos: 31.5,28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15466 + - 7720 + - 8571 + - 15172 + - uid: 2421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15578 + - 15897 + - uid: 3224 + components: + - type: Transform + pos: 38.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12487 + - 12486 + - 12476 + - uid: 4843 + components: + - type: Transform + pos: 39.5,40.5 parent: 2 - uid: 4919 components: @@ -46711,6 +48910,68 @@ entities: - type: Transform pos: 39.5,1.5 parent: 2 + - uid: 5390 + components: + - type: Transform + pos: 28.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10524 + - 15466 + - 7720 + - 2045 + - uid: 5392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2296 + - 5101 + - 15578 + - 15897 + - uid: 5395 + components: + - type: Transform + pos: 33.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10524 + - 2045 + - 8571 + - 15172 + - uid: 5478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12487 + - 12486 + - 8570 + - 10469 + - uid: 5490 + components: + - type: Transform + pos: 38.5,40.5 + parent: 2 + - uid: 5651 + components: + - type: Transform + pos: 58.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15585 + - 10419 + - 10078 + - 10576 - uid: 5657 components: - type: Transform @@ -46719,11 +48980,6 @@ entities: - type: DeviceNetwork deviceLists: - 1017 - - uid: 6473 - components: - - type: Transform - pos: 53.5,15.5 - parent: 2 - uid: 6509 components: - type: Transform @@ -46749,6 +49005,18 @@ entities: - type: Transform pos: 39.5,-0.5 parent: 2 + - uid: 7267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12487 + - 10078 + - 12486 + - 10576 - uid: 7740 components: - type: Transform @@ -46775,16 +49043,23 @@ entities: - 5 - 7013 - 14754 + - uid: 8460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10078 + - 10469 + - 8570 + - 10576 - uid: 8823 components: - type: Transform pos: 49.5,-19.5 parent: 2 - - uid: 9351 - components: - - type: Transform - pos: 38.5,13.5 - parent: 2 - uid: 9352 components: - type: Transform @@ -46825,36 +49100,91 @@ entities: - type: Transform pos: 24.5,-10.5 parent: 2 - - uid: 10413 + - uid: 10336 components: - type: Transform - pos: 58.5,21.5 - parent: 2 - - uid: 10414 - components: - - type: Transform - pos: 59.5,21.5 - parent: 2 - - uid: 10415 - components: - - type: Transform - pos: 60.5,21.5 + rot: 3.141592653589793 rad + pos: 57.5,12.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 15578 + - 15897 - uid: 10416 components: - type: Transform pos: 58.5,16.5 parent: 2 - - uid: 10417 - components: - - type: Transform - pos: 59.5,16.5 - parent: 2 + - type: DeviceNetwork + deviceLists: + - 10078 + - 10469 + - 8570 + - 10576 - uid: 10418 components: - type: Transform pos: 60.5,16.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 10078 + - 10469 + - 8570 + - 10576 + - uid: 10527 + components: + - type: Transform + pos: 31.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15466 + - 7720 + - 8571 + - 15172 + - uid: 10585 + components: + - type: Transform + pos: 58.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15578 + - 15897 + - uid: 10612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15466 + - 7720 + - 8571 + - uid: 10613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15466 + - 7720 + - 8571 + - uid: 10671 + components: + - type: Transform + pos: 58.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15585 + - 10419 + - 10078 + - 10576 - uid: 10735 components: - type: Transform @@ -46900,31 +49230,6 @@ entities: - type: Transform pos: 47.5,-17.5 parent: 2 - - uid: 11273 - components: - - type: Transform - pos: 43.5,43.5 - parent: 2 - - uid: 11274 - components: - - type: Transform - pos: 44.5,43.5 - parent: 2 - - uid: 11284 - components: - - type: Transform - pos: 45.5,40.5 - parent: 2 - - uid: 11285 - components: - - type: Transform - pos: 50.5,48.5 - parent: 2 - - uid: 11286 - components: - - type: Transform - pos: 62.5,48.5 - parent: 2 - uid: 11287 components: - type: Transform @@ -47015,16 +49320,6 @@ entities: - type: Transform pos: 72.5,10.5 parent: 2 - - uid: 11384 - components: - - type: Transform - pos: 65.5,7.5 - parent: 2 - - uid: 11385 - components: - - type: Transform - pos: 66.5,7.5 - parent: 2 - uid: 11386 components: - type: Transform @@ -47085,11 +49380,6 @@ entities: - type: Transform pos: 48.5,-7.5 parent: 2 - - uid: 12085 - components: - - type: Transform - pos: 28.5,25.5 - parent: 2 - uid: 12086 components: - type: Transform @@ -47104,6 +49394,10 @@ entities: - type: Transform pos: 48.5,18.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 10078 + - 10576 - uid: 12394 components: - type: Transform @@ -47118,6 +49412,16 @@ entities: deviceLists: - 5101 - 12486 + - 2296 + - uid: 13435 + components: + - type: Transform + pos: 43.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5101 + - 2296 - uid: 13442 components: - type: Transform @@ -47153,13 +49457,13 @@ entities: - type: Transform pos: 71.5,-11.5 parent: 2 -- proto: Fireplace - entities: - - uid: 380 + - uid: 15528 components: - type: Transform - pos: 36.5,43.5 + pos: 76.5,11.5 parent: 2 +- proto: Fireplace + entities: - uid: 2008 components: - type: Transform @@ -47170,6 +49474,11 @@ entities: - type: Transform pos: 9.5,-40.5 parent: 2 + - uid: 8605 + components: + - type: Transform + pos: 36.5,43.5 + parent: 2 - proto: Flash entities: - uid: 4987 @@ -47187,8 +49496,23 @@ entities: - uid: 10814 components: - type: Transform - pos: 81.401146,12.491636 + rot: 6.283185307179586 rad + pos: 86.53047,10.639359 parent: 2 + - type: HandheldLight + toggleActionEntity: 6399 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 6399 + - type: ActionsContainer - proto: Floodlight entities: - uid: 4500 @@ -47212,6 +49536,20 @@ entities: parent: 2 - type: Fixtures fixtures: {} + - uid: 3176 + components: + - type: Transform + pos: 78.5,9.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 3177 + components: + - type: Transform + pos: 77.5,9.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 5254 components: - type: Transform @@ -47219,6 +49557,13 @@ entities: parent: 2 - type: Fixtures fixtures: {} + - uid: 8501 + components: + - type: Transform + pos: 44.5,22.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 8960 components: - type: Transform @@ -47226,28 +49571,6 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 9003 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,8.5 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 10447 - components: - - type: Transform - pos: 51.5,15.5 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11900 - components: - - type: Transform - pos: 78.5,10.5 - parent: 2 - - type: Fixtures - fixtures: {} - uid: 12288 components: - type: Transform @@ -47262,21 +49585,36 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 13606 - components: - - type: Transform - pos: 59.5,36.5 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 15199 + - uid: 14625 components: - type: Transform rot: 3.141592653589793 rad - pos: 77.5,10.5 + pos: 53.5,8.5 parent: 2 - type: Fixtures fixtures: {} + - uid: 15187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,15.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: FloorTileItemSteel + entities: + - uid: 15899 + components: + - type: Transform + pos: 46.126938,19.027557 + parent: 2 +- proto: FloorTileItemSteelCheckerDark + entities: + - uid: 14824 + components: + - type: Transform + pos: 52.93832,41.69648 + parent: 2 - proto: FoodBanana entities: - uid: 9595 @@ -47304,13 +49642,6 @@ entities: - type: Transform pos: 27.618341,6.6818295 parent: 2 -- proto: FoodBowlBig - entities: - - uid: 5507 - components: - - type: Transform - pos: 70.488464,33.529522 - parent: 2 - proto: FoodBowlBigTrash entities: - uid: 5881 @@ -47318,6 +49649,11 @@ entities: - type: Transform pos: -0.3447714,-23.649889 parent: 2 + - uid: 15703 + components: + - type: Transform + pos: 51.59836,50.601345 + parent: 2 - proto: FoodBoxDonkpocket entities: - uid: 8862 @@ -47351,11 +49687,6 @@ entities: - type: Transform pos: 37.49929,-7.4188547 parent: 2 - - uid: 15373 - components: - - type: Transform - pos: 33.517593,17.70471 - parent: 2 - proto: FoodBreadBananaSlice entities: - uid: 8651 @@ -47364,6 +49695,13 @@ entities: rot: 4.008621544926427E-05 rad pos: 83.58996,8.734995 parent: 2 +- proto: FoodBurgerSoy + entities: + - uid: 5027 + components: + - type: Transform + pos: 52.57802,45.583874 + parent: 2 - proto: FoodCakeChocolateSlice entities: - uid: 10832 @@ -47374,23 +49712,23 @@ entities: parent: 2 - proto: FoodCartCold entities: - - uid: 1551 + - uid: 15801 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-9.5 + rot: 1.5707963267948966 rad + pos: 29.5,-12.5 parent: 2 - proto: FoodCondimentBottleEnzyme entities: - uid: 296 components: - type: Transform - pos: 36.20302,-12.346379 + pos: 35.982536,-10.342439 parent: 2 - uid: 363 components: - type: Transform - pos: 36.093643,-12.174504 + pos: 35.77941,-10.201814 parent: 2 - proto: FoodFrozenPopsicleTrash entities: @@ -47418,6 +49756,16 @@ entities: parent: 2 - proto: FoodFrozenSnowconeTrash entities: + - uid: 2361 + components: + - type: Transform + pos: 46.984425,47.16262 + parent: 2 + - uid: 3570 + components: + - type: Transform + pos: 47.7188,45.85012 + parent: 2 - uid: 5884 components: - type: Transform @@ -47552,12 +49900,24 @@ entities: - type: Transform pos: 0.8896036,-25.587389 parent: 2 -- proto: FoodTinPeachesMaint - entities: - - uid: 5476 + - uid: 6172 components: - type: Transform - pos: 67.5,38.5 + pos: 62.99293,47.87387 + parent: 2 +- proto: FoodTinPeachesMaint + entities: + - uid: 15690 + components: + - type: Transform + pos: 71.43562,40.749683 + parent: 2 +- proto: Fork + entities: + - uid: 9241 + components: + - type: Transform + pos: 52.21605,45.55166 parent: 2 - proto: ForkPlastic entities: @@ -47571,7 +49931,15 @@ entities: - uid: 14279 components: - type: Transform - pos: 84.42593,28.556656 + pos: 84.54633,32.495792 + parent: 2 +- proto: GasCanisterBrokenBase + entities: + - uid: 15691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,41.5 parent: 2 - proto: GasFilterFlipped entities: @@ -47631,6 +49999,16 @@ entities: rot: 1.5707963267948966 rad pos: 45.5,-39.5 parent: 2 + - uid: 10047 + components: + - type: MetaData + name: gas filter (Waste Filter) + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 11767 components: - type: Transform @@ -47751,6 +50129,15 @@ entities: color: '#947507FF' - proto: GasPassiveVent entities: + - uid: 2424 + components: + - type: Transform + pos: 64.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - type: AtmosPipeLayers + pipeLayer: Secondary - uid: 3951 components: - type: Transform @@ -47807,30 +50194,36 @@ entities: rot: 3.141592653589793 rad pos: 79.5,-9.5 parent: 2 - - uid: 10426 + - uid: 8614 components: - type: Transform - pos: 63.5,28.5 + pos: 62.5,27.5 parent: 2 - - uid: 10427 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12582 components: - type: Transform - pos: 64.5,28.5 + pos: 63.5,27.5 parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 14345 components: - type: Transform pos: 82.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14621 components: - type: Transform pos: 71.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15275 components: - type: Transform @@ -47839,6 +50232,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 15841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' - proto: GasPipeBend entities: - uid: 34 @@ -47881,6 +50282,45 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 652 + components: + - type: Transform + pos: 22.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 746 components: - type: Transform @@ -47943,6 +50383,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 1275 + components: + - type: Transform + pos: 60.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1306 components: - type: Transform @@ -48068,14 +50515,6 @@ entities: rot: 3.141592653589793 rad pos: 42.5,-25.5 parent: 2 - - uid: 2290 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2383 components: - type: Transform @@ -48103,6 +50542,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 3081 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3518 components: - type: Transform @@ -48205,14 +50652,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4130 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4219 components: - type: Transform @@ -48220,11 +50659,18 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4362 + - uid: 4366 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,25.5 + pos: 48.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -48259,6 +50705,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4977 + components: + - type: Transform + pos: 47.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5010 components: - type: Transform @@ -48281,14 +50734,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 5109 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5208 components: - type: Transform @@ -48342,14 +50787,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6521 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 6569 components: - type: Transform @@ -48366,6 +50803,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7217 components: - type: Transform @@ -48404,50 +50849,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8599 + - uid: 8488 components: - type: Transform rot: -1.5707963267948966 rad - pos: 40.5,22.5 + pos: 64.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8620 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8621 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8628 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8662 - components: - - type: Transform - pos: 47.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8663 + color: '#947507FF' + - uid: 8546 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,30.5 + pos: 46.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -48490,6 +50920,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10169 components: - type: Transform @@ -48506,51 +50952,33 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 10334 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10335 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10364 + - uid: 10357 components: - type: Transform rot: 1.5707963267948966 rad - pos: 50.5,19.5 + pos: 55.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10381 + components: + - type: Transform + pos: 58.5,19.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 10382 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,13.5 + pos: 66.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10384 + color: '#0055CCFF' + - uid: 10520 components: - type: Transform rot: 1.5707963267948966 rad - pos: 63.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10399 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,9.5 + pos: 64.5,14.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -48605,6 +51033,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#9F2B68FF' + - uid: 11650 + components: + - type: Transform + pos: 41.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 11707 components: - type: Transform @@ -48753,37 +51188,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#9F2B68FF' - - uid: 13520 + - uid: 13529 components: - type: Transform - pos: 56.5,34.5 + pos: 64.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 13521 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13549 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13550 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' + color: '#947507FF' - uid: 13993 components: - type: Transform @@ -48854,7 +51265,7 @@ entities: pos: 90.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14422 components: - type: Transform @@ -48862,7 +51273,7 @@ entities: pos: 89.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14425 components: - type: Transform @@ -48877,7 +51288,7 @@ entities: pos: 92.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14586 components: - type: Transform @@ -48924,7 +51335,30 @@ entities: pos: 71.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' + - uid: 14893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14898 + components: + - type: Transform + pos: 30.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14958 components: - type: Transform @@ -48996,6 +51430,94 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 15387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15551 + components: + - type: Transform + pos: 39.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' +- proto: GasPipeBendAlt2 + entities: + - uid: 1812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14788 + components: + - type: Transform + pos: 64.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPipeFourway entities: - uid: 62 @@ -49047,13 +51569,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 5200 - components: - - type: Transform - pos: 42.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5240 components: - type: Transform @@ -49075,34 +51590,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8581 + - uid: 10049 components: - type: Transform - pos: 39.5,24.5 + pos: 60.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8589 - components: - - type: Transform - pos: 40.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10054 - components: - - type: Transform - pos: 59.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10374 - components: - - type: Transform - pos: 58.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 11732 components: - type: Transform @@ -49117,6 +51611,40 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14851 + components: + - type: Transform + pos: 34.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15872 + components: + - type: Transform + pos: 58.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeHalf + entities: + - uid: 15875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' +- proto: GasPipeManifold + entities: + - uid: 8695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPipeSensor entities: - uid: 11796 @@ -49202,6 +51730,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 65 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 68 components: - type: Transform @@ -49296,6 +51832,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 234 components: - type: Transform @@ -49320,14 +51864,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 318 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 352 components: - type: Transform @@ -49474,14 +52010,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#9F2B68FF' - - uid: 591 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 617 components: - type: Transform @@ -49490,6 +52018,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 666 components: - type: Transform @@ -49521,13 +52065,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 671 - components: - - type: Transform - pos: 46.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 672 components: - type: Transform @@ -49552,6 +52089,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' + - uid: 748 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 755 components: - type: Transform @@ -49952,13 +52496,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#9F2B68FF' - - uid: 1223 - components: - - type: Transform - pos: 46.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 1224 components: - type: Transform @@ -50007,6 +52544,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#9F2B68FF' + - uid: 1274 + components: + - type: Transform + pos: 37.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1300 components: - type: Transform @@ -50116,14 +52660,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1521 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 1528 components: - type: Transform @@ -50533,20 +53069,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 1749 - components: - - type: Transform - pos: 25.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1762 - components: - - type: Transform - pos: 25.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 1764 components: - type: Transform @@ -50582,13 +53104,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 1774 - components: - - type: Transform - pos: 25.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 1800 components: - type: Transform @@ -50776,6 +53291,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 1847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 1848 components: - type: Transform @@ -51369,6 +53892,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 2004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2021 components: - type: Transform @@ -51488,29 +54019,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2216 + - uid: 2235 components: - type: Transform rot: 3.141592653589793 rad - pos: 40.5,31.5 + pos: 48.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2289 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2302 - components: - - type: Transform - pos: 40.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 2304 components: - type: Transform @@ -51519,13 +54035,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2305 - components: - - type: Transform - pos: 40.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2316 components: - type: Transform @@ -51547,14 +54056,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2326 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2381 components: - type: Transform @@ -51808,6 +54309,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2604 + components: + - type: Transform + pos: 48.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2667 components: - type: Transform @@ -51828,6 +54344,14 @@ entities: rot: 3.141592653589793 rad pos: 43.5,-28.5 parent: 2 + - uid: 2716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2718 components: - type: Transform @@ -51882,6 +54406,22 @@ entities: rot: 3.141592653589793 rad pos: 44.5,-30.5 parent: 2 + - uid: 3036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3134 components: - type: Transform @@ -51890,45 +54430,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3216 + - uid: 3149 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3217 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3223 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3252 - components: - - type: Transform - pos: 46.5,29.5 + rot: 1.5707963267948966 rad + pos: 69.5,14.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3257 + - uid: 3150 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,35.5 + rot: 1.5707963267948966 rad + pos: 67.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 3289 components: - type: Transform @@ -51971,6 +54488,14 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,-33.5 parent: 2 + - uid: 3374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3522 components: - type: Transform @@ -52145,14 +54670,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3965 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3970 components: - type: Transform @@ -52501,22 +55018,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4114 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4124 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4125 components: - type: Transform @@ -52525,22 +55026,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4133 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4135 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 4155 components: - type: Transform @@ -52573,14 +55058,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4162 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4163 components: - type: Transform @@ -53014,13 +55491,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 4291 - components: - - type: Transform - pos: 25.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 4352 components: - type: Transform @@ -53059,14 +55529,14 @@ entities: - type: Transform pos: 35.5,-27.5 parent: 2 - - uid: 4413 + - uid: 4405 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,34.5 + rot: -1.5707963267948966 rad + pos: 48.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 4420 components: - type: Transform @@ -53151,6 +55621,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 4461 components: - type: Transform @@ -53238,6 +55716,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 5018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5023 components: - type: Transform @@ -53320,11 +55806,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5102 + - uid: 5109 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,35.5 + rot: 3.141592653589793 rad + pos: 47.5,39.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -53356,6 +55842,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5258 components: - type: Transform @@ -53366,6 +55860,29 @@ entities: - type: Transform pos: 79.5,-7.5 parent: 2 + - uid: 5260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5264 + components: + - type: Transform + pos: 53.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5268 components: - type: Transform @@ -53382,6 +55899,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 5280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5302 components: - type: Transform @@ -53396,6 +55921,36 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 5324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5384 + components: + - type: Transform + pos: 55.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5402 + components: + - type: Transform + pos: 55.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5429 components: - type: Transform @@ -53411,6 +55966,46 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5580 components: - type: Transform @@ -53473,27 +56068,51 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 6337 + - uid: 5931 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,34.5 + pos: 13.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6338 + color: '#03FCD3FF' + - uid: 6244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6288 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,26.5 + pos: 54.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6339 + color: '#0055CCFF' + - uid: 6325 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,23.5 + rot: -1.5707963267948966 rad + pos: 61.5,23.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -53579,14 +56198,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6536 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 6550 components: - type: Transform @@ -53760,6 +56371,8 @@ entities: - type: Transform pos: 30.5,-11.5 parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6594 components: - type: Transform @@ -53888,14 +56501,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 6672 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 6818 components: - type: Transform @@ -53927,14 +56532,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 6865 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 6909 components: - type: Transform @@ -54057,6 +56654,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 7268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7410 components: - type: Transform @@ -54233,6 +56838,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 7528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7578 components: - type: Transform @@ -54264,14 +56877,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7790 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 7819 components: - type: Transform @@ -54280,6 +56885,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#9F2B68FF' + - uid: 7829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7830 components: - type: Transform @@ -54563,6 +57176,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 8231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8295 components: - type: Transform @@ -54639,470 +57260,115 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8384 + - uid: 8368 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,34.5 + rot: -1.5707963267948966 rad + pos: 57.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8397 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8398 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 8399 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,35.5 + pos: 54.5,35.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8400 + - uid: 8445 components: - type: Transform rot: 3.141592653589793 rad - pos: 45.5,34.5 + pos: 49.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8401 + color: '#990000FF' + - uid: 8450 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,24.5 + pos: 49.5,29.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8402 + - uid: 8492 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,31.5 + pos: 46.5,42.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8403 + - uid: 8494 components: - type: Transform rot: -1.5707963267948966 rad - pos: 44.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8406 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,35.5 + pos: 45.5,41.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8409 + - uid: 8511 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8410 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,35.5 + rot: -1.5707963267948966 rad + pos: 56.5,36.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8549 + - uid: 8527 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8550 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,23.5 + rot: -1.5707963267948966 rad + pos: 22.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 8551 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,23.5 + rot: -1.5707963267948966 rad + pos: 50.5,19.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8552 + - uid: 8561 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,23.5 + pos: 48.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8553 + color: '#0055CCFF' + - uid: 8567 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,23.5 + pos: 54.5,13.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8554 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8556 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8557 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8558 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8559 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8560 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8576 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8577 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8578 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8579 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8580 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8582 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8583 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8586 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8587 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8588 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8590 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8591 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8593 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8600 + - uid: 8602 components: - type: Transform rot: 3.141592653589793 rad - pos: 40.5,24.5 + pos: 60.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8608 + components: + - type: Transform + pos: 25.5,30.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8604 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8605 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8606 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8611 - components: - - type: Transform - pos: 33.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8613 - components: - - type: Transform - pos: 33.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8614 - components: - - type: Transform - pos: 35.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8615 - components: - - type: Transform - pos: 35.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8616 - components: - - type: Transform - pos: 35.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8617 - components: - - type: Transform - pos: 35.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8618 - components: - - type: Transform - pos: 35.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8619 - components: - - type: Transform - pos: 35.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 8622 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,19.5 + pos: 25.5,29.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8623 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8624 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8625 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8626 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8627 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8631 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8632 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8633 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8634 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8636 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8637 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 8638 components: - type: Transform @@ -55110,86 +57376,37 @@ entities: parent: 2 - type: AtmosPipeColor color: '#9F2B68FF' - - uid: 8654 + - uid: 8662 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,30.5 + pos: 27.5,23.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8655 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8660 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8672 + - uid: 8686 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,19.5 + pos: 46.5,18.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8673 + - uid: 8731 components: - type: Transform rot: 1.5707963267948966 rad - pos: 53.5,34.5 + pos: 50.5,33.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8678 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8680 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8681 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8683 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8713 + - uid: 8817 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,35.5 + pos: 51.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 8924 components: - type: Transform @@ -55201,6 +57418,51 @@ entities: - type: Transform pos: 42.5,-24.5 parent: 2 + - uid: 9035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9264 + components: + - type: Transform + pos: 54.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9267 + components: + - type: Transform + pos: 54.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9305 + components: + - type: Transform + pos: 56.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9309 components: - type: Transform @@ -55209,6 +57471,53 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9316 + components: + - type: Transform + pos: 56.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 9425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 9534 components: - type: Transform @@ -55429,6 +57738,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 9629 components: - type: Transform @@ -55482,6 +57799,22 @@ entities: - type: Transform pos: 42.5,-23.5 parent: 2 + - uid: 9750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 10045 components: - type: Transform @@ -55498,99 +57831,49 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10049 + - uid: 10054 components: - type: Transform rot: 3.141592653589793 rad - pos: 59.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10050 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10051 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10052 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10053 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10055 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,17.5 + pos: 60.5,19.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10056 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,16.5 + rot: -1.5707963267948966 rad + pos: 47.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10058 + color: '#990000FF' + - uid: 10057 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,14.5 + rot: -1.5707963267948966 rad + pos: 49.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10059 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10060 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 10061 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,14.5 + pos: 62.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10062 + components: + - type: Transform + pos: 60.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10063 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,14.5 + rot: -1.5707963267948966 rad + pos: 62.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -55646,14 +57929,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10115 + - uid: 10086 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,24.5 + pos: 62.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 10117 components: - type: Transform @@ -56077,20 +58359,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10323 components: - type: Transform - pos: 54.5,13.5 + pos: 58.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10324 - components: - - type: Transform - pos: 54.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 10325 components: - type: Transform @@ -56154,104 +58437,71 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10334 + components: + - type: Transform + pos: 25.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10337 - components: - - type: Transform - pos: 62.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10338 - components: - - type: Transform - pos: 62.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10339 - components: - - type: Transform - pos: 62.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10340 components: - type: Transform rot: -1.5707963267948966 rad - pos: 61.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10341 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10342 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,14.5 + pos: 28.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10344 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,14.5 + pos: 60.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10345 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,14.5 + rot: 1.5707963267948966 rad + pos: 59.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10348 + - uid: 10346 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,18.5 + pos: 56.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10349 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,18.5 + rot: 1.5707963267948966 rad + pos: 26.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 10350 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,18.5 + rot: 1.5707963267948966 rad + pos: 57.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10353 + color: '#990000FF' + - uid: 10351 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10354 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,24.5 + pos: 60.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -56262,30 +58512,38 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 10361 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10362 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10367 + - uid: 10360 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,19.5 + pos: 65.5,14.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 10361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 10368 components: - type: Transform @@ -56313,8 +58571,8 @@ entities: - uid: 10371 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,19.5 + rot: -1.5707963267948966 rad + pos: 48.5,19.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -56366,59 +58624,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 10385 + - uid: 10383 components: - type: Transform - pos: 63.5,14.5 + pos: 60.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10386 - components: - - type: Transform - pos: 63.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10387 - components: - - type: Transform - pos: 63.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 10388 components: - type: Transform rot: -1.5707963267948966 rad - pos: 64.5,15.5 + pos: 38.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10389 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10390 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10391 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 10392 components: - type: Transform @@ -56451,120 +58671,57 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 10396 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 10397 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,11.5 + pos: 58.5,11.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 10398 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10405 - components: - - type: Transform - pos: 58.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10406 - components: - - type: Transform - pos: 58.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10407 - components: - - type: Transform - pos: 58.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10408 + - uid: 10402 components: - type: Transform rot: -1.5707963267948966 rad - pos: 59.5,23.5 + pos: 47.5,42.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 10409 + - uid: 10413 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,23.5 + pos: 50.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10410 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10428 - components: - - type: Transform - pos: 63.5,24.5 - parent: 2 - - uid: 10429 - components: - - type: Transform - pos: 63.5,25.5 - parent: 2 - - uid: 10430 - components: - - type: Transform - pos: 63.5,26.5 - parent: 2 - - uid: 10431 - components: - - type: Transform - pos: 63.5,27.5 - parent: 2 - - uid: 10432 - components: - - type: Transform - pos: 64.5,27.5 - parent: 2 - - uid: 10433 - components: - - type: Transform - pos: 64.5,26.5 - parent: 2 - - uid: 10434 - components: - - type: Transform - pos: 64.5,25.5 - parent: 2 - - uid: 10435 - components: - - type: Transform - pos: 64.5,24.5 - parent: 2 - - uid: 10453 + color: '#0055CCFF' + - uid: 10522 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,29.5 + pos: 33.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,23.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -56645,14 +58802,6 @@ entities: - type: Transform pos: 43.5,-23.5 parent: 2 - - uid: 10840 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 11101 components: - type: Transform @@ -57029,6 +59178,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 11699 components: - type: Transform @@ -57249,6 +59414,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 11879 + components: + - type: Transform + pos: 41.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 11925 components: - type: Transform @@ -57358,6 +59530,38 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 12046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 12301 components: - type: Transform @@ -57366,6 +59570,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#9F2B68FF' + - uid: 12530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 12729 components: - type: Transform @@ -57450,6 +59670,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 13326 + components: + - type: Transform + pos: 41.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 13448 components: - type: Transform @@ -57458,97 +59685,10 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 13498 + - uid: 13641 components: - type: Transform - pos: 46.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13519 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13522 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13524 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13525 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13548 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13551 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13552 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13553 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13554 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13555 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13575 - components: - - type: Transform - pos: 46.5,33.5 + pos: 55.5,20.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -58008,14 +60148,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 14171 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 14172 components: - type: Transform @@ -58023,7 +60155,7 @@ entities: pos: 82.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14328 components: - type: Transform @@ -58032,6 +60164,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14370 components: - type: Transform @@ -58039,7 +60187,7 @@ entities: pos: 82.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14371 components: - type: Transform @@ -58047,7 +60195,7 @@ entities: pos: 82.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14375 components: - type: Transform @@ -58055,7 +60203,7 @@ entities: pos: 83.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14378 components: - type: Transform @@ -58109,7 +60257,7 @@ entities: pos: 85.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14414 components: - type: Transform @@ -58117,7 +60265,7 @@ entities: pos: 86.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14415 components: - type: Transform @@ -58125,7 +60273,7 @@ entities: pos: 87.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14416 components: - type: Transform @@ -58172,7 +60320,7 @@ entities: pos: 88.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14428 components: - type: Transform @@ -58180,7 +60328,7 @@ entities: pos: 89.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14430 components: - type: Transform @@ -58188,7 +60336,7 @@ entities: pos: 91.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14584 components: - type: Transform @@ -58290,7 +60438,7 @@ entities: pos: 71.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14619 components: - type: Transform @@ -58298,7 +60446,7 @@ entities: pos: 71.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14620 components: - type: Transform @@ -58306,7 +60454,15 @@ entities: pos: 71.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' + - uid: 14643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 14665 components: - type: Transform @@ -58328,6 +60484,259 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14846 + components: + - type: Transform + pos: 37.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14875 + components: + - type: Transform + pos: 37.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14876 + components: + - type: Transform + pos: 39.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14877 + components: + - type: Transform + pos: 39.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14878 + components: + - type: Transform + pos: 39.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14889 + components: + - type: Transform + pos: 27.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14891 + components: + - type: Transform + pos: 34.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14894 + components: + - type: Transform + pos: 35.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14899 + components: + - type: Transform + pos: 33.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14900 + components: + - type: Transform + pos: 33.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14901 + components: + - type: Transform + pos: 33.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14902 + components: + - type: Transform + pos: 33.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14903 + components: + - type: Transform + pos: 33.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14904 + components: + - type: Transform + pos: 33.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14924 + components: + - type: Transform + pos: 33.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14927 + components: + - type: Transform + pos: 33.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14928 + components: + - type: Transform + pos: 33.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14929 + components: + - type: Transform + pos: 33.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14930 + components: + - type: Transform + pos: 30.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 14957 components: - type: Transform @@ -58344,12 +60753,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 14962 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,17.5 - parent: 2 - uid: 14964 components: - type: Transform @@ -58357,6 +60760,30 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 14974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 15087 components: - type: Transform @@ -58389,6 +60816,45 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 15127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15143 + components: + - type: Transform + pos: 40.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 15162 components: - type: Transform @@ -58500,6 +60966,349 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 15385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15468 + components: + - type: Transform + pos: 53.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15470 + components: + - type: Transform + pos: 53.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15503 + components: + - type: Transform + pos: 46.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15504 + components: + - type: Transform + pos: 46.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15505 + components: + - type: Transform + pos: 46.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15506 + components: + - type: Transform + pos: 46.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15507 + components: + - type: Transform + pos: 46.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15508 + components: + - type: Transform + pos: 46.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15509 + components: + - type: Transform + pos: 46.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15525 + components: + - type: Transform + pos: 39.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15628 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraightAlt1 + entities: + - uid: 8629 + components: + - type: Transform + pos: 64.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 8705 + components: + - type: Transform + pos: 64.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 10601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' +- proto: GasPipeStraightAlt2 + entities: + - uid: 4360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPipeTJunction entities: - uid: 14 @@ -58518,6 +61327,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 224 + components: + - type: Transform + pos: 20.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 347 components: - type: Transform @@ -58539,6 +61355,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 426 components: - type: Transform @@ -58629,6 +61453,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 1281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1304 components: - type: Transform @@ -58778,6 +61610,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2278 + components: + - type: Transform + pos: 42.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2529 components: - type: Transform @@ -58799,6 +61638,13 @@ entities: rot: 1.5707963267948966 rad pos: 43.5,-26.5 parent: 2 + - uid: 3067 + components: + - type: Transform + pos: 50.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3124 components: - type: Transform @@ -58807,14 +61653,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3258 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3351 components: - type: Transform @@ -58831,6 +61669,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 3479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3521 components: - type: Transform @@ -58839,14 +61685,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3667 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3691 components: - type: Transform @@ -58962,22 +61800,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 4131 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4188 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4199 components: - type: Transform @@ -58993,11 +61815,25 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4361 + - uid: 4365 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,18.5 + pos: 63.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4368 + components: + - type: Transform + pos: 62.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -59232,22 +62068,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5238 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5239 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5241 components: - type: Transform @@ -59256,13 +62076,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5242 - components: - - type: Transform - pos: 26.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5284 components: - type: Transform @@ -59271,21 +62084,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 5509 + - uid: 5290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 5323 components: - type: Transform rot: 3.141592653589793 rad - pos: 64.5,14.5 + pos: 62.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6336 - components: - - type: Transform - pos: 48.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 6423 components: - type: Transform @@ -59346,6 +62160,8 @@ entities: rot: 1.5707963267948966 rad pos: 30.5,-10.5 parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6601 components: - type: Transform @@ -59370,6 +62186,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6850 + components: + - type: Transform + pos: 51.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7169 components: - type: Transform @@ -59441,11 +62264,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7802 + - uid: 7741 components: - type: Transform - pos: 50.5,24.5 + rot: 1.5707963267948966 rad + pos: 48.5,40.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7881 components: - type: Transform @@ -59509,33 +62335,39 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8555 + - uid: 8664 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,24.5 + pos: 37.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8561 + - uid: 8678 components: - type: Transform - pos: 33.5,23.5 + rot: 1.5707963267948966 rad + pos: 25.5,31.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8563 + - uid: 8798 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,24.5 + pos: 56.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8594 + - uid: 9034 components: - type: Transform - pos: 35.5,24.5 + pos: 49.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9039 + components: + - type: Transform + pos: 50.5,32.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -59547,6 +62379,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 9408 + components: + - type: Transform + pos: 39.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 9533 components: - type: Transform @@ -59586,44 +62425,30 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10047 + - uid: 9894 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,24.5 + pos: 55.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10048 - components: - - type: Transform - pos: 59.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10057 + color: '#990000FF' + - uid: 10052 components: - type: Transform rot: 3.141592653589793 rad - pos: 59.5,14.5 + pos: 64.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10062 + - uid: 10059 components: - type: Transform - pos: 54.5,14.5 + rot: 3.141592653589793 rad + pos: 55.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10116 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 10141 components: - type: Transform @@ -59679,76 +62504,68 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10336 + - uid: 10331 components: - type: Transform - pos: 62.5,14.5 + rot: -1.5707963267948966 rad + pos: 18.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10357 + color: '#03FCD3FF' + - uid: 10342 components: - type: Transform rot: 3.141592653589793 rad - pos: 48.5,10.5 + pos: 35.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10360 + - uid: 10356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10375 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,29.5 + pos: 25.5,22.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 10363 + - uid: 10385 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10380 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10381 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10383 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10404 - components: - - type: Transform - pos: 58.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10846 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,30.5 + pos: 54.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10603 + components: + - type: Transform + pos: 37.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10889 + components: + - type: Transform + pos: 52.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' - uid: 10907 components: - type: Transform @@ -59902,11 +62719,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#9F2B68FF' - - uid: 13577 + - uid: 13120 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,31.5 + rot: 3.141592653589793 rad + pos: 41.5,31.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -59948,14 +62765,14 @@ entities: pos: 82.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14376 components: - type: Transform pos: 84.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14380 components: - type: Transform @@ -59985,7 +62802,76 @@ entities: pos: 90.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' + - uid: 14843 + components: + - type: Transform + pos: 33.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15380 + components: + - type: Transform + pos: 47.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15529 + components: + - type: Transform + pos: 53.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPort entities: - uid: 1945 @@ -60075,12 +62961,6 @@ entities: rot: 3.141592653589793 rad pos: 63.5,22.5 parent: 2 - - uid: 10425 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,22.5 - parent: 2 - uid: 12871 components: - type: Transform @@ -60109,6 +62989,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' + - uid: 13581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,22.5 + parent: 2 + - type: AtmosPipeLayers + pipeLayer: Secondary - uid: 14391 components: - type: Transform @@ -60118,6 +63006,18 @@ entities: color: '#0335FCFF' - proto: GasPressurePump entities: + - uid: 2355 + components: + - type: MetaData + name: gas pump (Distro In) + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,24.5 + parent: 2 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2437 components: - type: Transform @@ -60184,6 +63084,8 @@ entities: rot: 1.5707963267948966 rad pos: 27.5,-23.5 parent: 2 + - type: GasPressurePump + targetPressure: 4500 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5037 @@ -60203,6 +63105,26 @@ entities: targetPressure: 4500 - type: AtmosPipeColor color: '#947507FF' + - uid: 5497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6334 + components: + - type: MetaData + name: gas pump (Gas In) + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - type: AtmosPipeLayers + pipeLayer: Secondary - uid: 6583 components: - type: Transform @@ -60211,14 +63133,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7803 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 7883 components: - type: Transform @@ -60226,17 +63140,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#9F2B68FF' - - uid: 10423 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,23.5 - parent: 2 - - uid: 10424 - components: - - type: Transform - pos: 64.5,23.5 - parent: 2 - uid: 11577 components: - type: Transform @@ -60251,6 +63154,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 12329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14374 components: - type: Transform @@ -60258,7 +63169,7 @@ entities: pos: 82.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14390 components: - type: Transform @@ -60268,6 +63179,14 @@ entities: color: '#0335FCFF' - proto: GasThermoMachineFreezer entities: + - uid: 631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 3966 components: - type: Transform @@ -60286,12 +63205,16 @@ entities: rot: 1.5707963267948966 rad pos: 40.5,-40.5 parent: 2 - - uid: 7984 + - uid: 5320 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,23.5 parent: 2 + - type: GasThermoMachine + targetTemperature: 270 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11775 components: - type: Transform @@ -60306,6 +63229,8 @@ entities: - type: Transform pos: 30.5,-9.5 parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - type: GasThermoMachine targetTemperature: 0 - proto: GasThermoMachineHeater @@ -60412,14 +63337,6 @@ entities: - 14067 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1560 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 1625 components: - type: Transform @@ -60431,17 +63348,6 @@ entities: - 1017 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2301 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,35.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 10988 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2393 components: - type: Transform @@ -60456,14 +63362,23 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3152 + - uid: 3064 components: - type: Transform - pos: 56.5,37.5 + rot: 1.5707963267948966 rad + pos: 46.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,9.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13512 + - 5101 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3692 @@ -60490,6 +63405,17 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5242 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4460 components: - type: Transform @@ -60543,6 +63469,16 @@ entities: - 6126 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5426 + components: + - type: Transform + pos: 40.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - type: DeviceNetwork + deviceLists: + - 10135 - uid: 5533 components: - type: Transform @@ -60573,6 +63509,17 @@ entities: - 10930 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - type: DeviceNetwork + deviceLists: + - 14653 - uid: 5964 components: - type: Transform @@ -60595,6 +63542,8 @@ entities: rot: 3.141592653589793 rad pos: 30.5,-12.5 parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6593 components: - type: Transform @@ -60634,16 +63583,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6774 - components: - - type: Transform - pos: 39.5,31.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 10988 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 6778 components: - type: Transform @@ -60659,6 +63598,17 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - type: DeviceNetwork + deviceLists: + - 1520 - uid: 6908 components: - type: Transform @@ -60702,6 +63652,8 @@ entities: rot: 1.5707963267948966 rad pos: 49.5,24.5 parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7838 components: - type: Transform @@ -60743,6 +63695,9 @@ entities: - type: Transform pos: 26.5,21.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 15466 - type: AtmosPipeColor color: '#0055CCFF' - uid: 8242 @@ -60750,6 +63705,9 @@ entities: - type: Transform pos: 22.5,21.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 15466 - type: AtmosPipeColor color: '#0055CCFF' - uid: 8296 @@ -60776,76 +63734,47 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8349 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,34.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13512 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8575 - components: - - type: Transform - pos: 34.5,25.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 5859 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8596 + - uid: 8485 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,24.5 + pos: 58.5,36.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14171 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10576 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - type: DeviceNetwork deviceLists: - 8571 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8597 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,23.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15476 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8607 - components: - - type: Transform - pos: 39.5,27.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 12530 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8629 - components: - - type: Transform - pos: 38.5,18.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 12528 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8684 - components: - - type: Transform - pos: 42.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 9358 components: - type: Transform @@ -60866,6 +63795,9 @@ entities: - type: Transform pos: 26.5,36.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 15466 - type: AtmosPipeColor color: '#0055CCFF' - uid: 9581 @@ -60890,6 +63822,17 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10409 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10163 components: - type: Transform @@ -60954,78 +63897,26 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10331 - components: - - type: Transform - pos: 48.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10346 + - uid: 10340 components: - type: Transform rot: 3.141592653589793 rad - pos: 62.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10347 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10351 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10352 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10355 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10356 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10358 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10452 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,29.5 + pos: 63.5,14.5 parent: 2 - type: DeviceNetwork deviceLists: - - 5859 + - 10469 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10524 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10643 @@ -61120,6 +64011,25 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 12553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10524 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 13980 components: - type: Transform @@ -61171,7 +64081,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14247 + - 11680 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14385 @@ -61182,7 +64092,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14247 + - 11680 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14420 @@ -61193,7 +64103,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14247 + - 2602 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14433 @@ -61204,7 +64114,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14247 + - 2602 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14613 @@ -61237,6 +64147,27 @@ entities: - 5 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14521 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14941 + components: + - type: Transform + pos: 42.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8571 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 15296 components: - type: Transform @@ -61248,8 +64179,52 @@ entities: - 15297 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 15524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5398 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10419 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - type: DeviceNetwork + deviceLists: + - 15578 - proto: GasVentScrubber entities: + - uid: 3 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10409 + - type: AtmosPipeColor + color: '#990000FF' - uid: 865 components: - type: Transform @@ -61260,6 +64235,16 @@ entities: - 1017 - type: AtmosPipeColor color: '#990000FF' + - uid: 1231 + components: + - type: Transform + pos: 34.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8571 + - type: AtmosPipeColor + color: '#990000FF' - uid: 1232 components: - type: Transform @@ -61293,28 +64278,6 @@ entities: - 14067 - type: AtmosPipeColor color: '#990000FF' - - uid: 2263 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,29.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 5859 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2691 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,21.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 5859 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3475 components: - type: Transform @@ -61347,11 +64310,9 @@ entities: - uid: 4414 components: - type: Transform - pos: 50.5,35.5 + rot: -1.5707963267948966 rad + pos: 49.5,40.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13512 - type: AtmosPipeColor color: '#990000FF' - uid: 4447 @@ -61378,6 +64339,17 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 5450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5398 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5679 components: - type: Transform @@ -61398,6 +64370,17 @@ entities: - 10930 - type: AtmosPipeColor color: '#990000FF' + - uid: 5821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 14653 - uid: 5968 components: - type: Transform @@ -61512,17 +64495,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 7760 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,31.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 10988 - - type: AtmosPipeColor - color: '#990000FF' - uid: 7837 components: - type: Transform @@ -61575,64 +64547,31 @@ entities: - type: Transform pos: 23.5,22.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 15466 - type: AtmosPipeColor color: '#990000FF' - - uid: 8595 + - uid: 8498 + components: + - type: Transform + pos: 53.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14171 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8625 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,23.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 8571 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8598 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15476 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8610 - components: - - type: Transform - pos: 40.5,26.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 12530 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8630 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,19.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 12528 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8685 - components: - - type: Transform - pos: 41.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8810 - components: - - type: Transform - rot: 3.141592653589793 rad pos: 26.5,22.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 11165 + - 15466 - type: AtmosPipeColor color: '#990000FF' - uid: 9359 @@ -61643,6 +64582,34 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 9406 + components: + - type: Transform + pos: 62.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9442 + components: + - type: Transform + pos: 55.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10469 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5242 + - type: AtmosPipeColor + color: '#990000FF' - uid: 9546 components: - type: Transform @@ -61672,6 +64639,9 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,37.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 15466 - type: AtmosPipeColor color: '#990000FF' - uid: 9636 @@ -61681,6 +64651,17 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 10058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10576 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10128 components: - type: Transform @@ -61744,6 +64725,17 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 10324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5101 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10365 components: - type: Transform @@ -61752,69 +64744,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 10366 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10375 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10400 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10401 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10402 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10403 - components: - - type: Transform - pos: 57.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10411 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10412 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 10652 components: - type: Transform @@ -61899,15 +64828,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 13517 + - uid: 12529 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,33.5 + rot: 1.5707963267948966 rad + pos: 44.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,37.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13512 - type: AtmosPipeColor color: '#990000FF' - uid: 13985 @@ -61962,9 +64904,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14247 + - 11680 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14377 components: - type: Transform @@ -61973,9 +64915,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14247 + - 11680 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14421 components: - type: Transform @@ -61984,9 +64926,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14247 + - 2602 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14432 components: - type: Transform @@ -61994,9 +64936,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14247 + - 2602 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14616 components: - type: Transform @@ -62007,7 +64949,7 @@ entities: deviceLists: - 14615 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14667 components: - type: Transform @@ -62029,6 +64971,28 @@ entities: - 5 - type: AtmosPipeColor color: '#990000FF' + - uid: 14852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14521 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8571 + - type: AtmosPipeColor + color: '#990000FF' - uid: 14960 components: - type: Transform @@ -62040,6 +65004,39 @@ entities: - 7962 - type: AtmosPipeColor color: '#990000FF' + - uid: 15490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10524 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10524 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 15578 - proto: GasVolumePump entities: - uid: 1238 @@ -62127,11 +65124,10 @@ entities: parent: 2 - proto: GlassBoxLaserFilled entities: - - uid: 5106 + - uid: 11681 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,39.5 + pos: 31.5,43.5 parent: 2 - proto: GlowstickRed entities: @@ -62149,16 +65145,6 @@ entities: parent: 2 - proto: Grille entities: - - uid: 18 - components: - - type: Transform - pos: 57.5,46.5 - parent: 2 - - uid: 19 - components: - - type: Transform - pos: 55.5,46.5 - parent: 2 - uid: 85 components: - type: Transform @@ -62264,16 +65250,6 @@ entities: - type: Transform pos: -9.5,-15.5 parent: 2 - - uid: 660 - components: - - type: Transform - pos: 17.5,-16.5 - parent: 2 - - uid: 661 - components: - - type: Transform - pos: 17.5,-18.5 - parent: 2 - uid: 663 components: - type: Transform @@ -62514,16 +65490,6 @@ entities: - type: Transform pos: 34.5,-58.5 parent: 2 - - uid: 1254 - components: - - type: Transform - pos: 38.5,-10.5 - parent: 2 - - uid: 1274 - components: - - type: Transform - pos: 39.5,32.5 - parent: 2 - uid: 1338 components: - type: Transform @@ -62654,16 +65620,6 @@ entities: - type: Transform pos: -5.5,16.5 parent: 2 - - uid: 1999 - components: - - type: Transform - pos: 5.5,22.5 - parent: 2 - - uid: 2000 - components: - - type: Transform - pos: 4.5,22.5 - parent: 2 - uid: 2001 components: - type: Transform @@ -62684,16 +65640,6 @@ entities: - type: Transform pos: 4.5,25.5 parent: 2 - - uid: 2009 - components: - - type: Transform - pos: 5.5,28.5 - parent: 2 - - uid: 2010 - components: - - type: Transform - pos: 4.5,28.5 - parent: 2 - uid: 2013 components: - type: Transform @@ -62729,90 +65675,40 @@ entities: - type: Transform pos: 24.5,12.5 parent: 2 - - uid: 2236 + - uid: 2247 components: - type: Transform - pos: 28.5,21.5 + pos: 30.5,29.5 parent: 2 - - uid: 2237 + - uid: 2249 components: - type: Transform - pos: 28.5,20.5 + pos: 62.5,33.5 parent: 2 - - uid: 2238 + - uid: 2250 components: - type: Transform - pos: 28.5,18.5 + pos: 29.5,29.5 parent: 2 - - uid: 2239 + - uid: 2308 components: - type: Transform - pos: 28.5,17.5 + pos: 40.5,29.5 parent: 2 - - uid: 2254 + - uid: 2309 components: - type: Transform - pos: 31.5,21.5 + pos: 39.5,29.5 parent: 2 - - uid: 2255 + - uid: 2311 components: - type: Transform - pos: 31.5,17.5 - parent: 2 - - uid: 2281 - components: - - type: Transform - pos: 44.5,34.5 - parent: 2 - - uid: 2282 - components: - - type: Transform - pos: 44.5,35.5 - parent: 2 - - uid: 2283 - components: - - type: Transform - pos: 44.5,36.5 - parent: 2 - - uid: 2351 - components: - - type: Transform - pos: 37.5,24.5 - parent: 2 - - uid: 2352 - components: - - type: Transform - pos: 37.5,23.5 - parent: 2 - - uid: 2357 - components: - - type: Transform - pos: 41.5,25.5 + pos: 35.5,25.5 parent: 2 - uid: 2358 components: - type: Transform - pos: 37.5,21.5 - parent: 2 - - uid: 2359 - components: - - type: Transform - pos: 38.5,20.5 - parent: 2 - - uid: 2365 - components: - - type: Transform - pos: 38.5,25.5 - parent: 2 - - uid: 2371 - components: - - type: Transform - pos: 42.5,24.5 - parent: 2 - - uid: 2372 - components: - - type: Transform - pos: 42.5,22.5 + pos: 74.5,52.5 parent: 2 - uid: 2392 components: @@ -62829,15 +65725,20 @@ entities: - type: Transform pos: 28.5,-27.5 parent: 2 - - uid: 2456 + - uid: 2448 components: - type: Transform - pos: 43.5,16.5 + pos: 70.5,51.5 parent: 2 - - uid: 2457 + - uid: 2468 components: - type: Transform - pos: 41.5,16.5 + pos: 41.5,39.5 + parent: 2 + - uid: 2481 + components: + - type: Transform + pos: 43.5,39.5 parent: 2 - uid: 2512 components: @@ -62859,6 +65760,16 @@ entities: - type: Transform pos: 39.5,5.5 parent: 2 + - uid: 2571 + components: + - type: Transform + pos: 74.5,51.5 + parent: 2 + - uid: 2600 + components: + - type: Transform + pos: 69.5,51.5 + parent: 2 - uid: 2618 components: - type: Transform @@ -62914,16 +65825,6 @@ entities: - type: Transform pos: 13.5,42.5 parent: 2 - - uid: 2676 - components: - - type: Transform - pos: 24.5,34.5 - parent: 2 - - uid: 2677 - components: - - type: Transform - pos: 23.5,34.5 - parent: 2 - uid: 2734 components: - type: Transform @@ -63179,230 +66080,46 @@ entities: - type: Transform pos: 64.5,-2.5 parent: 2 - - uid: 3045 + - uid: 3129 components: - type: Transform - pos: 55.5,12.5 + pos: 35.5,28.5 parent: 2 - - uid: 3046 + - uid: 3142 components: - type: Transform - pos: 53.5,12.5 + pos: 71.5,51.5 parent: 2 - - uid: 3067 + - uid: 3261 components: - type: Transform - pos: 42.5,40.5 + pos: 39.5,53.5 parent: 2 - - uid: 3068 + - uid: 3264 components: - type: Transform - pos: 41.5,40.5 + pos: 37.5,53.5 parent: 2 - - uid: 3090 + - uid: 3265 components: - type: Transform - pos: 43.5,47.5 - parent: 2 - - uid: 3091 - components: - - type: Transform - pos: 44.5,47.5 - parent: 2 - - uid: 3092 - components: - - type: Transform - pos: 45.5,47.5 - parent: 2 - - uid: 3093 - components: - - type: Transform - pos: 45.5,48.5 - parent: 2 - - uid: 3094 - components: - - type: Transform - pos: 46.5,48.5 - parent: 2 - - uid: 3095 - components: - - type: Transform - pos: 47.5,48.5 - parent: 2 - - uid: 3096 - components: - - type: Transform - pos: 48.5,48.5 - parent: 2 - - uid: 3097 - components: - - type: Transform - pos: 48.5,49.5 - parent: 2 - - uid: 3106 - components: - - type: Transform - pos: 46.5,45.5 - parent: 2 - - uid: 3107 - components: - - type: Transform - pos: 47.5,45.5 - parent: 2 - - uid: 3108 - components: - - type: Transform - pos: 48.5,45.5 - parent: 2 - - uid: 3109 - components: - - type: Transform - pos: 49.5,45.5 - parent: 2 - - uid: 3114 - components: - - type: Transform - pos: 50.5,46.5 - parent: 2 - - uid: 3115 - components: - - type: Transform - pos: 50.5,47.5 - parent: 2 - - uid: 3116 - components: - - type: Transform - pos: 51.5,47.5 - parent: 2 - - uid: 3117 - components: - - type: Transform - pos: 52.5,47.5 - parent: 2 - - uid: 3126 - components: - - type: Transform - pos: 62.5,47.5 - parent: 2 - - uid: 3136 - components: - - type: Transform - pos: 60.5,47.5 - parent: 2 - - uid: 3137 - components: - - type: Transform - pos: 61.5,47.5 - parent: 2 - - uid: 3139 - components: - - type: Transform - pos: 47.5,39.5 - parent: 2 - - uid: 3140 - components: - - type: Transform - pos: 47.5,38.5 - parent: 2 - - uid: 3141 - components: - - type: Transform - pos: 47.5,37.5 - parent: 2 - - uid: 3161 - components: - - type: Transform - pos: 47.5,30.5 - parent: 2 - - uid: 3166 - components: - - type: Transform - pos: 56.5,26.5 - parent: 2 - - uid: 3213 - components: - - type: Transform - pos: 62.5,46.5 + pos: 38.5,53.5 parent: 2 - uid: 3291 components: - type: Transform pos: 47.5,-31.5 parent: 2 - - uid: 3317 - components: - - type: Transform - pos: 64.5,49.5 - parent: 2 - - uid: 3320 - components: - - type: Transform - pos: 65.5,48.5 - parent: 2 - uid: 3322 components: - type: Transform pos: -21.5,-15.5 parent: 2 - - uid: 3323 - components: - - type: Transform - pos: 50.5,49.5 - parent: 2 - - uid: 3324 - components: - - type: Transform - pos: 51.5,49.5 - parent: 2 - - uid: 3325 - components: - - type: Transform - pos: 52.5,49.5 - parent: 2 - - uid: 3326 - components: - - type: Transform - pos: 53.5,49.5 - parent: 2 - - uid: 3329 - components: - - type: Transform - pos: 59.5,49.5 - parent: 2 - - uid: 3330 - components: - - type: Transform - pos: 60.5,49.5 - parent: 2 - - uid: 3331 - components: - - type: Transform - pos: 61.5,49.5 - parent: 2 - uid: 3332 components: - type: Transform - pos: 62.5,49.5 - parent: 2 - - uid: 3341 - components: - - type: Transform - pos: 66.5,48.5 - parent: 2 - - uid: 3342 - components: - - type: Transform - pos: 64.5,48.5 - parent: 2 - - uid: 3349 - components: - - type: Transform - pos: 67.5,48.5 - parent: 2 - - uid: 3350 - components: - - type: Transform - pos: 67.5,47.5 + rot: 3.141592653589793 rad + pos: 50.5,51.5 parent: 2 - uid: 3364 components: @@ -63434,35 +66151,25 @@ entities: - type: Transform pos: 74.5,44.5 parent: 2 - - uid: 3477 + - uid: 3406 components: - type: Transform - pos: 57.5,26.5 + pos: 44.5,39.5 parent: 2 - - uid: 3478 + - uid: 3476 components: - type: Transform - pos: 58.5,26.5 + pos: 42.5,39.5 parent: 2 - uid: 3489 components: - type: Transform pos: 48.5,19.5 parent: 2 - - uid: 3495 + - uid: 3491 components: - type: Transform - pos: 55.5,26.5 - parent: 2 - - uid: 3496 - components: - - type: Transform - pos: 48.5,17.5 - parent: 2 - - uid: 3497 - components: - - type: Transform - pos: 54.5,26.5 + pos: 41.5,38.5 parent: 2 - uid: 3529 components: @@ -63574,11 +66281,6 @@ entities: - type: Transform pos: 79.5,-8.5 parent: 2 - - uid: 3844 - components: - - type: Transform - pos: 36.5,50.5 - parent: 2 - uid: 3855 components: - type: Transform @@ -63724,16 +66426,6 @@ entities: - type: Transform pos: 24.5,-9.5 parent: 2 - - uid: 4319 - components: - - type: Transform - pos: 7.5,29.5 - parent: 2 - - uid: 4320 - components: - - type: Transform - pos: 6.5,29.5 - parent: 2 - uid: 4338 components: - type: Transform @@ -63809,56 +66501,6 @@ entities: - type: Transform pos: 37.5,-34.5 parent: 2 - - uid: 4400 - components: - - type: Transform - pos: 52.5,38.5 - parent: 2 - - uid: 4401 - components: - - type: Transform - pos: 52.5,39.5 - parent: 2 - - uid: 4402 - components: - - type: Transform - pos: 60.5,36.5 - parent: 2 - - uid: 4404 - components: - - type: Transform - pos: 65.5,37.5 - parent: 2 - - uid: 4405 - components: - - type: Transform - pos: 65.5,36.5 - parent: 2 - - uid: 4408 - components: - - type: Transform - pos: 40.5,29.5 - parent: 2 - - uid: 4409 - components: - - type: Transform - pos: 39.5,29.5 - parent: 2 - - uid: 4410 - components: - - type: Transform - pos: 57.5,30.5 - parent: 2 - - uid: 4411 - components: - - type: Transform - pos: 56.5,30.5 - parent: 2 - - uid: 4412 - components: - - type: Transform - pos: 55.5,30.5 - parent: 2 - uid: 4415 components: - type: Transform @@ -63929,6 +66571,12 @@ entities: - type: Transform pos: 47.5,-37.5 parent: 2 + - uid: 4699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,29.5 + parent: 2 - uid: 5043 components: - type: Transform @@ -63954,56 +66602,53 @@ entities: - type: Transform pos: 10.5,47.5 parent: 2 + - uid: 5413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,37.5 + parent: 2 - uid: 5431 components: - type: Transform pos: 45.5,-33.5 parent: 2 - - uid: 5483 + - uid: 5458 components: - type: Transform - pos: 72.5,33.5 + pos: 37.5,29.5 parent: 2 - - uid: 5484 + - uid: 5491 components: - type: Transform - pos: 72.5,32.5 + rot: -1.5707963267948966 rad + pos: 73.5,32.5 parent: 2 - - uid: 5485 + - uid: 5506 components: - type: Transform - pos: 72.5,31.5 + pos: 63.5,33.5 parent: 2 - - uid: 5486 + - uid: 5512 components: - type: Transform - pos: 72.5,29.5 - parent: 2 - - uid: 5487 - components: - - type: Transform - pos: 72.5,28.5 - parent: 2 - - uid: 5488 - components: - - type: Transform - pos: 72.5,27.5 + pos: 35.5,27.5 parent: 2 - uid: 5581 components: - type: Transform pos: 9.5,47.5 parent: 2 + - uid: 5649 + components: + - type: Transform + pos: 64.5,33.5 + parent: 2 - uid: 5743 components: - type: Transform pos: 4.5,33.5 parent: 2 - - uid: 5751 - components: - - type: Transform - pos: 21.5,53.5 - parent: 2 - uid: 5752 components: - type: Transform @@ -64024,11 +66669,6 @@ entities: - type: Transform pos: 26.5,53.5 parent: 2 - - uid: 5757 - components: - - type: Transform - pos: 27.5,53.5 - parent: 2 - uid: 5758 components: - type: Transform @@ -64059,16 +66699,6 @@ entities: - type: Transform pos: 33.5,53.5 parent: 2 - - uid: 5765 - components: - - type: Transform - pos: 56.5,49.5 - parent: 2 - - uid: 5966 - components: - - type: Transform - pos: 56.5,50.5 - parent: 2 - uid: 6124 components: - type: Transform @@ -64114,10 +66744,10 @@ entities: - type: Transform pos: 99.5,26.5 parent: 2 - - uid: 6493 + - uid: 6338 components: - type: Transform - pos: 27.5,55.5 + pos: 36.5,28.5 parent: 2 - uid: 6501 components: @@ -64194,11 +66824,26 @@ entities: - type: Transform pos: -9.5,1.5 parent: 2 + - uid: 6846 + components: + - type: Transform + pos: -0.5,-42.5 + parent: 2 + - uid: 6849 + components: + - type: Transform + pos: 60.5,51.5 + parent: 2 - uid: 6860 components: - type: Transform pos: -20.5,16.5 parent: 2 + - uid: 6868 + components: + - type: Transform + pos: 62.5,51.5 + parent: 2 - uid: 6874 components: - type: Transform @@ -64234,31 +66879,11 @@ entities: - type: Transform pos: -14.5,16.5 parent: 2 - - uid: 6915 - components: - - type: Transform - pos: 30.5,57.5 - parent: 2 - - uid: 6917 - components: - - type: Transform - pos: 25.5,57.5 - parent: 2 - uid: 6921 components: - type: Transform pos: 43.5,1.5 parent: 2 - - uid: 6922 - components: - - type: Transform - pos: 24.5,55.5 - parent: 2 - - uid: 6945 - components: - - type: Transform - pos: 33.5,16.5 - parent: 2 - uid: 7010 components: - type: Transform @@ -64389,11 +67014,6 @@ entities: - type: Transform pos: -20.5,-13.5 parent: 2 - - uid: 7753 - components: - - type: Transform - pos: 65.5,35.5 - parent: 2 - uid: 7764 components: - type: Transform @@ -64404,16 +67024,6 @@ entities: - type: Transform pos: 9.5,45.5 parent: 2 - - uid: 7795 - components: - - type: Transform - pos: 52.5,25.5 - parent: 2 - - uid: 7799 - components: - - type: Transform - pos: 52.5,23.5 - parent: 2 - uid: 7814 components: - type: Transform @@ -64554,15 +67164,163 @@ entities: - type: Transform pos: 17.5,-37.5 parent: 2 - - uid: 8389 + - uid: 8320 components: - type: Transform - pos: 47.5,31.5 + pos: 77.5,52.5 parent: 2 - - uid: 8567 + - uid: 8324 components: - type: Transform - pos: 34.5,16.5 + pos: 79.5,52.5 + parent: 2 + - uid: 8328 + components: + - type: Transform + pos: 78.5,52.5 + parent: 2 + - uid: 8337 + components: + - type: Transform + pos: 80.5,52.5 + parent: 2 + - uid: 8348 + components: + - type: Transform + pos: 82.5,52.5 + parent: 2 + - uid: 8349 + components: + - type: Transform + pos: 81.5,52.5 + parent: 2 + - uid: 8350 + components: + - type: Transform + pos: 84.5,52.5 + parent: 2 + - uid: 8351 + components: + - type: Transform + pos: 83.5,52.5 + parent: 2 + - uid: 8352 + components: + - type: Transform + pos: 85.5,52.5 + parent: 2 + - uid: 8353 + components: + - type: Transform + pos: 89.5,52.5 + parent: 2 + - uid: 8354 + components: + - type: Transform + pos: 87.5,52.5 + parent: 2 + - uid: 8355 + components: + - type: Transform + pos: 89.5,51.5 + parent: 2 + - uid: 8356 + components: + - type: Transform + pos: 89.5,38.5 + parent: 2 + - uid: 8357 + components: + - type: Transform + pos: 89.5,50.5 + parent: 2 + - uid: 8371 + components: + - type: Transform + pos: 89.5,40.5 + parent: 2 + - uid: 8372 + components: + - type: Transform + pos: 61.5,51.5 + parent: 2 + - uid: 8375 + components: + - type: Transform + pos: 89.5,39.5 + parent: 2 + - uid: 8383 + components: + - type: Transform + pos: 89.5,49.5 + parent: 2 + - uid: 8385 + components: + - type: Transform + pos: 89.5,41.5 + parent: 2 + - uid: 8519 + components: + - type: Transform + pos: 36.5,23.5 + parent: 2 + - uid: 8531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,28.5 + parent: 2 + - uid: 8532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,28.5 + parent: 2 + - uid: 8545 + components: + - type: Transform + pos: 53.5,12.5 + parent: 2 + - uid: 8584 + components: + - type: Transform + pos: 75.5,52.5 + parent: 2 + - uid: 8586 + components: + - type: Transform + pos: 76.5,52.5 + parent: 2 + - uid: 8594 + components: + - type: Transform + pos: 54.5,12.5 + parent: 2 + - uid: 8596 + components: + - type: Transform + pos: 44.5,32.5 + parent: 2 + - uid: 8598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,31.5 + parent: 2 + - uid: 8626 + components: + - type: Transform + pos: 37.5,23.5 + parent: 2 + - uid: 8655 + components: + - type: Transform + pos: 38.5,23.5 + parent: 2 + - uid: 8661 + components: + - type: Transform + pos: 19.5,53.5 parent: 2 - uid: 8667 components: @@ -64574,10 +67332,20 @@ entities: - type: Transform pos: 63.5,26.5 parent: 2 - - uid: 8703 + - uid: 8679 components: - type: Transform - pos: 55.5,42.5 + pos: 36.5,29.5 + parent: 2 + - uid: 8687 + components: + - type: Transform + pos: 40.5,23.5 + parent: 2 + - uid: 8716 + components: + - type: Transform + pos: 39.5,23.5 parent: 2 - uid: 8719 components: @@ -64989,46 +67757,75 @@ entities: - type: Transform pos: 117.5,-20.5 parent: 2 + - uid: 9132 + components: + - type: Transform + pos: 35.5,24.5 + parent: 2 + - uid: 9261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,26.5 + parent: 2 + - uid: 9293 + components: + - type: Transform + pos: 18.5,53.5 + parent: 2 + - uid: 9331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,51.5 + parent: 2 + - uid: 9335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,53.5 + parent: 2 - uid: 9349 components: - type: Transform pos: -20.5,-15.5 parent: 2 - - uid: 9894 + - uid: 9439 components: - type: Transform - pos: 29.5,57.5 + pos: 72.5,51.5 parent: 2 - - uid: 9895 + - uid: 9440 components: - type: Transform - pos: 27.5,57.5 + pos: 88.5,52.5 parent: 2 - - uid: 9898 + - uid: 9441 components: - type: Transform - pos: 28.5,55.5 - parent: 2 - - uid: 9903 - components: - - type: Transform - pos: 24.5,57.5 - parent: 2 - - uid: 10138 - components: - - type: Transform - pos: 28.5,29.5 - parent: 2 - - uid: 10343 - components: - - type: Transform - pos: 43.5,40.5 + pos: 86.5,52.5 parent: 2 - uid: 10801 components: - type: Transform pos: 85.5,-14.5 parent: 2 + - uid: 10830 + components: + - type: Transform + pos: 44.5,48.5 + parent: 2 + - uid: 10866 + components: + - type: Transform + pos: 28.5,20.5 + parent: 2 + - uid: 10867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,23.5 + parent: 2 - uid: 10951 components: - type: Transform @@ -65044,11 +67841,6 @@ entities: - type: Transform pos: 25.5,-59.5 parent: 2 - - uid: 10974 - components: - - type: Transform - pos: 41.5,32.5 - parent: 2 - uid: 10975 components: - type: Transform @@ -65069,6 +67861,16 @@ entities: - type: Transform pos: 4.5,43.5 parent: 2 + - uid: 11159 + components: + - type: Transform + pos: 42.5,48.5 + parent: 2 + - uid: 11160 + components: + - type: Transform + pos: 46.5,48.5 + parent: 2 - uid: 11309 components: - type: Transform @@ -65519,11 +68321,6 @@ entities: - type: Transform pos: -16.5,-38.5 parent: 2 - - uid: 11629 - components: - - type: Transform - pos: -2.5,-41.5 - parent: 2 - uid: 11630 components: - type: Transform @@ -65649,135 +68446,11 @@ entities: - type: Transform pos: 89.5,48.5 parent: 2 - - uid: 11658 - components: - - type: Transform - pos: 74.5,51.5 - parent: 2 - - uid: 11659 - components: - - type: Transform - pos: 75.5,51.5 - parent: 2 - - uid: 11660 - components: - - type: Transform - pos: 76.5,51.5 - parent: 2 - - uid: 11661 - components: - - type: Transform - pos: 77.5,51.5 - parent: 2 - - uid: 11662 - components: - - type: Transform - pos: 78.5,51.5 - parent: 2 - - uid: 11663 - components: - - type: Transform - pos: 79.5,51.5 - parent: 2 - - uid: 11664 - components: - - type: Transform - pos: 81.5,51.5 - parent: 2 - - uid: 11665 - components: - - type: Transform - pos: 80.5,51.5 - parent: 2 - - uid: 11667 - components: - - type: Transform - pos: 83.5,51.5 - parent: 2 - - uid: 11668 - components: - - type: Transform - pos: 84.5,51.5 - parent: 2 - - uid: 11669 - components: - - type: Transform - pos: 85.5,51.5 - parent: 2 - - uid: 11670 - components: - - type: Transform - pos: 86.5,51.5 - parent: 2 - - uid: 11671 - components: - - type: Transform - pos: 87.5,51.5 - parent: 2 - - uid: 11672 - components: - - type: Transform - pos: 88.5,51.5 - parent: 2 - - uid: 11673 - components: - - type: Transform - pos: 76.5,38.5 - parent: 2 - - uid: 11674 - components: - - type: Transform - pos: 77.5,38.5 - parent: 2 - - uid: 11675 - components: - - type: Transform - pos: 78.5,38.5 - parent: 2 - - uid: 11677 - components: - - type: Transform - pos: 80.5,38.5 - parent: 2 - - uid: 11678 - components: - - type: Transform - pos: 81.5,38.5 - parent: 2 - uid: 11679 components: - type: Transform - pos: 82.5,38.5 - parent: 2 - - uid: 11680 - components: - - type: Transform - pos: 83.5,38.5 - parent: 2 - - uid: 11681 - components: - - type: Transform - pos: 84.5,38.5 - parent: 2 - - uid: 11682 - components: - - type: Transform - pos: 85.5,38.5 - parent: 2 - - uid: 11683 - components: - - type: Transform - pos: 86.5,38.5 - parent: 2 - - uid: 11684 - components: - - type: Transform - pos: 87.5,38.5 - parent: 2 - - uid: 11685 - components: - - type: Transform - pos: 88.5,38.5 + rot: 1.5707963267948966 rad + pos: 29.5,51.5 parent: 2 - uid: 11686 components: @@ -65802,22 +68475,14 @@ entities: - uid: 11695 components: - type: Transform - pos: 41.5,52.5 - parent: 2 - - uid: 11696 - components: - - type: Transform - pos: 40.5,52.5 + rot: 1.5707963267948966 rad + pos: 30.5,51.5 parent: 2 - uid: 11697 components: - type: Transform - pos: 38.5,52.5 - parent: 2 - - uid: 11698 - components: - - type: Transform - pos: 39.5,52.5 + rot: 1.5707963267948966 rad + pos: 28.5,51.5 parent: 2 - uid: 11757 components: @@ -65874,6 +68539,17 @@ entities: - type: Transform pos: 73.5,3.5 parent: 2 + - uid: 11895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,51.5 + parent: 2 + - uid: 11902 + components: + - type: Transform + pos: 17.5,53.5 + parent: 2 - uid: 11970 components: - type: Transform @@ -65884,6 +68560,23 @@ entities: - type: Transform pos: 45.5,-21.5 parent: 2 + - uid: 11998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,48.5 + parent: 2 + - uid: 12155 + components: + - type: Transform + pos: 40.5,48.5 + parent: 2 + - uid: 12183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,51.5 + parent: 2 - uid: 12220 components: - type: Transform @@ -65899,6 +68592,12 @@ entities: - type: Transform pos: 45.5,-23.5 parent: 2 + - uid: 12299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,51.5 + parent: 2 - uid: 12370 components: - type: Transform @@ -65919,16 +68618,6 @@ entities: - type: Transform pos: -4.5,-15.5 parent: 2 - - uid: 12430 - components: - - type: Transform - pos: 56.5,51.5 - parent: 2 - - uid: 12437 - components: - - type: Transform - pos: 54.5,46.5 - parent: 2 - uid: 12441 components: - type: Transform @@ -66004,16 +68693,6 @@ entities: - type: Transform pos: 45.5,-45.5 parent: 2 - - uid: 13114 - components: - - type: Transform - pos: 37.5,27.5 - parent: 2 - - uid: 13126 - components: - - type: Transform - pos: 25.5,55.5 - parent: 2 - uid: 13245 components: - type: Transform @@ -66049,11 +68728,6 @@ entities: - type: Transform pos: -9.5,-2.5 parent: 2 - - uid: 13282 - components: - - type: Transform - pos: 58.5,46.5 - parent: 2 - uid: 13290 components: - type: Transform @@ -66319,25 +68993,48 @@ entities: - type: Transform pos: 39.5,-61.5 parent: 2 - - uid: 13432 + - uid: 13522 components: - type: Transform - pos: 26.5,57.5 + rot: 3.141592653589793 rad + pos: 41.5,32.5 parent: 2 - - uid: 13469 + - uid: 13586 components: - type: Transform - pos: 29.5,55.5 + rot: 1.5707963267948966 rad + pos: 23.5,51.5 parent: 2 - - uid: 13545 + - uid: 13590 components: - type: Transform - pos: 56.5,42.5 + rot: 1.5707963267948966 rad + pos: 89.5,36.5 parent: 2 - - uid: 13547 + - uid: 13637 components: - type: Transform - pos: 57.5,42.5 + pos: 32.5,16.5 + parent: 2 + - uid: 13645 + components: + - type: Transform + pos: 33.5,16.5 + parent: 2 + - uid: 13646 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 + - uid: 13647 + components: + - type: Transform + pos: 35.5,16.5 + parent: 2 + - uid: 13652 + components: + - type: Transform + pos: 28.5,21.5 parent: 2 - uid: 13654 components: @@ -66609,11 +69306,6 @@ entities: - type: Transform pos: 77.5,20.5 parent: 2 - - uid: 14204 - components: - - type: Transform - pos: 83.5,36.5 - parent: 2 - uid: 14205 components: - type: Transform @@ -66684,11 +69376,6 @@ entities: - type: Transform pos: 80.5,22.5 parent: 2 - - uid: 14330 - components: - - type: Transform - pos: 74.5,26.5 - parent: 2 - uid: 14331 components: - type: Transform @@ -66709,11 +69396,6 @@ entities: - type: Transform pos: 78.5,26.5 parent: 2 - - uid: 14336 - components: - - type: Transform - pos: 74.5,34.5 - parent: 2 - uid: 14337 components: - type: Transform @@ -66729,11 +69411,6 @@ entities: - type: Transform pos: 77.5,34.5 parent: 2 - - uid: 14344 - components: - - type: Transform - pos: 81.5,36.5 - parent: 2 - uid: 14409 components: - type: Transform @@ -66789,11 +69466,28 @@ entities: - type: Transform pos: 99.5,34.5 parent: 2 + - uid: 14622 + components: + - type: Transform + pos: 45.5,48.5 + parent: 2 - uid: 14623 components: - type: Transform pos: 72.5,25.5 parent: 2 + - uid: 14629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,16.5 + parent: 2 + - uid: 14646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,51.5 + parent: 2 - uid: 14762 components: - type: Transform @@ -66814,41 +69508,6 @@ entities: - type: Transform pos: 14.5,45.5 parent: 2 - - uid: 14787 - components: - - type: Transform - pos: 43.5,51.5 - parent: 2 - - uid: 14788 - components: - - type: Transform - pos: 44.5,51.5 - parent: 2 - - uid: 14789 - components: - - type: Transform - pos: 45.5,51.5 - parent: 2 - - uid: 14790 - components: - - type: Transform - pos: 46.5,51.5 - parent: 2 - - uid: 14791 - components: - - type: Transform - pos: 36.5,52.5 - parent: 2 - - uid: 14793 - components: - - type: Transform - pos: 48.5,51.5 - parent: 2 - - uid: 14794 - components: - - type: Transform - pos: 35.5,52.5 - parent: 2 - uid: 14800 components: - type: Transform @@ -66909,106 +69568,6 @@ entities: - type: Transform pos: 97.5,36.5 parent: 2 - - uid: 14824 - components: - - type: Transform - pos: 50.5,39.5 - parent: 2 - - uid: 14825 - components: - - type: Transform - pos: 50.5,40.5 - parent: 2 - - uid: 14826 - components: - - type: Transform - pos: 50.5,41.5 - parent: 2 - - uid: 14827 - components: - - type: Transform - pos: 50.5,42.5 - parent: 2 - - uid: 14829 - components: - - type: Transform - pos: 53.5,44.5 - parent: 2 - - uid: 14830 - components: - - type: Transform - pos: 54.5,44.5 - parent: 2 - - uid: 14831 - components: - - type: Transform - pos: 55.5,44.5 - parent: 2 - - uid: 14832 - components: - - type: Transform - pos: 56.5,44.5 - parent: 2 - - uid: 14833 - components: - - type: Transform - pos: 57.5,44.5 - parent: 2 - - uid: 14834 - components: - - type: Transform - pos: 58.5,44.5 - parent: 2 - - uid: 14836 - components: - - type: Transform - pos: 59.5,44.5 - parent: 2 - - uid: 14839 - components: - - type: Transform - pos: 62.5,32.5 - parent: 2 - - uid: 14840 - components: - - type: Transform - pos: 62.5,33.5 - parent: 2 - - uid: 14841 - components: - - type: Transform - pos: 62.5,34.5 - parent: 2 - - uid: 14842 - components: - - type: Transform - pos: 62.5,36.5 - parent: 2 - - uid: 14843 - components: - - type: Transform - pos: 62.5,37.5 - parent: 2 - - uid: 14844 - components: - - type: Transform - pos: 62.5,38.5 - parent: 2 - - uid: 14845 - components: - - type: Transform - pos: 62.5,39.5 - parent: 2 - - uid: 14846 - components: - - type: Transform - pos: 62.5,40.5 - parent: 2 - - uid: 14847 - components: - - type: Transform - pos: 62.5,35.5 - parent: 2 - uid: 14953 components: - type: Transform @@ -67049,11 +69608,6 @@ entities: - type: Transform pos: 16.5,51.5 parent: 2 - - uid: 15106 - components: - - type: Transform - pos: 17.5,51.5 - parent: 2 - uid: 15107 components: - type: Transform @@ -67079,6 +69633,12 @@ entities: - type: Transform pos: 35.5,3.5 parent: 2 + - uid: 15199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,51.5 + parent: 2 - uid: 15206 components: - type: Transform @@ -67244,45 +69804,183 @@ entities: - type: Transform pos: -24.5,-26.5 parent: 2 - - uid: 15384 + - uid: 15284 components: - type: Transform - pos: 37.5,26.5 + pos: 52.5,53.5 parent: 2 - - uid: 15413 + - uid: 15285 components: - type: Transform - pos: 23.5,55.5 + pos: 51.5,53.5 parent: 2 - - uid: 15414 + - uid: 15286 components: - type: Transform - pos: 30.5,55.5 + pos: 50.5,53.5 parent: 2 - - uid: 15415 + - uid: 15639 components: - type: Transform - pos: 31.5,55.5 + pos: 53.5,53.5 parent: 2 - - uid: 15418 + - uid: 15651 components: - type: Transform - pos: 22.5,57.5 + rot: 3.141592653589793 rad + pos: 61.5,53.5 parent: 2 - - uid: 15419 + - uid: 15652 components: - type: Transform - pos: 21.5,57.5 + rot: 3.141592653589793 rad + pos: 62.5,53.5 parent: 2 - - uid: 15420 + - uid: 15654 components: - type: Transform - pos: 33.5,57.5 + rot: 3.141592653589793 rad + pos: 64.5,53.5 parent: 2 - - uid: 15449 + - uid: 15655 components: - type: Transform - pos: 36.5,48.5 + pos: 48.5,53.5 + parent: 2 + - uid: 15695 + components: + - type: Transform + pos: 34.5,53.5 + parent: 2 + - uid: 15697 + components: + - type: Transform + pos: 32.5,51.5 + parent: 2 + - uid: 15699 + components: + - type: Transform + pos: 34.5,51.5 + parent: 2 + - uid: 15717 + components: + - type: Transform + pos: 21.5,53.5 + parent: 2 + - uid: 15718 + components: + - type: Transform + pos: 20.5,51.5 + parent: 2 + - uid: 15719 + components: + - type: Transform + pos: 21.5,51.5 + parent: 2 + - uid: 15720 + components: + - type: Transform + pos: 17.5,51.5 + parent: 2 + - uid: 15722 + components: + - type: Transform + pos: 41.5,53.5 + parent: 2 + - uid: 15723 + components: + - type: Transform + pos: 42.5,53.5 + parent: 2 + - uid: 15724 + components: + - type: Transform + pos: 43.5,53.5 + parent: 2 + - uid: 15725 + components: + - type: Transform + pos: 44.5,53.5 + parent: 2 + - uid: 15727 + components: + - type: Transform + pos: 46.5,53.5 + parent: 2 + - uid: 15728 + components: + - type: Transform + pos: 47.5,53.5 + parent: 2 + - uid: 15729 + components: + - type: Transform + pos: 49.5,53.5 + parent: 2 + - uid: 15730 + components: + - type: Transform + pos: 47.5,51.5 + parent: 2 + - uid: 15731 + components: + - type: Transform + pos: 46.5,51.5 + parent: 2 + - uid: 15732 + components: + - type: Transform + pos: 45.5,51.5 + parent: 2 + - uid: 15733 + components: + - type: Transform + pos: 44.5,51.5 + parent: 2 + - uid: 15734 + components: + - type: Transform + pos: 43.5,51.5 + parent: 2 + - uid: 15736 + components: + - type: Transform + pos: 41.5,51.5 + parent: 2 + - uid: 15737 + components: + - type: Transform + pos: 40.5,51.5 + parent: 2 + - uid: 15738 + components: + - type: Transform + pos: 39.5,51.5 + parent: 2 + - uid: 15739 + components: + - type: Transform + pos: 38.5,51.5 + parent: 2 + - uid: 15778 + components: + - type: Transform + pos: -1.5,-42.5 + parent: 2 + - uid: 15780 + components: + - type: Transform + pos: 0.5,-42.5 + parent: 2 + - uid: 15782 + components: + - type: Transform + pos: 0.5,-39.5 + parent: 2 + - uid: 15783 + components: + - type: Transform + pos: 0.5,-38.5 parent: 2 - proto: GrilleBroken entities: @@ -67347,20 +70045,15 @@ entities: - type: Transform pos: 1.5,42.5 parent: 2 - - uid: 4173 - components: - - type: Transform - pos: 36.5,49.5 - parent: 2 - uid: 5289 components: - type: Transform pos: 0.5,16.5 parent: 2 - - uid: 6131 + - uid: 6796 components: - type: Transform - pos: 26.5,55.5 + pos: 27.5,53.5 parent: 2 - uid: 6834 components: @@ -67372,11 +70065,21 @@ entities: - type: Transform pos: -18.5,-37.5 parent: 2 + - uid: 6862 + components: + - type: Transform + pos: 26.5,51.5 + parent: 2 - uid: 6870 components: - type: Transform pos: -10.5,16.5 parent: 2 + - uid: 6876 + components: + - type: Transform + pos: 59.5,53.5 + parent: 2 - uid: 6890 components: - type: Transform @@ -67392,6 +70095,12 @@ entities: - type: Transform pos: 9.5,46.5 parent: 2 + - uid: 7857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,37.5 + parent: 2 - uid: 8105 components: - type: Transform @@ -67402,16 +70111,6 @@ entities: - type: Transform pos: 91.5,43.5 parent: 2 - - uid: 11089 - components: - - type: Transform - pos: 82.5,51.5 - parent: 2 - - uid: 11094 - components: - - type: Transform - pos: 79.5,38.5 - parent: 2 - uid: 13763 components: - type: Transform @@ -67442,21 +70141,6 @@ entities: - type: Transform pos: 13.5,45.5 parent: 2 - - uid: 14786 - components: - - type: Transform - pos: 37.5,52.5 - parent: 2 - - uid: 14792 - components: - - type: Transform - pos: 47.5,51.5 - parent: 2 - - uid: 14798 - components: - - type: Transform - pos: 73.5,51.5 - parent: 2 - uid: 14799 components: - type: Transform @@ -67487,71 +70171,270 @@ entities: - type: Transform pos: 24.5,53.5 parent: 2 - - uid: 15337 + - uid: 15627 components: - type: Transform - pos: 28.5,57.5 + pos: 35.5,53.5 parent: 2 - - uid: 15416 + - uid: 15638 components: - type: Transform - pos: 31.5,57.5 + pos: 36.5,53.5 parent: 2 - - uid: 15417 + - uid: 15713 components: - type: Transform - pos: 23.5,57.5 + pos: 33.5,51.5 parent: 2 + - uid: 15714 + components: + - type: Transform + pos: 37.5,51.5 + parent: 2 + - uid: 15715 + components: + - type: Transform + pos: 22.5,51.5 + parent: 2 + - uid: 15716 + components: + - type: Transform + pos: 20.5,53.5 + parent: 2 + - uid: 15721 + components: + - type: Transform + pos: 45.5,53.5 + parent: 2 + - uid: 15726 + components: + - type: Transform + pos: 40.5,53.5 + parent: 2 + - uid: 15735 + components: + - type: Transform + pos: 42.5,51.5 + parent: 2 + - uid: 15741 + components: + - type: Transform + pos: 63.5,53.5 + parent: 2 + - uid: 15758 + components: + - type: Transform + pos: -16.5,-31.5 + parent: 2 + - uid: 15775 + components: + - type: Transform + pos: -16.5,-39.5 + parent: 2 + - uid: 15776 + components: + - type: Transform + pos: -14.5,-42.5 + parent: 2 + - uid: 15777 + components: + - type: Transform + pos: -14.5,-28.5 + parent: 2 + - uid: 15779 + components: + - type: Transform + pos: 0.5,-41.5 + parent: 2 + - uid: 15781 + components: + - type: Transform + pos: 0.5,-40.5 + parent: 2 +- proto: GunSafe + entities: + - uid: 6527 + components: + - type: MetaData + name: Armor Safe + - type: Transform + anchored: True + pos: 41.5,36.5 + parent: 2 + - type: Physics + bodyType: Static + - 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: + - 9885 + - 15800 + - 15799 + - 15634 + - 15575 + - 15574 + - 15480 + - 15459 + - 15442 + - 15337 + - 15200 + - 13634 + - 13483 + - 12773 + - 11017 + - 10405 + - 9926 + - 9835 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: GunSafeDisabler + entities: + - uid: 11677 + components: + - type: MetaData + name: disabler safe (5) + - type: Transform + anchored: True + pos: 39.5,35.5 + parent: 2 + - type: Physics + bodyType: Static + - type: Label + currentLabel: 5 + - type: NameModifier + baseName: disabler safe - proto: GunSafeLaserCarbine entities: - - uid: 10849 + - uid: 11126 components: + - type: MetaData + name: laser safe (3) - type: Transform anchored: True - pos: 42.5,27.5 + pos: 45.5,33.5 parent: 2 - type: Physics bodyType: Static + - type: Label + currentLabel: 3 + - type: NameModifier + baseName: laser safe - proto: GunSafePistolMk58 entities: - - uid: 10851 + - uid: 6793 components: + - type: MetaData + name: mk58 safe (4) - type: Transform anchored: True - pos: 42.5,28.5 + pos: 39.5,34.5 parent: 2 - type: Physics bodyType: Static + - type: Label + currentLabel: 4 + - type: NameModifier + baseName: mk58 safe - proto: GunSafeRifleLecter entities: - - uid: 2460 + - uid: 15183 components: + - type: MetaData + name: lecter safe (2) - type: Transform anchored: True - pos: 38.5,26.5 + pos: 45.5,34.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: Physics bodyType: Static + - type: Label + currentLabel: 2 + - type: NameModifier + baseName: lecter safe - proto: GunSafeShotgunKammerer entities: - - uid: 15471 + - uid: 15278 components: + - type: MetaData + name: kammerer safe (2) - type: Transform - anchored: True - pos: 42.5,26.5 + pos: 45.5,35.5 parent: 2 - - type: Physics - bodyType: Static + - type: Label + currentLabel: 2 + - type: NameModifier + baseName: kammerer safe - proto: GunSafeSubMachineGunDrozd entities: - - uid: 2461 + - uid: 10682 components: + - type: MetaData + name: drozd safe (2) - type: Transform - anchored: True - pos: 38.5,27.5 + pos: 45.5,36.5 parent: 2 - - type: Physics - bodyType: Static + - 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: Label + currentLabel: 2 + - type: NameModifier + baseName: drozd safe - proto: Handcuffs entities: - uid: 9397 @@ -67571,6 +70454,11 @@ entities: - type: Transform pos: 38.482082,-17.438766 parent: 2 + - uid: 12549 + components: + - type: Transform + pos: 44.355003,29.376284 + parent: 2 - proto: HandheldStationMap entities: - uid: 9400 @@ -67580,22 +70468,30 @@ entities: parent: 2 - proto: HandLabeler entities: - - uid: 5319 + - uid: 3103 components: - type: Transform - pos: 49.532963,19.552088 + pos: 65.58373,8.621037 parent: 2 - - uid: 5320 + - uid: 13169 components: - type: Transform - pos: 49.532963,17.552088 + parent: 13141 + - type: Physics + canCollide: False + - uid: 13642 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 70.59308,13.572977 parent: 2 - proto: HarmonicaInstrument entities: - - uid: 13630 + - uid: 8388 components: - type: Transform - pos: 56.5,31.5 + rot: -12.566370614359172 rad + pos: 36.543064,21.591867 parent: 2 - proto: HarpInstrument entities: @@ -67659,6 +70555,13 @@ entities: - type: Transform pos: 67.49741,-3.281434 parent: 2 +- proto: HighSecArmoryLocked + entities: + - uid: 19 + components: + - type: Transform + pos: 42.5,34.5 + parent: 2 - proto: HighSecCommandLocked entities: - uid: 1744 @@ -67711,6 +70614,11 @@ entities: parent: 2 - proto: HolopadCargoSalvageBay entities: + - uid: 11400 + components: + - type: Transform + pos: 7.5,31.5 + parent: 2 - uid: 15167 components: - type: Transform @@ -67732,10 +70640,10 @@ entities: parent: 2 - proto: HolopadCommandCaptain entities: - - uid: 15172 + - uid: 9237 components: - type: Transform - pos: 33.5,42.5 + pos: 31.5,41.5 parent: 2 - proto: HolopadCommandCe entities: @@ -67760,10 +70668,10 @@ entities: parent: 2 - proto: HolopadCommandHos entities: - - uid: 15173 + - uid: 8611 components: - type: Transform - pos: 43.5,22.5 + pos: 47.5,40.5 parent: 2 - proto: HolopadCommandMeetingRoom entities: @@ -67781,10 +70689,10 @@ entities: parent: 2 - proto: HolopadCommandRd entities: - - uid: 15178 + - uid: 10577 components: - type: Transform - pos: 61.5,9.5 + pos: 63.5,10.5 parent: 2 - proto: HolopadCommandVault entities: @@ -67921,17 +70829,17 @@ entities: parent: 2 - proto: HolopadScienceAnomaly entities: - - uid: 15190 + - uid: 5748 components: - type: Transform - pos: 69.5,13.5 + pos: 68.5,14.5 parent: 2 - proto: HolopadScienceArtifact entities: - - uid: 15191 + - uid: 9269 components: - type: Transform - pos: 63.5,24.5 + pos: 61.5,24.5 parent: 2 - proto: HolopadScienceRnd entities: @@ -67947,40 +70855,47 @@ entities: - type: Transform pos: 50.5,9.5 parent: 2 -- proto: HolopadSecurityBrig +- proto: HolopadSecurityArmory entities: - - uid: 5247 + - uid: 10417 components: - type: Transform - pos: 34.5,19.5 + pos: 40.5,34.5 + parent: 2 +- proto: HolopadSecurityBrig + entities: + - uid: 3172 + components: + - type: Transform + pos: 35.5,19.5 parent: 2 - proto: HolopadSecurityCourtroom entities: - - uid: 15185 + - uid: 14979 components: - type: Transform - pos: 20.5,31.5 + pos: 19.5,31.5 parent: 2 - proto: HolopadSecurityDetective entities: - - uid: 15184 + - uid: 10836 components: - type: Transform - pos: 42.5,18.5 + pos: 53.5,37.5 parent: 2 - proto: HolopadSecurityFront entities: - - uid: 15180 + - uid: 14097 components: - type: Transform - pos: 29.5,25.5 + pos: 33.5,30.5 parent: 2 - proto: HolopadSecurityInterrogation entities: - - uid: 15182 + - uid: 5405 components: - type: Transform - pos: 41.5,34.5 + pos: 56.5,32.5 parent: 2 - proto: HolopadSecurityLawyer entities: @@ -67989,19 +70904,12 @@ entities: - type: Transform pos: -3.5,-11.5 parent: 2 -- proto: HolopadSecurityPerma - entities: - - uid: 15183 - components: - - type: Transform - pos: 54.5,34.5 - parent: 2 - proto: HolopadSecurityWarden entities: - - uid: 15187 + - uid: 3115 components: - type: Transform - pos: 39.5,18.5 + pos: 38.5,26.5 parent: 2 - proto: HolopadServiceBar entities: @@ -68040,10 +70948,10 @@ entities: parent: 2 - proto: HolopadServiceKitchen entities: - - uid: 15200 + - uid: 15807 components: - type: Transform - pos: 37.5,-10.5 + pos: 35.5,-9.5 parent: 2 - proto: HolopadServiceLibrary entities: @@ -68054,11 +70962,15 @@ entities: parent: 2 - proto: HospitalCurtainsOpen entities: - - uid: 3192 + - uid: 3251 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,32.5 + pos: 78.5,9.5 + parent: 2 + - uid: 3316 + components: + - type: Transform + pos: 77.5,9.5 parent: 2 - uid: 4682 components: @@ -68070,6 +70982,17 @@ entities: - type: Transform pos: 61.5,-8.5 parent: 2 + - uid: 5387 + components: + - type: Transform + pos: 30.5,17.5 + parent: 2 + - uid: 5453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,22.5 + parent: 2 - uid: 5744 components: - type: Transform @@ -68095,16 +71018,6 @@ entities: - type: Transform pos: 58.5,-5.5 parent: 2 - - uid: 11902 - components: - - type: Transform - pos: 78.5,10.5 - parent: 2 - - uid: 11903 - components: - - type: Transform - pos: 77.5,10.5 - parent: 2 - uid: 12254 components: - type: Transform @@ -68150,18 +71063,49 @@ entities: - type: Transform pos: 14.5,16.5 parent: 2 - - uid: 13639 + - uid: 14828 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,40.5 + pos: 30.5,18.5 + parent: 2 +- proto: hydroponicsSoil + entities: + - uid: 669 + components: + - type: Transform + pos: 57.5,42.5 + parent: 2 + - uid: 1660 + components: + - type: Transform + pos: 59.5,43.5 + parent: 2 + - uid: 2356 + components: + - type: Transform + pos: 57.5,41.5 + parent: 2 + - uid: 3205 + components: + - type: Transform + pos: 59.5,41.5 + parent: 2 + - uid: 8510 + components: + - type: Transform + pos: 59.5,42.5 + parent: 2 + - uid: 8620 + components: + - type: Transform + pos: 57.5,43.5 parent: 2 - proto: HydroponicsToolClippers entities: - - uid: 3185 + - uid: 10545 components: - type: Transform - pos: 56.15973,41.601078 + pos: 34.293724,17.46456 parent: 2 - proto: HydroponicsToolHatchet entities: @@ -68172,10 +71116,11 @@ entities: parent: 2 - proto: HydroponicsToolMiniHoe entities: - - uid: 3186 + - uid: 3229 components: - type: Transform - pos: 54.460526,36.592915 + rot: -12.566370614359172 rad + pos: 34.949974,17.573935 parent: 2 - uid: 6755 components: @@ -68184,13 +71129,34 @@ entities: parent: 2 - proto: HydroponicsToolSpade entities: - - uid: 13629 + - uid: 11659 components: - type: Transform - pos: 54.56469,36.655457 + rot: -12.566370614359172 rad + pos: 34.99685,17.65206 parent: 2 - proto: hydroponicsTray entities: + - uid: 2194 + components: + - type: Transform + pos: 37.5,17.5 + parent: 2 + - uid: 2486 + components: + - type: Transform + pos: 37.5,18.5 + parent: 2 + - uid: 3096 + components: + - type: Transform + pos: 39.5,17.5 + parent: 2 + - uid: 5344 + components: + - type: Transform + pos: 39.5,18.5 + parent: 2 - uid: 6665 components: - type: Transform @@ -68241,26 +71207,6 @@ entities: - type: Transform pos: 41.5,-4.5 parent: 2 - - uid: 13633 - components: - - type: Transform - pos: 53.5,39.5 - parent: 2 - - uid: 13634 - components: - - type: Transform - pos: 54.5,39.5 - parent: 2 - - uid: 13636 - components: - - type: Transform - pos: 53.5,38.5 - parent: 2 - - uid: 13637 - components: - - type: Transform - pos: 54.5,38.5 - parent: 2 - proto: IDComputerCircuitboard entities: - uid: 12659 @@ -68268,6 +71214,23 @@ entities: - type: Transform pos: 41.5,-14.5 parent: 2 +- proto: InflatableDoor + entities: + - uid: 8369 + components: + - type: Transform + pos: 82.5,4.5 + parent: 2 + - uid: 15415 + components: + - type: Transform + pos: 86.5,-7.5 + parent: 2 + - uid: 15689 + components: + - type: Transform + pos: 66.5,36.5 + parent: 2 - proto: InflatableWall entities: - uid: 6524 @@ -68275,33 +71238,56 @@ entities: - type: Transform pos: 87.5,-7.5 parent: 2 - - uid: 6729 - components: - - type: Transform - pos: 86.5,-7.5 - parent: 2 - uid: 6730 components: - type: Transform pos: 82.5,5.5 parent: 2 - - uid: 6731 + - uid: 8401 components: - type: Transform - pos: 82.5,4.5 + pos: 67.5,36.5 + parent: 2 + - uid: 15679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,51.5 parent: 2 - proto: IngotGold entities: - - uid: 8824 - components: - - type: Transform - pos: 89.45974,-12.337885 - parent: 2 - uid: 12098 components: - type: Transform pos: 19.594189,42.029728 parent: 2 +- proto: IngotGold1 + entities: + - uid: 6493 + components: + - type: Transform + pos: 89.379524,-12.132982 + parent: 2 + - uid: 7865 + components: + - type: Transform + pos: 89.74239,-12.209297 + parent: 2 + - uid: 8061 + components: + - type: Transform + pos: 89.79371,-12.474922 + parent: 2 + - uid: 8358 + components: + - type: Transform + pos: 89.348274,-12.601732 + parent: 2 + - uid: 8420 + components: + - type: Transform + pos: 89.40308,-12.303047 + parent: 2 - proto: IngotSilver entities: - uid: 12100 @@ -68324,27 +71310,28 @@ entities: parent: 2 - proto: IntercomCommand entities: - - uid: 2329 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,21.5 - parent: 2 - uid: 4587 components: - type: Transform pos: 12.5,-34.5 parent: 2 + - uid: 8471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,40.5 + parent: 2 - uid: 9436 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,42.5 parent: 2 - - uid: 9437 + - uid: 9460 components: - type: Transform - pos: 33.5,41.5 + rot: -1.5707963267948966 rad + pos: 41.5,26.5 parent: 2 - uid: 11408 components: @@ -68406,17 +71393,11 @@ entities: parent: 2 - proto: IntercomSecurity entities: - - uid: 2565 + - uid: 14552 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,34.5 - parent: 2 - - uid: 15375 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,26.5 + rot: 3.141592653589793 rad + pos: 36.5,18.5 parent: 2 - proto: IntercomSupply entities: @@ -68439,13 +71420,37 @@ entities: - type: Transform pos: 4.5,-6.5 parent: 2 +- proto: JanitorServiceLight + entities: + - uid: 2363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,29.5 + parent: 2 - proto: JetpackMiniFilled entities: + - uid: 8627 + components: + - type: Transform + pos: 8.488525,-9.228134 + parent: 2 - uid: 10308 components: - type: Transform - pos: 8.484015,-9.278149 + pos: 8.488525,-9.353134 parent: 2 + - type: GasTank + toggleActionEntity: 6295 + - type: Jetpack + toggleActionEntity: 6125 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 6125 + - 6295 - uid: 10309 components: - type: Transform @@ -68453,25 +71458,38 @@ entities: parent: 2 - proto: JetpackSecurityFilled entities: - - uid: 9478 + - uid: 12242 components: - type: Transform - pos: 39.649494,28.741974 - parent: 2 - - uid: 15462 + parent: 3183 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12760 components: - type: Transform - pos: 39.63387,28.898224 - parent: 2 + parent: 12746 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: KitchenElectricGrill entities: - - uid: 13167 + - uid: 5502 components: - type: Transform - pos: 36.5,-10.5 + pos: 35.5,-12.5 parent: 2 - proto: KitchenKnife entities: + - uid: 10415 + components: + - type: MetaData + desc: A general purpose Chef's Knife made by Asters Merchant Guild. Guaranteed to stay sharp even after taking out your anger. + name: bloodied kitchen knife + - type: Transform + rot: 3.141592653589793 rad + pos: 55.215134,44.005093 + parent: 2 - uid: 11124 components: - type: Transform @@ -68479,10 +71497,15 @@ entities: parent: 2 - proto: KitchenMicrowave entities: - - uid: 1578 + - uid: 5461 components: - type: Transform - pos: 35.5,-10.5 + pos: 33.5,17.5 + parent: 2 + - uid: 8513 + components: + - type: Transform + pos: 55.5,41.5 parent: 2 - uid: 8860 components: @@ -68494,10 +71517,10 @@ entities: - type: Transform pos: 76.5,5.5 parent: 2 - - uid: 13613 + - uid: 15808 components: - type: Transform - pos: 54.5,41.5 + pos: 37.5,-10.5 parent: 2 - proto: KitchenReagentGrinder entities: @@ -68511,10 +71534,15 @@ entities: - type: Transform pos: 49.5,-6.5 parent: 2 - - uid: 13619 + - uid: 8534 components: - type: Transform - pos: 55.5,41.5 + pos: 55.5,40.5 + parent: 2 + - uid: 12080 + components: + - type: Transform + pos: 35.5,17.5 parent: 2 - proto: KitchenSpike entities: @@ -68571,53 +71599,65 @@ entities: - type: Transform pos: 22.507973,40.51647 parent: 2 - - uid: 4018 + - uid: 6900 components: - type: Transform - pos: 32.49905,41.93212 + pos: 35.35573,44.0572 parent: 2 - - uid: 5474 + - uid: 8437 components: - type: Transform - pos: 67.5,37.5 + rot: 3.141592653589793 rad + pos: 44.741825,26.038797 parent: 2 + - uid: 8468 + components: + - type: Transform + pos: 32.367878,42.14361 + parent: 2 + - uid: 8472 + components: + - type: Transform + pos: 69.31397,39.02177 + parent: 2 + - type: HandheldLight + toggleActionEntity: 6731 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 6731 + - type: Physics + canCollide: True + - type: ActionsContainer - uid: 11417 components: - type: Transform pos: 54.632915,-10.081582 parent: 2 - - uid: 11465 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.568825,20.850296 - parent: 2 - - uid: 12116 - components: - - type: Transform - pos: 37.37405,43.99462 - parent: 2 - uid: 13491 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.328161,-42.06295 parent: 2 + - uid: 14698 + components: + - type: Transform + pos: 54.354797,38.122463 + parent: 2 - proto: LampInterrogator entities: - - uid: 13567 + - uid: 4361 components: - type: Transform - pos: 40.512142,35.84228 - parent: 2 - - type: Physics - canCollide: True -- proto: LargeBeaker - entities: - - uid: 5323 - components: - - type: Transform - pos: 54.42104,17.661463 + pos: 57.60799,32.875443 parent: 2 - proto: LightReplacer entities: @@ -68631,7 +71671,7 @@ entities: - uid: 14280 components: - type: Transform - pos: 84.53704,28.473265 + pos: 85.46464,28.58347 parent: 2 - proto: LockableButtonAtmospherics entities: @@ -68684,49 +71724,6 @@ entities: 12890: - - Pressed - Toggle -- proto: LockableButtonChiefEngineer - entities: - - uid: 6118 - components: - - type: Transform - pos: 11.5,-32.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 13490: - - - Pressed - - Toggle - 13489: - - - Pressed - - Toggle - 13488: - - - Pressed - - Toggle - - uid: 13470 - components: - - type: Transform - pos: 10.5,-39.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 13478: - - - Pressed - - Toggle - 13477: - - - Pressed - - Toggle - 13476: - - - Pressed - - Toggle - 13480: - - - Pressed - - Toggle - 13481: - - - Pressed - - Toggle - 13482: - - - Pressed - - Toggle - proto: LockableButtonCommand entities: - uid: 15104 @@ -68843,6 +71840,8 @@ entities: entities: - uid: 1557 components: + - type: MetaData + name: lockable button (Blast Doors) - type: Transform rot: 1.5707963267948966 rad pos: 43.5,11.5 @@ -68855,19 +71854,31 @@ entities: 8248: - - Pressed - Toggle + - type: Label + currentLabel: Blast Doors + - type: NameModifier + baseName: lockable button - proto: LockableButtonSalvage entities: - - uid: 15284 + - uid: 12839 components: + - type: MetaData + name: lockable button (Blast Doors) - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,36.5 + pos: 3.5,39.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 895: + 3561: - - Pressed - Toggle + 3562: + - - Pressed + - Toggle + - type: Label + currentLabel: Blast Doors + - type: NameModifier + baseName: lockable button - proto: LockableButtonService entities: - uid: 15276 @@ -68917,10 +71928,10 @@ entities: parent: 2 - proto: LockerCaptainFilledNoLaser entities: - - uid: 4137 + - uid: 388 components: - type: Transform - pos: 37.5,41.5 + pos: 33.5,43.5 parent: 2 - proto: LockerChemistryFilled entities: @@ -68945,10 +71956,10 @@ entities: parent: 2 - proto: LockerDetectiveFilled entities: - - uid: 11476 + - uid: 13519 components: - type: Transform - pos: 43.5,18.5 + pos: 57.5,39.5 parent: 2 - proto: LockerElectricalSuppliesFilled entities: @@ -68986,42 +71997,22 @@ entities: parent: 2 - proto: LockerEvidence entities: - - uid: 2430 - components: - - type: Transform - pos: 32.5,28.5 - parent: 2 - uid: 2680 components: - type: Transform pos: 19.5,33.5 parent: 2 - - uid: 5013 - components: - - type: Transform - pos: 32.5,21.5 - parent: 2 - - uid: 5018 - components: - - type: Transform - pos: 32.5,17.5 - parent: 2 - uid: 7980 components: - type: Transform pos: -2.5,-5.5 parent: 2 - - uid: 15277 - components: - - type: Transform - pos: 41.5,33.5 - parent: 2 - proto: LockerFreezer entities: - - uid: 1646 + - uid: 4800 components: - type: Transform - pos: 29.5,-12.5 + pos: 31.5,-9.5 parent: 2 - proto: LockerFreezerVaultFilled entities: @@ -69037,12 +72028,12 @@ entities: - type: Transform pos: 17.5,-5.5 parent: 2 -- proto: LockerHeadOfSecurityFilledHardsuit +- proto: LockerHeadOfSecurityFilled entities: - - uid: 8426 + - uid: 2365 components: - type: Transform - pos: 44.5,25.5 + pos: 42.5,41.5 parent: 2 - proto: LockerMedical entities: @@ -69107,6 +72098,46 @@ entities: - type: Transform pos: 44.5,4.5 parent: 2 +- proto: LockerPrisoner + entities: + - uid: 10454 + components: + - type: Transform + anchored: True + pos: 29.5,25.5 + parent: 2 + - type: Physics + bodyType: Static +- proto: LockerPrisoner2 + entities: + - uid: 10440 + components: + - type: Transform + anchored: True + pos: 30.5,25.5 + parent: 2 + - type: Physics + bodyType: Static +- proto: LockerPrisoner3 + entities: + - uid: 10461 + components: + - type: Transform + anchored: True + pos: 31.5,25.5 + parent: 2 + - type: Physics + bodyType: Static +- proto: LockerPrisoner4 + entities: + - uid: 10447 + components: + - type: Transform + anchored: True + pos: 32.5,25.5 + parent: 2 + - type: Physics + bodyType: Static - proto: LockerQuarterMasterFilled entities: - uid: 8104 @@ -69116,10 +72147,10 @@ entities: parent: 2 - proto: LockerResearchDirectorFilled entities: - - uid: 10660 + - uid: 14590 components: - type: Transform - pos: 61.5,11.5 + pos: 60.5,8.5 parent: 2 - type: EntityStorage air: @@ -69139,59 +72170,84 @@ entities: - 0 - 0 - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 13492 + - 15428 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: LockerSalvageSpecialistFilledHardsuit entities: - uid: 697 components: - type: Transform + anchored: True pos: 9.5,31.5 parent: 2 - - uid: 5046 + - type: Physics + bodyType: Static + - uid: 10991 components: - type: Transform + anchored: True pos: 9.5,30.5 parent: 2 + - type: Physics + bodyType: Static - proto: LockerScienceFilled entities: - - uid: 5338 + - uid: 5448 components: - type: Transform - pos: 55.5,22.5 + pos: 55.5,25.5 parent: 2 - - uid: 5339 + - uid: 6341 components: - type: Transform - pos: 56.5,22.5 + pos: 56.5,25.5 + parent: 2 + - uid: 8710 + components: + - type: Transform + pos: 54.5,25.5 parent: 2 - uid: 12829 components: - type: Transform pos: 57.5,25.5 parent: 2 -- proto: LockerScientist - entities: - - uid: 5322 - components: - - type: Transform - pos: 51.5,21.5 - parent: 2 - proto: LockerSecurityFilled entities: - - uid: 8441 + - uid: 2467 components: - type: Transform - pos: 29.5,30.5 + anchored: True + pos: 37.5,34.5 parent: 2 - - uid: 8443 + - type: Physics + bodyType: Static + - uid: 3384 components: - type: Transform - pos: 30.5,30.5 + anchored: True + pos: 36.5,34.5 parent: 2 - - uid: 13580 + - type: Physics + bodyType: Static + - uid: 10547 components: - type: Transform - pos: 31.5,30.5 + anchored: True + pos: 35.5,34.5 parent: 2 + - type: Physics + bodyType: Static - proto: LockerWallMedicalFilled entities: - uid: 8323 @@ -69201,10 +72257,132 @@ entities: parent: 2 - proto: LockerWardenFilled entities: - - uid: 11210 + - uid: 3171 components: - type: Transform - pos: 37.5,19.5 + anchored: True + pos: 42.5,24.5 + parent: 2 + - type: Physics + bodyType: Static +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 3053 + components: + - type: Transform + pos: 62.5,18.5 + parent: 2 +- proto: LogicGateXor + entities: + - uid: 553 + components: + - type: Transform + pos: 4.5,24.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 411: + - - Output + - DoorBolt + - uid: 6639 + components: + - type: Transform + pos: -26.5,0.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 7610: + - - Output + - DoorBolt + - uid: 8663 + components: + - type: Transform + pos: -26.5,-1.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 88: + - - Output + - DoorBolt + - uid: 9402 + components: + - type: Transform + pos: -26.5,-20.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 13296: + - - Output + - DoorBolt + - uid: 10982 + components: + - type: Transform + pos: 4.5,26.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 428: + - - Output + - DoorBolt + - uid: 13297 + components: + - type: Transform + pos: -26.5,-22.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 13306: + - - Output + - DoorBolt + - uid: 13328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,53.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9283: + - - Output + - DoorBolt + - uid: 13329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,53.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 10771: + - - Output + - DoorBolt +- proto: LootSpawnerSecurityBasic + entities: + - uid: 2335 + components: + - type: Transform + pos: 48.5,28.5 + parent: 2 + - uid: 3571 + components: + - type: Transform + pos: 38.5,43.5 parent: 2 - proto: MachineAnomalyGenerator entities: @@ -69215,36 +72393,36 @@ entities: parent: 2 - proto: MachineAnomalyVessel entities: - - uid: 5380 + - uid: 171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,13.5 + parent: 2 + - uid: 15516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,13.5 + parent: 2 +- proto: MachineAPE + entities: + - uid: 10464 components: - type: Transform pos: 68.5,16.5 parent: 2 - - uid: 10080 + - uid: 10467 components: - type: Transform - pos: 67.5,16.5 - parent: 2 -- proto: MachineAPE - entities: - - uid: 5255 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,13.5 - parent: 2 - - uid: 5272 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,13.5 + pos: 66.5,16.5 parent: 2 - proto: MachineArtifactAnalyzer entities: - - uid: 8666 + - uid: 5444 components: - type: Transform - pos: 64.5,27.5 + pos: 63.5,28.5 parent: 2 - proto: MachineCentrifuge entities: @@ -69262,17 +72440,17 @@ entities: parent: 2 - proto: MachineFrame entities: - - uid: 5731 + - uid: 10380 components: - type: Transform - pos: 52.5,21.5 + pos: 51.5,17.5 parent: 2 - proto: MachineMaterialSilo entities: - - uid: 5309 + - uid: 10829 components: - type: Transform - pos: 60.5,25.5 + pos: 53.5,17.5 parent: 2 - proto: MachineParticleAcceleratorEmitterForeCircuitboard entities: @@ -69297,18 +72475,38 @@ entities: parent: 2 - proto: MagazinePistolSubMachineGunTopMounted entities: - - uid: 348 + - uid: 15785 components: - type: Transform - pos: 45.548477,23.915247 + pos: 44.521404,43.346592 parent: 2 - - uid: 7835 + - uid: 15786 components: - type: Transform - pos: 45.548477,23.915247 + pos: 44.53703,43.440342 parent: 2 - proto: MaintenanceFluffSpawner entities: + - uid: 7459 + components: + - type: Transform + pos: 40.5,47.5 + parent: 2 + - uid: 8030 + components: + - type: Transform + pos: 83.5,7.5 + parent: 2 + - uid: 8404 + components: + - type: Transform + pos: 61.5,41.5 + parent: 2 + - uid: 10138 + components: + - type: Transform + pos: 71.5,40.5 + parent: 2 - uid: 12286 components: - type: Transform @@ -69321,23 +72519,53 @@ entities: parent: 2 - proto: MaintenancePlantSpawner entities: + - uid: 3198 + components: + - type: Transform + pos: 61.5,38.5 + parent: 2 + - uid: 5754 + components: + - type: Transform + pos: 89.5,-16.5 + parent: 2 + - uid: 9456 + components: + - type: Transform + pos: 70.5,35.5 + parent: 2 - uid: 12855 components: - type: Transform pos: 2.5,-8.5 parent: 2 - - uid: 12857 + - uid: 14204 components: - type: Transform - pos: 71.5,34.5 + pos: 72.5,32.5 parent: 2 - uid: 15450 components: - type: Transform pos: 54.5,-20.5 parent: 2 + - uid: 15663 + components: + - type: Transform + pos: 32.5,37.5 + parent: 2 - proto: MaintenanceToolSpawner entities: + - uid: 247 + components: + - type: Transform + pos: 74.5,18.5 + parent: 2 + - uid: 10136 + components: + - type: Transform + pos: 63.5,38.5 + parent: 2 - uid: 12284 components: - type: Transform @@ -69355,11 +72583,21 @@ entities: parent: 2 - proto: MaintenanceWeaponSpawner entities: + - uid: 10720 + components: + - type: Transform + pos: 59.5,31.5 + parent: 2 - uid: 12285 components: - type: Transform pos: 74.5,-12.5 parent: 2 + - uid: 15788 + components: + - type: Transform + pos: 86.5,1.5 + parent: 2 - proto: MaterialCloth entities: - uid: 10295 @@ -69367,6 +72605,13 @@ entities: - type: Transform pos: 18.45301,-3.204442 parent: 2 +- proto: MaterialCloth10 + entities: + - uid: 8448 + components: + - type: Transform + pos: 59.509983,20.68175 + parent: 2 - proto: MaterialDiamond1 entities: - uid: 15378 @@ -69393,6 +72638,31 @@ entities: - type: Transform pos: 65.43021,-13.629852 parent: 2 + - uid: 15903 + components: + - type: Transform + pos: 47.502304,24.556742 + parent: 2 +- proto: MaterialWoodPlank1 + entities: + - uid: 14853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.37381,44.468517 + parent: 2 +- proto: Mattress + entities: + - uid: 2044 + components: + - type: Transform + pos: 62.5,41.5 + parent: 2 + - uid: 10592 + components: + - type: Transform + pos: 63.5,39.5 + parent: 2 - proto: MechEquipmentGrabberSmall entities: - uid: 14752 @@ -69437,6 +72707,11 @@ entities: - type: Transform pos: 62.5,-10.5 parent: 2 + - uid: 14839 + components: + - type: Transform + pos: 44.5,27.5 + parent: 2 - proto: MedicalTechFab entities: - uid: 9369 @@ -69453,6 +72728,12 @@ entities: parent: 2 - proto: MedkitBruteFilled entities: + - uid: 10433 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 42.480003,28.626284 + parent: 2 - uid: 11915 components: - type: Transform @@ -69489,6 +72770,11 @@ entities: - type: Transform pos: 18.523928,24.634445 parent: 2 + - uid: 7846 + components: + - type: Transform + pos: 42.37063,29.016909 + parent: 2 - uid: 9625 components: - type: Transform @@ -69511,8 +72797,19 @@ entities: - type: Transform pos: 72.61498,6.0402474 parent: 2 + - uid: 12493 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 42.62063,29.001284 + parent: 2 - proto: MedkitRadiationFilled entities: + - uid: 6865 + components: + - type: Transform + pos: 18.849405,-26.316147 + parent: 2 - uid: 11917 components: - type: Transform @@ -69557,6 +72854,23 @@ entities: - type: Transform pos: 76.5,8.5 parent: 2 +- proto: MonkeyCubeWrapped + entities: + - uid: 5407 + components: + - type: Transform + pos: 63.5672,25.602118 + parent: 2 + - uid: 11682 + components: + - type: Transform + pos: 63.551575,25.773993 + parent: 2 + - uid: 12798 + components: + - type: Transform + pos: 63.801575,25.758368 + parent: 2 - proto: MopBucket entities: - uid: 13116 @@ -69621,6 +72935,18 @@ entities: rot: -1.5707963267948966 rad pos: 74.5,-3.5 parent: 2 + - uid: 5369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,27.5 + parent: 2 + - uid: 8496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,11.5 + parent: 2 - uid: 9727 components: - type: Transform @@ -69680,6 +73006,12 @@ entities: - type: Transform pos: 69.28111,-15.352209 parent: 2 + - uid: 13502 + components: + - type: Transform + parent: 13141 + - type: Physics + canCollide: False - proto: NetworkConfigurator entities: - uid: 909 @@ -69694,16 +73026,31 @@ entities: parent: 2 - proto: NitrogenCanister entities: + - uid: 129 + components: + - type: Transform + pos: 87.5,3.5 + parent: 2 - uid: 1928 components: - type: Transform pos: 50.5,-23.5 parent: 2 + - uid: 1948 + components: + - type: Transform + pos: 47.5,4.5 + parent: 2 - uid: 2252 components: - type: Transform pos: 34.5,-45.5 parent: 2 + - uid: 2599 + components: + - type: Transform + pos: 67.5,46.5 + parent: 2 - uid: 4306 components: - type: Transform @@ -69714,6 +73061,11 @@ entities: - type: Transform pos: 43.5,-38.5 parent: 2 + - uid: 4322 + components: + - type: Transform + pos: 4.5,40.5 + parent: 2 - uid: 4571 components: - type: Transform @@ -69724,21 +73076,57 @@ entities: - type: Transform pos: 32.5,-46.5 parent: 2 + - uid: 8824 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 2 - uid: 9094 components: - type: Transform pos: 12.5,16.5 parent: 2 + - uid: 9312 + components: + - type: Transform + pos: 50.5,46.5 + parent: 2 - uid: 9901 components: - type: Transform pos: 46.5,-15.5 parent: 2 + - uid: 10453 + components: + - type: Transform + pos: 47.5,28.5 + parent: 2 - uid: 13968 components: - type: Transform pos: -10.5,-23.5 parent: 2 + - uid: 14943 + components: + - type: Transform + pos: 73.5,-18.5 + parent: 2 +- proto: NitrogenTankFilled + entities: + - uid: 12199 + components: + - type: Transform + parent: 3183 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12761 + components: + - type: Transform + parent: 12746 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: NitrousOxideCanister entities: - uid: 4334 @@ -69751,7 +73139,7 @@ entities: - uid: 14281 components: - type: Transform - pos: 86.43288,28.772083 + pos: 86.52714,28.39597 parent: 2 - proto: NuclearBomb entities: @@ -69765,7 +73153,7 @@ entities: - uid: 14282 components: - type: Transform - pos: 86.53704,28.660894 + pos: 86.50753,32.76683 parent: 2 - proto: OperatingTable entities: @@ -69784,23 +73172,29 @@ entities: - type: Transform pos: 74.5,-2.5 parent: 2 + - uid: 10837 + components: + - type: Transform + pos: 53.5,8.5 + parent: 2 - uid: 11399 components: - type: Transform pos: 66.5,-10.5 parent: 2 - - uid: 12109 - components: - - type: Transform - pos: 55.5,9.5 - parent: 2 - proto: OreProcessor entities: - - uid: 7673 + - uid: 6779 components: - type: Transform - pos: 9.5,29.5 + pos: 6.5,29.5 parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - proto: OxygenCanister entities: - uid: 945 @@ -69818,21 +73212,31 @@ entities: - type: Transform pos: 42.5,-37.5 parent: 2 + - uid: 3275 + components: + - type: Transform + pos: 67.5,47.5 + parent: 2 + - uid: 3396 + components: + - type: Transform + pos: 50.5,45.5 + parent: 2 - uid: 4570 components: - type: Transform pos: 32.5,-28.5 parent: 2 - - uid: 6424 - components: - - type: Transform - pos: 46.5,7.5 - parent: 2 - uid: 7966 components: - type: Transform pos: 31.5,-46.5 parent: 2 + - uid: 9281 + components: + - type: Transform + pos: 73.5,-19.5 + parent: 2 - uid: 9620 components: - type: Transform @@ -69848,10 +73252,20 @@ entities: - type: Transform pos: 8.5,-5.5 parent: 2 - - uid: 11650 + - uid: 10523 components: - type: Transform - pos: 5.5,32.5 + pos: 46.5,28.5 + parent: 2 + - uid: 11398 + components: + - type: Transform + pos: 88.5,3.5 + parent: 2 + - uid: 12381 + components: + - type: Transform + pos: 5.5,40.5 parent: 2 - uid: 12997 components: @@ -69863,11 +73277,6 @@ entities: - type: Transform pos: -9.5,-23.5 parent: 2 - - uid: 14225 - components: - - type: Transform - pos: 82.5,27.5 - parent: 2 - proto: OxygenTankFilled entities: - uid: 5720 @@ -69880,13 +73289,6 @@ entities: - type: Transform pos: 72.5,-9.5 parent: 2 -- proto: PackPaperRollingFilters - entities: - - uid: 14654 - components: - - type: Transform - pos: 55.52354,31.733475 - parent: 2 - proto: PaintingMonkey entities: - uid: 5783 @@ -69903,10 +73305,10 @@ entities: parent: 2 - proto: PaintingOlympia entities: - - uid: 1195 + - uid: 13178 components: - type: Transform - pos: 35.5,42.5 + pos: 32.5,38.5 parent: 2 - proto: PaintingSadClown entities: @@ -69920,7 +73322,7 @@ entities: - uid: 14283 components: - type: Transform - pos: 86.43288,28.584454 + pos: 86.50753,32.605293 parent: 2 - proto: Paper entities: @@ -69936,25 +73338,237 @@ entities: - type: Transform pos: 8.5,4.5 parent: 2 -- proto: PaperBin5 +- proto: PaperBin20 entities: - - uid: 6913 + - uid: 5378 components: - type: Transform - pos: 43.5,19.5 + pos: 36.5,22.5 + parent: 2 +- proto: PaperBin5 + entities: + - uid: 13142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,37.5 parent: 2 - proto: PaperOffice entities: + - uid: 3460 + components: + - type: MetaData + desc: A old laminated document, probably left by the last shift. + name: office paper (Brig Defense) + - type: Transform + pos: 44.57122,24.67782 + parent: 2 + - type: Paper + content: >- + I own an Enforcer for Brig Defense, since thats what Central Command intended. + + Four Gorlex Operatives blow a hole through my Perma with C4. + + "What the devil?" I yell as I grab my Warden's Cap and Enforcer shotgun. Blow 4 twelve gauge holes through the Corpsman, he's crit on the spot. + + Draw my Mk58 on the second guy, miss her entirely because a secoff exploded with Tear Gas, it hits the HOP instead. + + I have to resort to the toolbox in my armory, filled to the brim with seized grenades. "GLORY TO NANOTRASEN!!" The resulting explosion instagibbing the Commander and a Operative, setting off all the firelocks on station. + + Draw my Stun Baton on the last terrified Operative, he dies from spacing waiting for the paramedic to arrive becuase I took his suit off immediately after cuffing him. + + + Just as Central Command Intended. + editingDisabled: True + - uid: 5325 + components: + - type: MetaData + desc: a threat made towards the previous chef + - type: Transform + rot: 3.141592653589793 rad + pos: 53.561028,42.489468 + parent: 2 + - type: Paper + content: >2- + + [head=1] YOUR DAYS ARE NUMBERED FRANK, YOU AIN'T EVER SERVING ANOTHER MOTH BURGER + editingDisabled: True + missingComponents: + - FaxableObject + - uid: 5736 + components: + - type: MetaData + desc: A laminiated document, probably left here by the previous shift. + name: office paper (Cryogenic Tube User Manual) + - type: Transform + pos: 61.634254,-0.53476226 + parent: 2 + - type: Paper + content: > + [head=2][bold]Cryogenic Tube User Manual[/bold][/head] + + + [head=3][bold]Operational Theory[/bold][/head] + + Cryogenic chemicals represent a simple, and most importantly, economical means of treating patients. All cryogenic chemicals only work if the patient’s body temperature below a certain value: 213K with a few exceptions. + + The cryogenic tube system is intended to safely lower a patient’s body temperature below this threshold, then treat them with said cryogenic chemicals. + + + [head=3][bold]Setup[/bold][/head] + + 1: Identify the pressure pump. Set its output pressure to 540kpa and switch it on. + + 2: Identify the gas filter. Set its filter to carbon dioxide, output pressure to maximum, and switch it on. + + 3: Identify the freezer. Set its temperature to 74K and switch it on. + + 4: Allow the system time to reach the correct temperature and pressure. You can view this progress by using a gas analyzer on the pressure pump or cryogenic tube. If temperature or pressure remains incorrect, consult your atmospherics department. + + 5: Fill one or more standard 50u beakers with cryogenic medicine. Do not insert the beaker into the tube: once inserted it will be immediately used, wasting it unless a patient of the correct temperature is inside. + + + [head=3][bold]Usage[/bold][/head] + + 1: Ensure the patient has no bleeding wounds, and is not wearing any insulate clothing such as a winter coat, scarf, or fur boots. + + 2: Place the patient inside the cryogenic tube. Ensure that no beaker is in the tube. + + 3: Use the tube’s display (accessible through the context menu) to view the patient’s health and temperature. Wait for their temperature to go below the threshold of your chosen medicine. + + 4: Place a standard 50u beaker of cryogenic medicine into the tube. As soon as it is inserted, it will begin transferring the liquid into the patient’s bloodstream. Continue to monitor their vitals on the display. + + 5: Once the desired effect has been achieved, eject the beaker and remove the patient from the tube. A injection of 5u Leporazine is recommended to quickly raise their body temp back to comfortable levels. + + + [head=3][bold]Supported Chemicals[/bold][/head] + + The following medicine has been approved for use in cryogenic tubes, and may be mixed by your chemists and Chief Medical Officer. All will metabolize at 0.5u/second, but required temperature may vary. + + The following will refer to injury in standard damage units; this system should be familiar to any modern medical professional. + + + [bold]Cryoxadone (Cryox)[/bold] + + The most common cryogenic medicine, and a jack of all trades. As it is easy to mix, your medical department should always have a supply of this on hand. + + Under 213K temp, 1u heals 4 Brute, 6 burn, 6 airloss, and 4 toxin damage. + + + [bold]Doxarubixadone (Doxa)[/bold] + + 4 out of 5 doctors agree this is the most effective treatment for genetic damage. Fairly affordable. + + Under 213K temp, 1u heals 2 genetic damage. + + + [bold]Aloxadone (Alox)[/bold] + + Notably, this chemical works on deceased patients, making it useful for treating massive burn damage. Some ingredients require the assistance of botany. + + Under 213K temp, 1u heals 4 heat, 4 shock, 4 cold, and 1.5 caustic damage. + + + [bold]Necrosol (Necro)[/bold] + + Notably, this chemical works on deceased patients. Necrosol is synthesized with the rare and poorly understood Omnizine, and is the only way to heal patients afflicted by over 200 poison damage. + + Under 213K temp, 1u heals 4 brute, 5 burn, and 2 poison. + + + [bold]Opporozidone (Oppo)[/bold] + + Notably, this chemical works on deceased patients. Oppo is synthesized with the rare Cognizine, and is the only way to reverse the effects of body decomposition. Requires a lower temperature. + + Under 150K temp, 1u reverts 20 seconds of body decomposition. + + + [head=3][bold]How Does It Work?[/bold][/head] + + The gas pump pulls air from the room’s air distribution pipes into the cryogenic tube’s own pipe loop. The pressure of 540kpa is quite spesific: the higher the pressure in the tubes, the faster the patient can be cooled. However, SolGov regulations forbid subjecting unprotected patients to pressures above 550kpa, citing the risk of barotrauma. + + + The lower the temperature on the freezer, the faster the patient will cool. If Leporazine is available to raise body temperature after treatment, the freezer may safely be set to its lowest possible temperature. + + + The gas filter removes unwanted gasses from the pipe loop. This is most commonly carbon dioxide produced by the patient exhaling, but ammonia may also be produced by Vox patients or those experiencing decomposition. The removed gas will be routed directly into the room’s waste pipe, while filtered air will go back into the cryogenic tubes. + editingDisabled: True + - uid: 7936 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 37.63905,22.47862 + parent: 2 + - uid: 8463 + components: + - type: MetaData + desc: Looks like this was left by the previous shift. + name: Old Note + - type: Transform + pos: 28.323992,-40.41831 + parent: 2 + - type: Paper + content: >- + I don't know if you're trained already, so I hope this'll help. + + AME controller needs an HV wire to output to, check the area with a crowbar or t-ray scanner if you aren't sure. + + There should be an empty room next to where you found this, that room's wired for the AME. + + You can put an AME anywhere if you can get the wires to it, though. + + 3x3 grid of AME parts, multitool them to unpack. Be careful not to 'trap' anything. + + AME controller adjacent horizontally or vertically (not diagonally) to any point. + + With only 1 core (what a 3x3 grid will get you), don't turn it up above 2. + + The golden rule is 2 injection for every 1 core. You can go lower to save fuel. + + Higher will burn the engine out and eventually make it explode. Don't. + + Don't forget to refuel it, it tends to stop at the worst possible time. + editingDisabled: True + - uid: 11808 + components: + - type: MetaData + desc: A handwritten laminated note, probably left by the last shift. + name: office paper (Lathe Cooling System) + - type: Transform + pos: 49.32131,19.793486 + parent: 2 + - type: Paper + content: >- + Hey John, wasn't able to finish the hyper-convection lathe cooling system, so I've left instructions on how to finish it. + + + Put passive vents underneath each of the lathes, I think I did one of them already? These should be facing towards the green pipe in the center. Make sure to grab the T-ray scanner I left with this note to see any pipes which are underneath floor tiles. + + + Connect the green pipes to the machine frame across from the lathes. You'll need a machine board to finish the freezer, and probably some spare parts. + + + Once the freezer is finished, hook it up to the green pipes and set it to 173K. Make sure you turn it on this time, we don't want a repeat of the containment field incident. + + + DO NOT upgrade the lathes to hyper-convection until the system is finished, you'll ash me and every other moth in this department. + + + Sorry again about not finishing it, but im sure you can figure it out! + + - Aurora + editingDisabled: True - uid: 15117 components: - type: Transform pos: 89.48129,32.60053 parent: 2 -- proto: ParticleAcceleratorControlBoxUnfinished +- proto: ParticleAcceleratorControlBox entities: - - uid: 4800 + - uid: 251 components: - type: Transform + rot: 1.5707963267948966 rad pos: 20.5,-40.5 parent: 2 - proto: ParticleAcceleratorEmitterForeUnfinished @@ -70021,20 +73635,43 @@ entities: - type: Transform pos: 17.877897,-26.451574 parent: 2 - - uid: 9708 + - uid: 13002 components: - type: Transform - pos: 5.4799275,40.593884 - parent: 2 - - uid: 11126 - components: - - type: Transform - pos: 54.520523,-14.325092 + pos: 6.699466,40.553192 parent: 2 - uid: 14760 components: - type: Transform - pos: 5.5,31.5 + pos: 6.480716,40.693703 + parent: 2 +- proto: PartRodMetal1 + entities: + - uid: 4873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.467148,38.49088 + parent: 2 + - uid: 10716 + components: + - type: Transform + pos: 58.547253,48.6787 + parent: 2 + - uid: 12090 + components: + - type: Transform + pos: 66.52919,38.621952 + parent: 2 + - uid: 15901 + components: + - type: Transform + pos: 58.734753,48.4912 + parent: 2 + - uid: 15902 + components: + - type: Transform + pos: 66.58378,38.434452 parent: 2 - proto: Pen entities: @@ -70048,6 +73685,12 @@ entities: - type: Transform pos: 11.095052,4.613485 parent: 2 + - uid: 4413 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 37.88905,22.650496 + parent: 2 - uid: 6047 components: - type: Transform @@ -70058,11 +73701,6 @@ entities: - type: Transform pos: 23.446625,15.655876 parent: 2 - - uid: 7761 - components: - - type: Transform - pos: 39.66111,17.754585 - parent: 2 - uid: 11973 components: - type: Transform @@ -70088,16 +73726,6 @@ entities: - type: Transform pos: 21.523584,22.514828 parent: 2 - - uid: 11979 - components: - - type: Transform - pos: 44.764744,23.837742 - parent: 2 - - uid: 11980 - components: - - type: Transform - pos: 63.3999,10.027362 - parent: 2 - uid: 14632 components: - type: Transform @@ -70108,8 +73736,20 @@ entities: - type: Transform pos: 51.110676,4.5944533 parent: 2 + - uid: 15613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.71149,11.225653 + parent: 2 - proto: PersonalAI entities: + - uid: 2353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.43356,37.249077 + parent: 2 - uid: 7414 components: - type: Transform @@ -70120,24 +73760,12 @@ entities: - type: Transform pos: 26.514572,47.589886 parent: 2 - - uid: 11217 - components: - - type: Transform - pos: 70.51922,36.549946 - parent: 2 - - uid: 13621 - components: - - type: Transform - parent: 13620 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: PhoneInstrument entities: - - uid: 7008 + - uid: 9407 components: - type: Transform - pos: 34.02968,41.62158 + pos: 32.347046,41.654026 parent: 2 - proto: PianoInstrument entities: @@ -70152,8 +73780,44 @@ entities: - uid: 14759 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,31.5 + pos: 7.4248915,29.65233 + parent: 2 +- proto: PillCanisterRandom + entities: + - uid: 15668 + components: + - type: Transform + pos: 61.291603,41.811512 + parent: 2 + - uid: 15669 + components: + - type: Transform + pos: 62.619728,38.764637 + parent: 2 +- proto: PillSpaceDrugs + entities: + - uid: 10139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.604103,41.561512 + parent: 2 + - uid: 10683 + components: + - type: Transform + pos: 62.385353,38.530262 + parent: 2 + - uid: 15672 + components: + - type: Transform + pos: 61.385353,41.436512 + parent: 2 +- proto: PlantBag + entities: + - uid: 2757 + components: + - type: Transform + pos: 37.179035,22.625505 parent: 2 - proto: PlantBGoneSpray entities: @@ -70210,58 +73874,36 @@ entities: - type: Transform pos: 76.5,-5.5 parent: 2 - - uid: 10135 +- proto: PlasmaWindoorSecureSecurityLocked + entities: + - uid: 9304 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,24.5 + pos: 42.5,35.5 parent: 2 - - uid: 12270 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 10606: + - - DoorStatus + - Close + - uid: 10606 components: - type: Transform rot: -1.5707963267948966 rad - pos: 41.5,24.5 - parent: 2 - - uid: 15469 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,28.5 - parent: 2 -- proto: PlasmaWindoorSecureSecurityLocked - entities: - - uid: 7707 - components: - - type: Transform - pos: 41.5,24.5 - parent: 2 - - uid: 8425 - components: - - type: Transform - pos: 40.5,28.5 - parent: 2 - - uid: 10850 - components: - - type: Transform - pos: 39.5,28.5 - parent: 2 - - uid: 13582 - components: - - type: Transform - pos: 38.5,24.5 - parent: 2 - - uid: 15470 - components: - - type: Transform - pos: 38.5,28.5 + pos: 42.5,35.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9304: + - - DoorStatus + - Close - proto: PlasticFlapsAirtightClear entities: - - uid: 451 - components: - - type: Transform - pos: 7.5,35.5 - parent: 2 - uid: 5576 components: - type: Transform @@ -70287,6 +73929,11 @@ entities: - type: Transform pos: 3.5,23.5 parent: 2 + - uid: 14663 + components: + - type: Transform + pos: 7.5,36.5 + parent: 2 - uid: 14767 components: - type: Transform @@ -70311,12 +73958,13 @@ entities: - type: Transform pos: 6.0254927,-3.2604024 parent: 2 -- proto: PlushieNar +- proto: PlushieLizard entities: - - uid: 5400 + - uid: 1705 components: - type: Transform - pos: 62.48992,18.519245 + rot: 6.283185307179586 rad + pos: 53.482903,43.66107 parent: 2 - proto: PlushieSharkGrey entities: @@ -70341,16 +73989,11 @@ entities: parent: 2 - proto: PortableFlasher entities: - - uid: 8412 + - uid: 13649 components: - type: Transform - anchored: False - pos: 31.5,26.5 + pos: 39.5,36.5 parent: 2 - - type: TriggerOnProximity - enabled: False - - type: Physics - bodyType: Dynamic - proto: PortableGeneratorJrPacman entities: - uid: 801 @@ -70358,10 +74001,10 @@ entities: - type: Transform pos: 13.5,-28.5 parent: 2 - - uid: 3176 + - uid: 3233 components: - type: Transform - pos: 35.5,36.5 + pos: 50.5,26.5 parent: 2 - uid: 4181 components: @@ -70373,6 +74016,11 @@ entities: - type: Transform pos: 12.5,17.5 parent: 2 + - uid: 6400 + components: + - type: Transform + pos: 81.5,12.5 + parent: 2 - uid: 7854 components: - type: Transform @@ -70393,11 +74041,6 @@ entities: - type: Transform pos: 9.5,-22.5 parent: 2 - - uid: 12362 - components: - - type: Transform - pos: 67.5,11.5 - parent: 2 - uid: 13153 components: - type: Transform @@ -70408,6 +74051,11 @@ entities: - type: Transform pos: -6.5,-23.5 parent: 2 + - uid: 15623 + components: + - type: Transform + pos: 36.5,36.5 + parent: 2 - proto: PortableGeneratorPacman entities: - uid: 4301 @@ -70420,13 +74068,15 @@ entities: - type: Transform pos: 80.5,33.5 parent: 2 -- proto: PortableScrubber +- proto: PortableGeneratorSuperPacman entities: - - uid: 4977 + - uid: 10884 components: - type: Transform - pos: 47.5,7.5 + pos: 10.5,-31.5 parent: 2 +- proto: PortableScrubber + entities: - uid: 6765 components: - type: Transform @@ -70458,12 +74108,6 @@ entities: - type: Transform pos: 58.5,-16.5 parent: 2 - - uid: 14084 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,34.5 - parent: 2 - proto: PosterContrabandEAT entities: - uid: 6763 @@ -70471,6 +74115,13 @@ entities: - type: Transform pos: 30.5,-8.5 parent: 2 +- proto: PosterContrabandFunPolice + entities: + - uid: 8525 + components: + - type: Transform + pos: 43.5,20.5 + parent: 2 - proto: PosterContrabandGreyTide entities: - uid: 739 @@ -70515,17 +74166,18 @@ entities: parent: 2 - proto: PosterLegit12Gauge entities: - - uid: 8980 + - uid: 4398 components: - type: Transform - pos: 37.5,28.5 + rot: -1.5707963267948966 rad + pos: 43.5,37.5 parent: 2 - proto: PosterLegit50thAnniversaryVintageReprint entities: - - uid: 11289 + - uid: 13087 components: - type: Transform - pos: 56.5,21.5 + pos: 61.5,17.5 parent: 2 - proto: PosterLegitAnatomyPoster entities: @@ -70563,22 +74215,6 @@ entities: - type: Transform pos: 68.5,-14.5 parent: 2 -- proto: PosterLegitDoNotQuestion - entities: - - uid: 14643 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,34.5 - parent: 2 -- proto: PosterLegitFoamForceAd - entities: - - uid: 2311 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,28.5 - parent: 2 - proto: PosterLegitFruitBowl entities: - uid: 13101 @@ -70586,6 +74222,21 @@ entities: - type: Transform pos: 41.5,-9.5 parent: 2 +- proto: PosterLegitHelpOthers + entities: + - uid: 8464 + components: + - type: Transform + pos: 35.5,35.5 + parent: 2 +- proto: PosterLegitHereForYourSafety + entities: + - uid: 2303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,26.5 + parent: 2 - proto: PosterLegitHighClassMartini entities: - uid: 13099 @@ -70600,6 +74251,13 @@ entities: - type: Transform pos: 17.5,-6.5 parent: 2 +- proto: PosterLegitIonRifle + entities: + - uid: 8483 + components: + - type: Transform + pos: 38.5,36.5 + parent: 2 - proto: PosterLegitLoveIan entities: - uid: 10252 @@ -70623,17 +74281,6 @@ entities: parent: 2 - proto: PosterLegitNanotrasenLogo entities: - - uid: 404 - components: - - type: Transform - pos: 29.5,37.5 - parent: 2 - - uid: 2126 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,26.5 - parent: 2 - uid: 7464 components: - type: Transform @@ -70667,6 +74314,14 @@ entities: - type: Transform pos: 13.5,8.5 parent: 2 +- proto: PosterLegitObey + entities: + - uid: 2305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,33.5 + parent: 2 - proto: PosterLegitPeriodicTable entities: - uid: 13093 @@ -70681,30 +74336,30 @@ entities: parent: 2 - proto: PosterLegitRenault entities: - - uid: 13092 + - uid: 249 components: - type: Transform - pos: 35.5,41.5 + pos: 34.5,41.5 parent: 2 - proto: PosterLegitReportCrimes entities: - - uid: 13096 + - uid: 8553 components: - type: Transform - pos: 37.5,16.5 + pos: 50.5,29.5 parent: 2 - proto: PosterLegitSafetyEyeProtection entities: + - uid: 3668 + components: + - type: Transform + pos: 50.5,12.5 + parent: 2 - uid: 13083 components: - type: Transform pos: 40.5,-41.5 parent: 2 - - uid: 13087 - components: - - type: Transform - pos: 55.5,16.5 - parent: 2 - proto: PosterLegitSafetyInternals entities: - uid: 13084 @@ -70751,6 +74406,11 @@ entities: parent: 2 - proto: PosterLegitSafetyMothMeth entities: + - uid: 3413 + components: + - type: Transform + pos: 41.5,28.5 + parent: 2 - uid: 13086 components: - type: Transform @@ -70777,16 +74437,23 @@ entities: parent: 2 - proto: PosterLegitSecWatch entities: - - uid: 2684 - components: - - type: Transform - pos: 30.5,16.5 - parent: 2 - uid: 7732 components: - type: Transform pos: -2.5,-6.5 parent: 2 + - uid: 8400 + components: + - type: Transform + pos: 35.5,22.5 + parent: 2 +- proto: PosterLegitSpaceCops + entities: + - uid: 8556 + components: + - type: Transform + pos: 52.5,34.5 + parent: 2 - proto: PosterLegitStateLaws entities: - uid: 7731 @@ -70794,6 +74461,13 @@ entities: - type: Transform pos: -4.5,-10.5 parent: 2 +- proto: PosterLegitTheOwl + entities: + - uid: 8579 + components: + - type: Transform + pos: 48.5,43.5 + parent: 2 - proto: PosterLegitUeNo entities: - uid: 11093 @@ -70808,6 +74482,11 @@ entities: - type: Transform pos: 22.5,2.5 parent: 2 + - uid: 15688 + components: + - type: Transform + pos: 48.5,48.5 + parent: 2 - proto: PosterMapPacked entities: - uid: 12314 @@ -70835,6 +74514,13 @@ entities: - type: Transform pos: 30.5,12.5 parent: 2 +- proto: PottedPlant17 + entities: + - uid: 2449 + components: + - type: Transform + pos: 63.5,50.5 + parent: 2 - proto: PottedPlant19 entities: - uid: 2615 @@ -70851,10 +74537,10 @@ entities: parent: 2 - proto: PottedPlant22 entities: - - uid: 12726 + - uid: 10391 components: - type: Transform - pos: 30.5,44.5 + pos: 29.5,44.5 parent: 2 - proto: PottedPlantBioluminscent entities: @@ -70883,6 +74569,11 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} + - uid: 3040 + components: + - type: Transform + pos: 45.5,19.5 + parent: 2 - uid: 4698 components: - type: Transform @@ -70899,22 +74590,6 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 5340 - components: - - type: Transform - pos: 54.5,22.5 - parent: 2 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 5344 - components: - - type: Transform - pos: 59.5,25.5 - parent: 2 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - uid: 7298 components: - type: Transform @@ -70941,37 +74616,21 @@ entities: - type: Transform pos: 3.5,13.5 parent: 2 + - uid: 10723 + components: + - type: Transform + pos: 20.5,35.5 + parent: 2 - uid: 11003 components: - type: Transform pos: 54.5,1.5 parent: 2 - - uid: 11221 - components: - - type: Transform - pos: 18.5,35.5 - parent: 2 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 11808 - components: - - type: Transform - pos: 45.5,16.5 - parent: 2 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - uid: 12165 components: - type: Transform pos: 58.5,-2.5 parent: 2 - - uid: 12754 - components: - - type: Transform - pos: 21.5,35.5 - parent: 2 - uid: 12949 components: - type: Transform @@ -70992,16 +74651,6 @@ entities: - type: Transform pos: 79.5,29.5 parent: 2 - - uid: 14232 - components: - - type: Transform - pos: 79.5,31.5 - parent: 2 - - uid: 14653 - components: - - type: Transform - pos: 57.5,38.5 - parent: 2 - uid: 14956 components: - type: Transform @@ -71017,13 +74666,6 @@ entities: - type: Transform pos: 31.5,-2.5 parent: 2 -- proto: PottedPlantRD - entities: - - uid: 10662 - components: - - type: Transform - pos: 60.5,10.5 - parent: 2 - proto: PowerCellHigh entities: - uid: 5631 @@ -71049,35 +74691,16 @@ entities: - type: Transform pos: 23.5,-23.5 parent: 2 - - uid: 5312 + - uid: 5340 components: - type: Transform - pos: 56.5,20.5 + pos: 42.5,29.5 + parent: 2 + - uid: 5483 + components: + - type: Transform + pos: 54.5,17.5 parent: 2 - - type: ContainerContainer - containers: - PowerCellCharger-powerCellContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - charger-slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - charger_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - type: Physics - canCollide: False - uid: 6794 components: - type: Transform @@ -71112,6 +74735,11 @@ entities: - type: Transform pos: 17.5,24.5 parent: 2 + - uid: 8632 + components: + - type: Transform + pos: 45.5,9.5 + parent: 2 - uid: 9626 components: - type: Transform @@ -71166,28 +74794,69 @@ entities: - type: Transform pos: 63.5,-9.5 parent: 2 - - uid: 15363 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,9.5 - parent: 2 -- proto: PowerCellSmall - entities: - - uid: 5313 - components: - - type: Transform - pos: 56.529827,20.631775 - parent: 2 - proto: PowerDrill entities: - - uid: 10671 + - uid: 10894 components: - type: Transform - pos: 63.50305,8.626264 + pos: 65.52399,10.725653 parent: 2 - proto: PoweredDimSmallLight entities: + - uid: 3330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,50.5 + parent: 2 + - uid: 4502 + components: + - type: Transform + pos: 43.5,47.5 + parent: 2 + - uid: 7808 + components: + - type: Transform + pos: 57.5,29.5 + parent: 2 + - uid: 7984 + components: + - type: Transform + pos: 65.5,8.5 + parent: 2 + - uid: 10374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,38.5 + parent: 2 + - uid: 10591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,32.5 + parent: 2 + - uid: 10666 + components: + - type: Transform + pos: 64.5,20.5 + parent: 2 + - uid: 10674 + components: + - type: Transform + pos: 54.5,45.5 + parent: 2 + - uid: 10680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,27.5 + parent: 2 + - uid: 11661 + components: + - type: Transform + pos: 68.5,42.5 + parent: 2 - uid: 12390 components: - type: Transform @@ -71198,18 +74867,6 @@ entities: - type: Transform pos: 8.5,-15.5 parent: 2 - - uid: 12875 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,47.5 - parent: 2 - - uid: 12879 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,11.5 - parent: 2 - uid: 12884 components: - type: Transform @@ -71225,11 +74882,24 @@ entities: - type: Transform pos: 89.5,-18.5 parent: 2 - - uid: 15278 + - uid: 13432 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,35.5 + rot: 1.5707963267948966 rad + pos: 62.5,19.5 + parent: 2 + - uid: 15420 + components: + - type: Transform + pos: 75.5,12.5 + parent: 2 +- proto: PoweredLEDSmallLight + entities: + - uid: 10593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,21.5 parent: 2 - proto: Poweredlight entities: @@ -71241,6 +74911,12 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 + - uid: 386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,36.5 + parent: 2 - uid: 398 components: - type: Transform @@ -71261,6 +74937,11 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 + - uid: 603 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 - uid: 840 components: - type: Transform @@ -71319,6 +75000,12 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 + - uid: 1831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,23.5 + parent: 2 - uid: 1922 components: - type: Transform @@ -71344,11 +75031,33 @@ entities: - type: Transform pos: 48.5,-23.5 parent: 2 - - uid: 2227 + - uid: 2199 + components: + - type: Transform + pos: 41.5,22.5 + parent: 2 + - uid: 2219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,26.5 + parent: 2 + - uid: 2255 + components: + - type: Transform + pos: 59.5,49.5 + parent: 2 + - uid: 2259 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,35.5 + pos: 53.5,30.5 + parent: 2 + - uid: 2340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,36.5 parent: 2 - uid: 2741 components: @@ -71380,10 +75089,17 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 3277 + - uid: 3145 components: - type: Transform - pos: 38.5,31.5 + rot: 1.5707963267948966 rad + pos: 32.5,29.5 + parent: 2 + - uid: 3193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,26.5 parent: 2 - uid: 3783 components: @@ -71463,14 +75179,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 4699 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,27.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 4700 components: - type: Transform @@ -71546,11 +75254,6 @@ entities: - type: Transform pos: 51.5,-4.5 parent: 2 - - uid: 5062 - components: - - type: Transform - pos: 30.5,30.5 - parent: 2 - uid: 5080 components: - type: Transform @@ -71592,6 +75295,12 @@ entities: - type: Transform pos: 40.5,-42.5 parent: 2 + - uid: 5199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,30.5 + parent: 2 - uid: 5218 components: - type: Transform @@ -71612,14 +75321,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 5277 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,9.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 5278 components: - type: Transform @@ -71628,15 +75329,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 5280 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,9.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - type: Timer - uid: 5281 components: - type: Transform @@ -71644,21 +75336,18 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 5282 + - uid: 5348 components: - type: Transform - pos: 68.5,16.5 + rot: -1.5707963267948966 rad + pos: 36.5,42.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5290 + - uid: 5368 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,13.5 + rot: -1.5707963267948966 rad + pos: 54.5,9.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 5432 components: - type: Transform @@ -71666,14 +75355,24 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 5433 + - uid: 5454 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,40.5 + rot: 1.5707963267948966 rad + pos: 29.5,25.5 + parent: 2 + - uid: 5460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,33.5 + parent: 2 + - uid: 5504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,32.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 5766 components: - type: Transform @@ -71710,12 +75409,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 6006 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,29.5 - parent: 2 - uid: 6009 components: - type: Transform @@ -71787,29 +75480,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 6486 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,24.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6487 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,24.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6537 - components: - - type: Transform - pos: 56.5,20.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 6538 components: - type: Transform @@ -71887,14 +75557,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7365 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-36.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 7366 components: - type: Transform @@ -71916,15 +75578,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7528 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,9.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - type: Timer - uid: 7530 components: - type: Transform @@ -71998,14 +75651,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7595 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,13.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 7683 components: - type: Transform @@ -72021,21 +75666,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7688 - components: - - type: Transform - pos: 50.5,21.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7720 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,17.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 7726 components: - type: Transform @@ -72097,13 +75727,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7857 - components: - - type: Transform - pos: 34.5,43.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 7958 components: - type: Transform @@ -72121,6 +75744,12 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,13.5 parent: 2 + - uid: 8029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-36.5 + parent: 2 - uid: 8130 components: - type: Transform @@ -72134,14 +75763,6 @@ entities: - type: Transform pos: -14.5,0.5 parent: 2 - - uid: 8266 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,22.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 8335 components: - type: Transform @@ -72173,6 +75794,11 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 + - uid: 8552 + components: + - type: Transform + pos: 50.5,21.5 + parent: 2 - uid: 8568 components: - type: Transform @@ -72181,25 +75807,18 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 8572 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,26.5 - parent: 2 - - uid: 8573 - components: - - type: Transform - pos: 39.5,19.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 8574 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,9.5 parent: 2 + - uid: 8576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,26.5 + parent: 2 - uid: 8642 components: - type: Transform @@ -72207,6 +75826,22 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 + - uid: 8674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,35.5 + parent: 2 + - uid: 8717 + components: + - type: Transform + pos: 47.5,42.5 + parent: 2 + - uid: 8810 + components: + - type: Transform + pos: 55.5,25.5 + parent: 2 - uid: 9061 components: - type: Transform @@ -72236,23 +75871,17 @@ entities: rot: 3.141592653589793 rad pos: 51.5,-8.5 parent: 2 - - uid: 9883 + - uid: 10597 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,28.5 + rot: 3.141592653589793 rad + pos: 43.5,27.5 parent: 2 - - uid: 10450 + - uid: 10611 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,27.5 - parent: 2 - - uid: 10451 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,22.5 + rot: 3.141592653589793 rad + pos: 39.5,17.5 parent: 2 - uid: 10708 components: @@ -72262,6 +75891,11 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 + - uid: 10891 + components: + - type: Transform + pos: 35.5,21.5 + parent: 2 - uid: 10992 components: - type: Transform @@ -72386,11 +76020,16 @@ entities: rot: 1.5707963267948966 rad pos: 38.5,-27.5 parent: 2 - - uid: 13604 + - uid: 13503 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,37.5 + rot: 3.141592653589793 rad + pos: 33.5,39.5 + parent: 2 + - uid: 13537 + components: + - type: Transform + pos: 44.5,36.5 parent: 2 - uid: 13683 components: @@ -72433,6 +76072,17 @@ entities: rot: 3.141592653589793 rad pos: 80.5,29.5 parent: 2 + - uid: 14434 + components: + - type: Transform + pos: 40.5,36.5 + parent: 2 + - uid: 14442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,34.5 + parent: 2 - uid: 14527 components: - type: Transform @@ -72450,23 +76100,42 @@ entities: - type: Transform pos: 91.5,32.5 parent: 2 - - uid: 14594 + - uid: 14652 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,26.5 + rot: 3.141592653589793 rad + pos: 63.5,10.5 parent: 2 - - uid: 15368 + - uid: 14655 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,20.5 + rot: 3.141592653589793 rad + pos: 55.5,13.5 parent: 2 - uid: 15383 components: - type: Transform pos: 18.5,42.5 parent: 2 + - uid: 15539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,22.5 + parent: 2 + - uid: 15542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,19.5 + parent: 2 +- proto: PoweredlightEmpty + entities: + - uid: 15671 + components: + - type: Transform + pos: 53.5,49.5 + parent: 2 - proto: PoweredlightExterior entities: - uid: 5664 @@ -72476,12 +76145,6 @@ entities: rot: -1.5707963267948966 rad pos: 11.9375,38.984375 parent: 126 - - uid: 14590 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,42.5 - parent: 2 - uid: 14595 components: - type: Transform @@ -72494,14 +76157,31 @@ entities: rot: -1.5707963267948966 rad pos: 77.5,35.5 parent: 2 - - uid: 14627 +- proto: PoweredlightLED + entities: + - uid: 5930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-17.5 + parent: 2 + - uid: 8402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,32.5 + parent: 2 + - uid: 8458 components: - type: Transform rot: -1.5707963267948966 rad - pos: 64.5,42.5 + pos: 64.5,28.5 + parent: 2 + - uid: 10595 + components: + - type: Transform + pos: 68.5,16.5 parent: 2 -- proto: PoweredlightLED - entities: - uid: 10984 components: - type: Transform @@ -72513,12 +76193,6 @@ entities: - type: Transform pos: 85.5,32.5 parent: 2 - - uid: 11109 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-17.5 - parent: 2 - proto: PoweredlightSodium entities: - uid: 3197 @@ -72557,6 +76231,11 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-16.5 parent: 2 + - uid: 301 + components: + - type: Transform + pos: 17.5,-15.5 + parent: 2 - uid: 317 components: - type: Transform @@ -72576,6 +76255,18 @@ entities: - type: Transform pos: -8.5,-9.5 parent: 2 + - uid: 632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-13.5 + parent: 2 + - uid: 661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-19.5 + parent: 2 - uid: 693 components: - type: Transform @@ -72600,36 +76291,6 @@ entities: rot: 3.141592653589793 rad pos: 5.5,15.5 parent: 2 - - uid: 2424 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,23.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2425 - components: - - type: Transform - pos: 30.5,21.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2426 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,17.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2482 - components: - - type: Transform - pos: 42.5,20.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 2491 components: - type: Transform @@ -72693,66 +76354,29 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,39.5 parent: 2 - - uid: 3147 + - uid: 3586 components: - type: Transform - pos: 59.5,38.5 + rot: 1.5707963267948966 rad + pos: 55.5,53.5 parent: 2 - - uid: 3148 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,34.5 - parent: 2 - - uid: 3278 - components: - - type: Transform - pos: 49.5,35.5 - parent: 2 - - uid: 3410 - components: - - type: Transform - pos: 70.5,34.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3432 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,30.5 - parent: 2 - - uid: 3447 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,27.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 4034 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,-9.5 parent: 2 - - uid: 4071 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-14.5 - parent: 2 - uid: 4149 components: - type: Transform rot: -1.5707963267948966 rad pos: 72.5,-8.5 parent: 2 - - uid: 4403 + - uid: 4399 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,27.5 + rot: -1.5707963267948966 rad + pos: 67.5,32.5 parent: 2 - uid: 4438 components: @@ -72905,13 +76529,6 @@ entities: rot: 3.141592653589793 rad pos: 36.5,-36.5 parent: 2 - - uid: 5264 - components: - - type: Transform - pos: 50.5,15.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 5274 components: - type: Transform @@ -72920,47 +76537,11 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 5464 - components: - - type: Transform - pos: 70.5,40.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5465 - components: - - type: Transform - pos: 70.5,37.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 5611 components: - type: Transform pos: 34.5,-38.5 parent: 2 - - uid: 5674 - components: - - type: Transform - pos: 68.5,42.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5675 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,38.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5676 - components: - - type: Transform - pos: 67.5,29.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 5723 components: - type: Transform @@ -72968,12 +76549,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 6325 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,20.5 - parent: 2 - uid: 6492 components: - type: Transform @@ -73067,14 +76642,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7829 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,7.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 7862 components: - type: Transform @@ -73097,14 +76664,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7865 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,5.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 7866 components: - type: Transform @@ -73123,16 +76682,11 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,35.5 parent: 2 - - uid: 8376 + - uid: 8424 components: - type: Transform - pos: 58.5,32.5 - parent: 2 - - uid: 8527 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-18.5 + rot: 1.5707963267948966 rad + pos: 69.5,45.5 parent: 2 - uid: 8528 components: @@ -73156,37 +76710,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 8601 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,12.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8602 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,8.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8603 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,44.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8609 - components: - - type: Transform - pos: 30.5,26.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 8639 components: - type: Transform @@ -73236,6 +76759,16 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-41.5 parent: 2 + - uid: 10386 + components: + - type: Transform + pos: 30.5,31.5 + parent: 2 + - uid: 10665 + components: + - type: Transform + pos: 34.5,37.5 + parent: 2 - uid: 10707 components: - type: Transform @@ -73277,13 +76810,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 11100 - components: - - type: Transform - pos: 44.5,25.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 11438 components: - type: Transform @@ -73380,18 +76906,6 @@ entities: - type: Transform pos: -26.5,0.5 parent: 2 - - uid: 13569 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,37.5 - parent: 2 - - uid: 13598 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,40.5 - parent: 2 - uid: 13716 components: - type: Transform @@ -73415,23 +76929,18 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-23.5 parent: 2 - - uid: 14085 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,33.5 - parent: 2 - - uid: 14086 - components: - - type: Transform - pos: 50.5,28.5 - parent: 2 - uid: 14149 components: - type: Transform rot: 3.141592653589793 rad pos: 74.5,20.5 parent: 2 + - uid: 14249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,46.5 + parent: 2 - uid: 14530 components: - type: Transform @@ -73444,26 +76953,172 @@ entities: rot: -1.5707963267948966 rad pos: 82.5,33.5 parent: 2 + - uid: 14798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,10.5 + parent: 2 - uid: 15007 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-12.5 parent: 2 -- proto: Protolathe - entities: - - uid: 5305 + - uid: 15569 components: - type: Transform - pos: 53.5,18.5 + rot: 3.141592653589793 rad + pos: 50.5,13.5 parent: 2 - - type: MaterialStorage - materialWhiteList: - - Steel - - Glass - - Plastic - - Wood - - Gold + - uid: 15674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,36.5 + parent: 2 + - uid: 15685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,33.5 + parent: 2 + - uid: 15791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,3.5 + parent: 2 +- proto: PoweredSmallLightEmpty + entities: + - uid: 3323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,24.5 + parent: 2 + - uid: 3348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,44.5 + parent: 2 + - uid: 4812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,25.5 + parent: 2 + - uid: 5488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,46.5 + parent: 2 + - uid: 8680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,53.5 + parent: 2 + - uid: 10660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,38.5 + parent: 2 + - uid: 10712 + components: + - type: Transform + pos: 51.5,28.5 + parent: 2 + - uid: 14225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,27.5 + parent: 2 + - uid: 14344 + components: + - type: Transform + pos: 69.5,35.5 + parent: 2 + - uid: 15670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,45.5 + parent: 2 + - uid: 15673 + components: + - type: Transform + pos: 70.5,40.5 + parent: 2 +- proto: PoweredWarmSmallLight + entities: + - uid: 3431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,37.5 + parent: 2 + - uid: 8202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,41.5 + parent: 2 + - uid: 9411 + components: + - type: Transform + pos: 58.5,39.5 + parent: 2 + - uid: 10400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,40.5 + parent: 2 + - uid: 10609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,18.5 + parent: 2 + - uid: 10661 + components: + - type: Transform + pos: 67.5,29.5 + parent: 2 + - uid: 10673 + components: + - type: Transform + pos: 62.5,41.5 + parent: 2 + - uid: 11476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,41.5 + parent: 2 + - uid: 13639 + components: + - type: Transform + pos: 43.5,25.5 + parent: 2 +- proto: Protolathe + entities: + - uid: 5238 + components: + - type: Transform + pos: 53.5,21.5 + parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - proto: ProtolatheMachineCircuitboard entities: - uid: 12658 @@ -73473,15 +77128,10 @@ entities: parent: 2 - proto: Rack entities: - - uid: 251 + - uid: 27 components: - type: Transform - pos: -0.5,-5.5 - parent: 2 - - uid: 553 - components: - - type: Transform - pos: 5.5,31.5 + pos: 65.5,20.5 parent: 2 - uid: 826 components: @@ -73548,25 +77198,32 @@ entities: - type: Transform pos: 33.5,-17.5 parent: 2 - - uid: 2222 + - uid: 2195 components: - type: Transform - pos: 50.5,28.5 + pos: 65.5,8.5 parent: 2 - - uid: 3162 + - uid: 3165 components: - type: Transform - pos: 56.5,25.5 + rot: 3.141592653589793 rad + pos: 40.5,28.5 parent: 2 - - uid: 5342 + - uid: 3168 components: - type: Transform - pos: 53.5,25.5 + rot: 3.141592653589793 rad + pos: 39.5,28.5 parent: 2 - - uid: 5375 + - uid: 3666 components: - type: Transform - pos: 52.5,11.5 + pos: 48.5,28.5 + parent: 2 + - uid: 5341 + components: + - type: Transform + pos: 66.5,6.5 parent: 2 - uid: 5439 components: @@ -73578,6 +77235,12 @@ entities: - type: Transform pos: 73.5,-12.5 parent: 2 + - uid: 5731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,22.5 + parent: 2 - uid: 5732 components: - type: Transform @@ -73599,12 +77262,23 @@ entities: - type: Transform pos: 31.5,-48.5 parent: 2 + - uid: 7780 + components: + - type: Transform + pos: 38.5,43.5 + parent: 2 - uid: 8173 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-42.5 parent: 2 + - uid: 8517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,8.5 + parent: 2 - uid: 9017 components: - type: Transform @@ -73621,17 +77295,6 @@ entities: - type: Transform pos: 27.5,5.5 parent: 2 - - uid: 9640 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,40.5 - parent: 2 - - uid: 10039 - components: - - type: Transform - pos: 28.5,-41.5 - parent: 2 - uid: 10303 components: - type: Transform @@ -73667,11 +77330,6 @@ entities: - type: Transform pos: 81.5,9.5 parent: 2 - - uid: 10833 - components: - - type: Transform - pos: 65.5,11.5 - parent: 2 - uid: 11409 components: - type: Transform @@ -73704,12 +77362,51 @@ entities: rot: 3.141592653589793 rad pos: 82.5,34.5 parent: 2 + - uid: 14834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,29.5 + parent: 2 + - uid: 14886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,47.5 + parent: 2 - uid: 15210 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-44.5 parent: 2 + - uid: 15371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,26.5 + parent: 2 + - uid: 15467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,31.5 + parent: 2 + - uid: 15894 + components: + - type: Transform + pos: 45.5,7.5 + parent: 2 + - uid: 15900 + components: + - type: Transform + pos: 47.5,24.5 + parent: 2 + - uid: 15904 + components: + - type: Transform + pos: 36.5,39.5 + parent: 2 - proto: RadiationCollectorFullTank entities: - uid: 8166 @@ -73744,11 +77441,6 @@ entities: parent: 2 - proto: RadioHandheld entities: - - uid: 1325 - components: - - type: Transform - pos: 21.5,-19.5 - parent: 2 - uid: 2165 components: - type: Transform @@ -73759,36 +77451,6 @@ entities: - type: Transform pos: 15.602974,35.641438 parent: 2 - - uid: 4090 - components: - - type: Transform - pos: 21.304989,-19.377043 - parent: 2 - - uid: 7267 - components: - - type: Transform - pos: 21.664364,-19.377043 - parent: 2 - - uid: 7268 - components: - - type: Transform - pos: 21.492489,-19.283293 - parent: 2 - - uid: 8693 - components: - - type: Transform - pos: 32.390015,26.521107 - parent: 2 - - uid: 8694 - components: - - type: Transform - pos: 32.546265,26.521107 - parent: 2 - - uid: 8695 - components: - - type: Transform - pos: 32.68689,26.505482 - parent: 2 - proto: Railing entities: - uid: 6662 @@ -73821,20 +77483,18 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,-9.5 parent: 2 - - uid: 13640 + - uid: 14954 components: - type: Transform - pos: 53.5,36.5 + rot: -1.5707963267948966 rad + pos: 3.5,-28.5 parent: 2 - - uid: 13641 +- proto: RailingCornerSmall + entities: + - uid: 15742 components: - type: Transform - pos: 54.5,36.5 - parent: 2 - - uid: 13642 - components: - - type: Transform - pos: 55.5,36.5 + pos: 3.5,-29.5 parent: 2 - proto: RandomArcade entities: @@ -73845,16 +77505,16 @@ entities: parent: 2 - proto: RandomArtifactSpawner entities: + - uid: 5445 + components: + - type: Transform + pos: 62.5,29.5 + parent: 2 - uid: 10421 components: - type: Transform pos: 64.5,28.5 parent: 2 - - uid: 10422 - components: - - type: Transform - pos: 62.5,28.5 - parent: 2 - proto: RandomBoard entities: - uid: 11863 @@ -73877,6 +77537,158 @@ entities: - type: Transform pos: 37.5,-17.5 parent: 2 +- proto: RandomCableHVSpawner + entities: + - uid: 1815 + components: + - type: Transform + pos: 81.5,45.5 + parent: 2 + - uid: 2565 + components: + - type: Transform + pos: 82.5,46.5 + parent: 2 + - uid: 2567 + components: + - type: Transform + pos: 82.5,44.5 + parent: 2 + - uid: 2568 + components: + - type: Transform + pos: 78.5,44.5 + parent: 2 + - uid: 2569 + components: + - type: Transform + pos: 86.5,46.5 + parent: 2 + - uid: 2572 + components: + - type: Transform + pos: 86.5,44.5 + parent: 2 + - uid: 4402 + components: + - type: Transform + pos: 84.5,45.5 + parent: 2 + - uid: 4409 + components: + - type: Transform + pos: 86.5,45.5 + parent: 2 + - uid: 4573 + components: + - type: Transform + pos: 80.5,45.5 + parent: 2 + - uid: 4729 + components: + - type: Transform + pos: 87.5,45.5 + parent: 2 + - uid: 4744 + components: + - type: Transform + pos: 85.5,45.5 + parent: 2 + - uid: 5013 + components: + - type: Transform + pos: 83.5,45.5 + parent: 2 + - uid: 5493 + components: + - type: Transform + pos: 78.5,46.5 + parent: 2 + - uid: 5495 + components: + - type: Transform + pos: 82.5,45.5 + parent: 2 + - uid: 5500 + components: + - type: Transform + pos: 77.5,45.5 + parent: 2 + - uid: 5639 + components: + - type: Transform + pos: 79.5,45.5 + parent: 2 + - uid: 6322 + components: + - type: Transform + pos: 78.5,45.5 + parent: 2 + - uid: 8524 + components: + - type: Transform + pos: 76.5,45.5 + parent: 2 + - uid: 15761 + components: + - type: Transform + pos: -13.5,-35.5 + parent: 2 + - uid: 15762 + components: + - type: Transform + pos: -12.5,-35.5 + parent: 2 + - uid: 15763 + components: + - type: Transform + pos: -11.5,-35.5 + parent: 2 + - uid: 15764 + components: + - type: Transform + pos: -10.5,-35.5 + parent: 2 + - uid: 15765 + components: + - type: Transform + pos: -9.5,-35.5 + parent: 2 + - uid: 15766 + components: + - type: Transform + pos: -8.5,-35.5 + parent: 2 + - uid: 15767 + components: + - type: Transform + pos: -7.5,-35.5 + parent: 2 + - uid: 15768 + components: + - type: Transform + pos: -6.5,-35.5 + parent: 2 + - uid: 15769 + components: + - type: Transform + pos: -5.5,-35.5 + parent: 2 + - uid: 15770 + components: + - type: Transform + pos: -4.5,-35.5 + parent: 2 + - uid: 15771 + components: + - type: Transform + pos: -3.5,-35.5 + parent: 2 + - uid: 15772 + components: + - type: Transform + pos: -2.5,-35.5 + parent: 2 - proto: RandomFoodMeal entities: - uid: 12793 @@ -73893,11 +77705,21 @@ entities: parent: 2 - proto: RandomPainting entities: + - uid: 5532 + components: + - type: Transform + pos: 44.5,23.5 + parent: 2 - uid: 12820 components: - type: Transform pos: 8.5,17.5 parent: 2 + - uid: 14845 + components: + - type: Transform + pos: 54.5,39.5 + parent: 2 - proto: RandomPosterAny entities: - uid: 2270 @@ -73905,20 +77727,15 @@ entities: - type: Transform pos: 79.5,9.5 parent: 2 - - uid: 5532 + - uid: 3260 components: - type: Transform - pos: 52.5,32.5 + pos: 68.5,34.5 parent: 2 - - uid: 7827 + - uid: 10118 components: - type: Transform - pos: 68.5,33.5 - parent: 2 - - uid: 8584 - components: - - type: Transform - pos: 58.5,38.5 + pos: 40.5,39.5 parent: 2 - uid: 11520 components: @@ -73930,6 +77747,24 @@ entities: - type: Transform pos: 10.5,31.5 parent: 2 + - uid: 15694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,46.5 + parent: 2 + - uid: 15701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,42.5 + parent: 2 + - uid: 15702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,51.5 + parent: 2 - proto: RandomPosterContraband entities: - uid: 2271 @@ -73937,21 +77772,16 @@ entities: - type: Transform pos: 69.5,41.5 parent: 2 - - uid: 2274 - components: - - type: Transform - pos: 40.5,39.5 - parent: 2 - - uid: 5528 - components: - - type: Transform - pos: 53.5,41.5 - parent: 2 - uid: 5624 components: - type: Transform pos: 16.5,-9.5 parent: 2 + - uid: 10676 + components: + - type: Transform + pos: 60.5,41.5 + parent: 2 - uid: 11176 components: - type: Transform @@ -73964,11 +77794,32 @@ entities: parent: 2 - proto: RandomPosterLegit entities: + - uid: 4130 + components: + - type: Transform + pos: 45.5,21.5 + parent: 2 + - uid: 5443 + components: + - type: Transform + pos: 36.5,17.5 + parent: 2 + - uid: 5477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,38.5 + parent: 2 - uid: 7573 components: - type: Transform pos: 10.5,2.5 parent: 2 + - uid: 7953 + components: + - type: Transform + pos: 30.5,19.5 + parent: 2 - uid: 8117 components: - type: Transform @@ -74031,18 +77882,8 @@ entities: - type: Transform pos: 78.5,7.5 parent: 2 - - uid: 14652 - components: - - type: Transform - pos: 59.5,34.5 - parent: 2 - proto: RandomSpawner entities: - - uid: 3433 - components: - - type: Transform - pos: 70.5,27.5 - parent: 2 - uid: 5688 components: - type: Transform @@ -74053,21 +77894,11 @@ entities: - type: Transform pos: 15.5,-25.5 parent: 2 - - uid: 8932 - components: - - type: Transform - pos: 70.5,29.5 - parent: 2 - uid: 9308 components: - type: Transform pos: 68.5,8.5 parent: 2 - - uid: 11866 - components: - - type: Transform - pos: 57.5,-13.5 - parent: 2 - uid: 11867 components: - type: Transform @@ -74088,31 +77919,6 @@ entities: - type: Transform pos: 20.5,26.5 parent: 2 - - uid: 11879 - components: - - type: Transform - pos: 83.5,7.5 - parent: 2 - - uid: 11880 - components: - - type: Transform - pos: 68.5,11.5 - parent: 2 - - uid: 11884 - components: - - type: Transform - pos: 71.5,37.5 - parent: 2 - - uid: 11893 - components: - - type: Transform - pos: 18.5,36.5 - parent: 2 - - uid: 11895 - components: - - type: Transform - pos: 21.5,37.5 - parent: 2 - uid: 12409 components: - type: Transform @@ -74143,11 +77949,6 @@ entities: - type: Transform pos: 47.5,-1.5 parent: 2 - - uid: 12415 - components: - - type: Transform - pos: 25.5,12.5 - parent: 2 - uid: 12417 components: - type: Transform @@ -74202,10 +78003,10 @@ entities: - type: Transform pos: 25.5,3.5 parent: 2 - - uid: 11032 + - uid: 9898 components: - type: Transform - pos: 20.5,35.5 + pos: 18.5,35.5 parent: 2 - proto: RandomVendingSnacks entities: @@ -74214,20 +78015,27 @@ entities: - type: Transform pos: 5.5,13.5 parent: 2 -- proto: Recycler - entities: - - uid: 829 + - uid: 10721 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,34.5 + pos: 19.5,35.5 parent: 2 +- proto: Recycler + entities: - uid: 5855 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-29.5 parent: 2 + - uid: 13115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,34.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - proto: ReinforcedPlasmaWindow entities: - uid: 321 @@ -74270,16 +78078,6 @@ entities: - type: Transform pos: 47.5,-33.5 parent: 2 - - uid: 2363 - components: - - type: Transform - pos: 38.5,25.5 - parent: 2 - - uid: 2364 - components: - - type: Transform - pos: 41.5,25.5 - parent: 2 - uid: 2411 components: - type: Transform @@ -74320,26 +78118,28 @@ entities: - type: Transform pos: 36.5,-33.5 parent: 2 - - uid: 8532 + - uid: 8548 components: - type: Transform - pos: 37.5,27.5 - parent: 2 - - uid: 8534 - components: - - type: Transform - pos: 37.5,26.5 + rot: 1.5707963267948966 rad + pos: 62.5,26.5 parent: 2 - uid: 8665 components: - type: Transform pos: 45.5,-45.5 parent: 2 - - uid: 8699 + - uid: 8689 components: - type: Transform pos: 63.5,26.5 parent: 2 + - uid: 9565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,32.5 + parent: 2 - uid: 10088 components: - type: Transform @@ -74355,21 +78155,17 @@ entities: - type: Transform pos: 45.5,-48.5 parent: 2 - - uid: 12296 - components: - - type: Transform - pos: 40.5,29.5 - parent: 2 - - uid: 12442 - components: - - type: Transform - pos: 39.5,29.5 - parent: 2 - uid: 12986 components: - type: Transform pos: 45.5,-46.5 parent: 2 + - uid: 13517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,32.5 + parent: 2 - proto: ReinforcedWindow entities: - uid: 6 @@ -74392,6 +78188,12 @@ entities: - type: Transform pos: -4.5,-11.5 parent: 2 + - uid: 37 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,23.5 + parent: 2 - uid: 45 components: - type: Transform @@ -74492,16 +78294,6 @@ entities: - type: Transform pos: 2.5,7.5 parent: 2 - - uid: 418 - components: - - type: Transform - pos: 53.5,12.5 - parent: 2 - - uid: 427 - components: - - type: Transform - pos: 55.5,12.5 - parent: 2 - uid: 445 components: - type: Transform @@ -74542,11 +78334,6 @@ entities: - type: Transform pos: 65.5,14.5 parent: 2 - - uid: 622 - components: - - type: Transform - pos: 28.5,29.5 - parent: 2 - uid: 674 components: - type: Transform @@ -74612,16 +78399,6 @@ entities: - type: Transform pos: 4.5,32.5 parent: 2 - - uid: 982 - components: - - type: Transform - pos: 20.5,-37.5 - parent: 2 - - uid: 984 - components: - - type: Transform - pos: 22.5,-37.5 - parent: 2 - uid: 986 components: - type: Transform @@ -74712,26 +78489,11 @@ entities: - type: Transform pos: 2.5,12.5 parent: 2 - - uid: 1231 - components: - - type: Transform - pos: 56.5,42.5 - parent: 2 - uid: 1251 components: - type: Transform pos: 33.5,-34.5 parent: 2 - - uid: 1256 - components: - - type: Transform - pos: 52.5,38.5 - parent: 2 - - uid: 1275 - components: - - type: Transform - pos: 55.5,42.5 - parent: 2 - uid: 1308 components: - type: Transform @@ -74872,25 +78634,10 @@ entities: - type: Transform pos: -3.5,0.5 parent: 2 - - uid: 1948 - components: - - type: Transform - pos: 52.5,39.5 - parent: 2 - uid: 2028 components: - type: Transform - pos: 16.5,-37.5 - parent: 2 - - uid: 2053 - components: - - type: Transform - pos: 4.5,28.5 - parent: 2 - - uid: 2055 - components: - - type: Transform - pos: 5.5,28.5 + pos: 42.5,48.5 parent: 2 - uid: 2056 components: @@ -74902,126 +78649,48 @@ entities: - type: Transform pos: 5.5,25.5 parent: 2 - - uid: 2059 - components: - - type: Transform - pos: 4.5,22.5 - parent: 2 - - uid: 2060 - components: - - type: Transform - pos: 5.5,22.5 - parent: 2 - uid: 2167 components: - type: Transform pos: -4.5,-15.5 parent: 2 - - uid: 2210 + - uid: 2230 components: - type: Transform - pos: 47.5,30.5 - parent: 2 - - uid: 2213 - components: - - type: Transform - pos: 60.5,36.5 + rot: 3.141592653589793 rad + pos: 35.5,16.5 parent: 2 - uid: 2231 components: - type: Transform pos: 75.5,23.5 parent: 2 - - uid: 2240 + - uid: 2251 components: - type: Transform - pos: 28.5,21.5 + pos: 63.5,33.5 parent: 2 - - uid: 2241 + - uid: 2254 components: - type: Transform - pos: 28.5,20.5 + pos: 62.5,33.5 parent: 2 - - uid: 2242 + - uid: 2289 components: - type: Transform - pos: 28.5,18.5 + pos: 35.5,24.5 parent: 2 - - uid: 2243 + - uid: 2425 components: - type: Transform - pos: 28.5,17.5 - parent: 2 - - uid: 2256 - components: - - type: Transform - pos: 31.5,21.5 - parent: 2 - - uid: 2257 - components: - - type: Transform - pos: 31.5,17.5 - parent: 2 - - uid: 2284 - components: - - type: Transform - pos: 44.5,34.5 - parent: 2 - - uid: 2285 - components: - - type: Transform - pos: 44.5,35.5 - parent: 2 - - uid: 2286 - components: - - type: Transform - pos: 44.5,36.5 - parent: 2 - - uid: 2367 - components: - - type: Transform - pos: 37.5,24.5 - parent: 2 - - uid: 2368 - components: - - type: Transform - pos: 37.5,23.5 - parent: 2 - - uid: 2369 - components: - - type: Transform - pos: 38.5,20.5 - parent: 2 - - uid: 2370 - components: - - type: Transform - pos: 37.5,21.5 - parent: 2 - - uid: 2373 - components: - - type: Transform - pos: 42.5,24.5 - parent: 2 - - uid: 2374 - components: - - type: Transform - pos: 42.5,22.5 + rot: 3.141592653589793 rad + pos: 34.5,16.5 parent: 2 - uid: 2427 components: - type: Transform pos: 88.5,-6.5 parent: 2 - - uid: 2458 - components: - - type: Transform - pos: 43.5,16.5 - parent: 2 - - uid: 2459 - components: - - type: Transform - pos: 41.5,16.5 - parent: 2 - uid: 2476 components: - type: Transform @@ -75197,16 +78866,6 @@ entities: - type: Transform pos: 59.5,-14.5 parent: 2 - - uid: 3069 - components: - - type: Transform - pos: 42.5,40.5 - parent: 2 - - uid: 3070 - components: - - type: Transform - pos: 41.5,40.5 - parent: 2 - uid: 3086 components: - type: Transform @@ -75227,65 +78886,10 @@ entities: - type: Transform pos: 18.5,44.5 parent: 2 - - uid: 3098 - components: - - type: Transform - pos: 48.5,49.5 - parent: 2 - - uid: 3099 - components: - - type: Transform - pos: 48.5,48.5 - parent: 2 - - uid: 3100 - components: - - type: Transform - pos: 47.5,48.5 - parent: 2 - uid: 3101 components: - type: Transform - pos: 46.5,48.5 - parent: 2 - - uid: 3102 - components: - - type: Transform - pos: 45.5,48.5 - parent: 2 - - uid: 3103 - components: - - type: Transform - pos: 45.5,47.5 - parent: 2 - - uid: 3104 - components: - - type: Transform - pos: 44.5,47.5 - parent: 2 - - uid: 3105 - components: - - type: Transform - pos: 43.5,47.5 - parent: 2 - - uid: 3110 - components: - - type: Transform - pos: 46.5,45.5 - parent: 2 - - uid: 3111 - components: - - type: Transform - pos: 47.5,45.5 - parent: 2 - - uid: 3112 - components: - - type: Transform - pos: 48.5,45.5 - parent: 2 - - uid: 3113 - components: - - type: Transform - pos: 49.5,45.5 + pos: 35.5,28.5 parent: 2 - uid: 3120 components: @@ -75297,60 +78901,42 @@ entities: - type: Transform pos: -25.5,-6.5 parent: 2 - - uid: 3127 + - uid: 3146 components: - type: Transform - pos: 50.5,46.5 + pos: 40.5,29.5 parent: 2 - - uid: 3128 + - uid: 3147 components: - type: Transform - pos: 50.5,47.5 + pos: 39.5,29.5 parent: 2 - - uid: 3129 + - uid: 3157 components: - type: Transform - pos: 51.5,47.5 + rot: 3.141592653589793 rad + pos: 36.5,28.5 parent: 2 - - uid: 3130 + - uid: 3162 components: - type: Transform - pos: 52.5,47.5 + pos: 35.5,27.5 parent: 2 - - uid: 3143 + - uid: 3164 components: - type: Transform - pos: 47.5,39.5 + pos: 35.5,25.5 parent: 2 - - uid: 3144 + - uid: 3174 components: - type: Transform - pos: 47.5,38.5 + rot: 3.141592653589793 rad + pos: 36.5,29.5 parent: 2 - - uid: 3145 + - uid: 3279 components: - type: Transform - pos: 47.5,37.5 - parent: 2 - - uid: 3211 - components: - - type: Transform - pos: 60.5,47.5 - parent: 2 - - uid: 3212 - components: - - type: Transform - pos: 61.5,47.5 - parent: 2 - - uid: 3214 - components: - - type: Transform - pos: 62.5,47.5 - parent: 2 - - uid: 3265 - components: - - type: Transform - pos: 62.5,46.5 + pos: 40.5,23.5 parent: 2 - uid: 3327 components: @@ -75362,25 +78948,11 @@ entities: - type: Transform pos: -7.5,-7.5 parent: 2 - - uid: 3335 - components: - - type: Transform - pos: 50.5,49.5 - parent: 2 - - uid: 3336 - components: - - type: Transform - pos: 51.5,49.5 - parent: 2 - uid: 3337 components: - type: Transform - pos: 52.5,49.5 - parent: 2 - - uid: 3338 - components: - - type: Transform - pos: 53.5,49.5 + rot: 3.141592653589793 rad + pos: 51.5,51.5 parent: 2 - uid: 3340 components: @@ -75392,55 +78964,16 @@ entities: - type: Transform pos: -21.5,-4.5 parent: 2 - - uid: 3345 - components: - - type: Transform - pos: 59.5,49.5 - parent: 2 - - uid: 3346 - components: - - type: Transform - pos: 60.5,49.5 - parent: 2 - uid: 3347 components: - type: Transform - pos: 61.5,49.5 + rot: 3.141592653589793 rad + pos: 52.5,51.5 parent: 2 - - uid: 3348 + - uid: 3350 components: - type: Transform - pos: 62.5,49.5 - parent: 2 - - uid: 3389 - components: - - type: Transform - pos: 64.5,49.5 - parent: 2 - - uid: 3390 - components: - - type: Transform - pos: 64.5,48.5 - parent: 2 - - uid: 3391 - components: - - type: Transform - pos: 65.5,48.5 - parent: 2 - - uid: 3392 - components: - - type: Transform - pos: 66.5,48.5 - parent: 2 - - uid: 3393 - components: - - type: Transform - pos: 67.5,48.5 - parent: 2 - - uid: 3394 - components: - - type: Transform - pos: 67.5,47.5 + pos: 50.5,51.5 parent: 2 - uid: 3397 components: @@ -75477,36 +79010,11 @@ entities: - type: Transform pos: 75.5,22.5 parent: 2 - - uid: 3479 - components: - - type: Transform - pos: 48.5,17.5 - parent: 2 - uid: 3480 components: - type: Transform pos: 48.5,19.5 parent: 2 - - uid: 3499 - components: - - type: Transform - pos: 54.5,26.5 - parent: 2 - - uid: 3500 - components: - - type: Transform - pos: 55.5,26.5 - parent: 2 - - uid: 3503 - components: - - type: Transform - pos: 57.5,26.5 - parent: 2 - - uid: 3504 - components: - - type: Transform - pos: 58.5,26.5 - parent: 2 - uid: 3594 components: - type: Transform @@ -75667,11 +79175,6 @@ entities: - type: Transform pos: 33.5,-35.5 parent: 2 - - uid: 4134 - components: - - type: Transform - pos: 56.5,26.5 - parent: 2 - uid: 4165 components: - type: Transform @@ -75797,11 +79300,6 @@ entities: - type: Transform pos: 47.5,-37.5 parent: 2 - - uid: 4812 - components: - - type: Transform - pos: 56.5,50.5 - parent: 2 - uid: 5004 components: - type: Transform @@ -75882,6 +79380,12 @@ entities: - type: Transform pos: 2.5,3.5 parent: 2 + - uid: 5335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,16.5 + parent: 2 - uid: 5357 components: - type: Transform @@ -75892,6 +79396,12 @@ entities: - type: Transform pos: 2.5,4.5 parent: 2 + - uid: 5411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,37.5 + parent: 2 - uid: 5417 components: - type: Transform @@ -75907,36 +79417,6 @@ entities: - type: Transform pos: 39.5,-41.5 parent: 2 - - uid: 5489 - components: - - type: Transform - pos: 72.5,33.5 - parent: 2 - - uid: 5490 - components: - - type: Transform - pos: 72.5,32.5 - parent: 2 - - uid: 5491 - components: - - type: Transform - pos: 72.5,31.5 - parent: 2 - - uid: 5492 - components: - - type: Transform - pos: 72.5,29.5 - parent: 2 - - uid: 5493 - components: - - type: Transform - pos: 72.5,28.5 - parent: 2 - - uid: 5494 - components: - - type: Transform - pos: 72.5,27.5 - parent: 2 - uid: 5728 components: - type: Transform @@ -75977,6 +79457,11 @@ entities: - type: Transform pos: 42.5,-2.5 parent: 2 + - uid: 6536 + components: + - type: Transform + pos: 64.5,33.5 + parent: 2 - uid: 6807 components: - type: Transform @@ -76062,6 +79547,12 @@ entities: - type: Transform pos: -12.5,-2.5 parent: 2 + - uid: 7755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,29.5 + parent: 2 - uid: 7763 components: - type: Transform @@ -76092,11 +79583,6 @@ entities: - type: Transform pos: -25.5,-4.5 parent: 2 - - uid: 7945 - components: - - type: Transform - pos: 34.5,16.5 - parent: 2 - uid: 7957 components: - type: Transform @@ -76112,6 +79598,62 @@ entities: - type: Transform pos: -17.5,-2.5 parent: 2 + - uid: 8398 + components: + - type: Transform + pos: 38.5,23.5 + parent: 2 + - uid: 8453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,29.5 + parent: 2 + - uid: 8457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,23.5 + parent: 2 + - uid: 8587 + components: + - type: Transform + pos: 37.5,23.5 + parent: 2 + - uid: 8597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,51.5 + parent: 2 + - uid: 8599 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,32.5 + parent: 2 + - uid: 8616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,51.5 + parent: 2 + - uid: 8634 + components: + - type: Transform + pos: 33.5,16.5 + parent: 2 + - uid: 8636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,29.5 + parent: 2 + - uid: 8694 + components: + - type: Transform + pos: -26.5,-21.5 + parent: 2 - uid: 8736 components: - type: Transform @@ -76322,20 +79864,41 @@ entities: - type: Transform pos: 116.5,-19.5 parent: 2 - - uid: 9334 + - uid: 9265 components: - type: Transform - pos: 43.5,40.5 + rot: 3.141592653589793 rad + pos: 16.5,-37.5 parent: 2 - - uid: 10086 + - uid: 9284 components: - type: Transform - pos: 52.5,25.5 + rot: 3.141592653589793 rad + pos: 17.5,-37.5 parent: 2 - - uid: 10087 + - uid: 9292 components: - type: Transform - pos: 52.5,23.5 + rot: 3.141592653589793 rad + pos: 73.5,31.5 + parent: 2 + - uid: 9294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-37.5 + parent: 2 + - uid: 9295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-37.5 + parent: 2 + - uid: 9296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,28.5 parent: 2 - uid: 10123 components: @@ -76357,11 +79920,28 @@ entities: - type: Transform pos: 52.5,1.5 parent: 2 + - uid: 10539 + components: + - type: Transform + pos: 40.5,48.5 + parent: 2 + - uid: 10587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,12.5 + parent: 2 - uid: 10768 components: - type: Transform pos: 73.5,24.5 parent: 2 + - uid: 11280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,29.5 + parent: 2 - uid: 11609 components: - type: Transform @@ -76377,50 +79957,21 @@ entities: - type: Transform pos: -26.5,-13.5 parent: 2 - - uid: 11737 - components: - - type: Transform - pos: 57.5,30.5 - parent: 2 - - uid: 11860 - components: - - type: Transform - pos: 56.5,30.5 - parent: 2 - - uid: 11861 - components: - - type: Transform - pos: 55.5,30.5 - parent: 2 - uid: 11971 components: - type: Transform pos: 45.5,-31.5 parent: 2 - - uid: 12080 - components: - - type: Transform - pos: 57.5,42.5 - parent: 2 - uid: 12421 components: - type: Transform pos: -9.5,-10.5 parent: 2 - - uid: 12431 + - uid: 12435 components: - type: Transform - pos: 56.5,49.5 - parent: 2 - - uid: 12439 - components: - - type: Transform - pos: 54.5,46.5 - parent: 2 - - uid: 12443 - components: - - type: Transform - pos: 58.5,46.5 + rot: 3.141592653589793 rad + pos: 62.5,51.5 parent: 2 - uid: 12444 components: @@ -76447,21 +79998,6 @@ entities: - type: Transform pos: -7.5,-15.5 parent: 2 - - uid: 12662 - components: - - type: Transform - pos: 55.5,46.5 - parent: 2 - - uid: 12670 - components: - - type: Transform - pos: 57.5,46.5 - parent: 2 - - uid: 12761 - components: - - type: Transform - pos: 47.5,31.5 - parent: 2 - uid: 12804 components: - type: Transform @@ -76532,16 +80068,6 @@ entities: - type: Transform pos: -9.5,1.5 parent: 2 - - uid: 13120 - components: - - type: Transform - pos: 23.5,34.5 - parent: 2 - - uid: 13142 - components: - - type: Transform - pos: 24.5,34.5 - parent: 2 - uid: 13255 components: - type: Transform @@ -76572,21 +80098,16 @@ entities: - type: Transform pos: -13.5,-21.5 parent: 2 - - uid: 13283 + - uid: 13287 components: - type: Transform - pos: 56.5,51.5 + pos: 41.5,48.5 parent: 2 - uid: 13295 components: - type: Transform pos: -25.5,-21.5 parent: 2 - - uid: 13297 - components: - - type: Transform - pos: -26.5,-21.5 - parent: 2 - uid: 13298 components: - type: Transform @@ -76647,20 +80168,10 @@ entities: - type: Transform pos: 8.5,-41.5 parent: 2 - - uid: 13557 + - uid: 13650 components: - type: Transform - pos: 65.5,35.5 - parent: 2 - - uid: 13558 - components: - - type: Transform - pos: 65.5,36.5 - parent: 2 - - uid: 13559 - components: - - type: Transform - pos: 65.5,37.5 + pos: 32.5,16.5 parent: 2 - uid: 13656 components: @@ -76672,11 +80183,6 @@ entities: - type: Transform pos: -25.5,-8.5 parent: 2 - - uid: 13692 - components: - - type: Transform - pos: 17.5,-37.5 - parent: 2 - uid: 13786 components: - type: Transform @@ -76767,6 +80273,17 @@ entities: - type: Transform pos: 82.5,35.5 parent: 2 + - uid: 14232 + components: + - type: Transform + pos: 44.5,48.5 + parent: 2 + - uid: 14238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,23.5 + parent: 2 - uid: 14363 components: - type: Transform @@ -76797,6 +80314,16 @@ entities: - type: Transform pos: 3.5,25.5 parent: 2 + - uid: 14858 + components: + - type: Transform + pos: 28.5,20.5 + parent: 2 + - uid: 14859 + components: + - type: Transform + pos: 28.5,21.5 + parent: 2 - uid: 14923 components: - type: Transform @@ -76812,10 +80339,21 @@ entities: - type: Transform pos: 12.5,-38.5 parent: 2 - - uid: 15365 + - uid: 15676 components: - type: Transform - pos: 33.5,16.5 + pos: 45.5,48.5 + parent: 2 + - uid: 15677 + components: + - type: Transform + pos: 46.5,48.5 + parent: 2 + - uid: 15877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,12.5 parent: 2 - proto: RemoteSignaller entities: @@ -76824,27 +80362,12 @@ entities: - type: Transform pos: 19.330996,46.803196 parent: 2 - - uid: 15427 - components: - - type: MetaData - name: robotics blast doors - - type: Transform - pos: 46.333313,11.606956 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 8248: - - - Pressed - - Toggle - 11022: - - - Pressed - - Toggle - proto: ResearchAndDevelopmentServer entities: - - uid: 8233 + - uid: 5321 components: - type: Transform - pos: 49.5,25.5 + pos: 49.5,23.5 parent: 2 - proto: Retractor entities: @@ -76853,63 +80376,74 @@ entities: - type: Transform pos: 66.55991,-3.281434 parent: 2 +- proto: RevolverCapGun + entities: + - uid: 15182 + components: + - type: Transform + pos: 48.41018,44.784416 + parent: 2 +- proto: RiceSeeds + entities: + - uid: 8730 + components: + - type: Transform + pos: 57.497494,41.422585 + parent: 2 - proto: RiotBulletShield entities: - - uid: 2404 + - uid: 9926 components: - type: Transform - pos: 40.60262,28.679474 - parent: 2 - - uid: 7584 + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10405 components: - type: Transform - pos: 40.594807,28.656036 - parent: 2 - - uid: 8351 - components: - - type: Transform - pos: 40.57918,28.913849 - parent: 2 + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: RiotLaserShield entities: - - uid: 6422 + - uid: 11017 components: - type: Transform - pos: 40.04793,28.648224 - parent: 2 - - uid: 8419 + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12773 components: - type: Transform - pos: 40.04012,28.835724 - parent: 2 - - uid: 8422 - components: - - type: Transform - pos: 40.063557,28.726349 - parent: 2 + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: RiotShield entities: - - uid: 8348 + - uid: 15200 components: - type: Transform - pos: 40.368244,28.741974 - parent: 2 - - uid: 8417 + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15337 components: - type: Transform - pos: 40.368244,28.609161 - parent: 2 - - uid: 14664 - components: - - type: Transform - pos: 40.336994,28.882599 - parent: 2 + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: RobocopCircuitBoard entities: - uid: 14284 components: - type: Transform - pos: 86.54398,28.473265 + pos: 86.50753,32.46467 parent: 2 - proto: RockGuitarInstrument entities: @@ -76947,11 +80481,6 @@ entities: - type: Transform pos: 67.45054,-4.453309 parent: 2 - - uid: 5395 - components: - - type: Transform - pos: 55.53906,10.407994 - parent: 2 - proto: Scalpel entities: - uid: 5137 @@ -76962,7 +80491,7 @@ entities: - uid: 5394 components: - type: Transform - pos: 55.523434,10.407994 + pos: 52.58589,8.339501 parent: 2 - uid: 10073 components: @@ -76971,10 +80500,27 @@ entities: parent: 2 - proto: ScrapCamera entities: - - uid: 6843 + - uid: 10083 components: - type: Transform - pos: 67.493965,34.506084 + pos: 51.39755,42.20345 + parent: 2 + - uid: 13568 + components: + - type: Transform + pos: 69.38568,33.532196 + parent: 2 + - uid: 15705 + components: + - type: Transform + pos: 58.145233,50.61697 + parent: 2 +- proto: ScrapFireExtinguisher + entities: + - uid: 13569 + components: + - type: Transform + pos: 70.49884,30.786736 parent: 2 - proto: Screen entities: @@ -77049,6 +80595,56 @@ entities: rot: 1.5707963267948966 rad pos: 88.5,32.5 parent: 2 + - uid: 15658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,50.5 + parent: 2 +- proto: ScreenTimer + entities: + - uid: 15631 + components: + - type: Transform + pos: 51.5,39.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: SignalTimer + maxLength: 1 + delay: 0.7 + - type: DeviceLinkSource + linkedPorts: + 15632: + - - Timer + - Trigger + - type: ActiveSignalTimer + - uid: 15632 + components: + - type: Transform + pos: 50.5,39.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: SignalTimer + maxLength: 1 + delay: 0.7 + - type: DeviceLinkSource + linkedPorts: + 9342: + - - Timer + - Forward + - - Start + - Reverse + 15631: + - - Timer + - Trigger + 15156: + - - Timer + - Forward + - - Start + - Reverse + - type: ActiveSignalTimer - proto: Screwdriver entities: - uid: 11132 @@ -77058,10 +80654,10 @@ entities: parent: 2 - proto: SecurityTechFab entities: - - uid: 12373 + - uid: 8508 components: - type: Transform - pos: 38.5,21.5 + pos: 42.5,35.5 parent: 2 - type: TechnologyDatabase supportedDisciplines: @@ -77071,16 +80667,21 @@ entities: - CivilianServices - proto: SeedExtractor entities: - - uid: 3159 + - uid: 2431 components: - type: Transform - pos: 53.5,36.5 + pos: 59.5,45.5 parent: 2 - uid: 6677 components: - type: Transform pos: 45.5,-4.5 parent: 2 + - uid: 14870 + components: + - type: Transform + pos: 40.5,18.5 + parent: 2 - proto: ShardGlass entities: - uid: 10809 @@ -77093,6 +80694,13 @@ entities: - type: Transform pos: 90.27248,-20.82429 parent: 2 +- proto: ShardGlassReinforced + entities: + - uid: 10311 + components: + - type: Transform + pos: 71.58744,34.19874 + parent: 2 - proto: SheetGlass entities: - uid: 784 @@ -77107,21 +80715,6 @@ entities: - type: Transform pos: 33.519444,-17.381672 parent: 2 - - uid: 5327 - components: - - type: Transform - pos: 56.186665,17.583338 - parent: 2 - - uid: 5328 - components: - - type: Transform - pos: 56.186665,17.583338 - parent: 2 - - uid: 5329 - components: - - type: Transform - pos: 56.186665,17.583338 - parent: 2 - uid: 5636 components: - type: Transform @@ -77132,10 +80725,16 @@ entities: - type: Transform pos: 16.999237,-26.465462 parent: 2 - - uid: 10311 + - uid: 8429 components: - type: Transform - pos: 8.421515,-6.356274 + pos: 55.510555,17.572374 + parent: 2 + - uid: 14829 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 55.527084,17.569584 parent: 2 - proto: SheetPlasma entities: @@ -77149,7 +80748,8 @@ entities: - uid: 7529 components: - type: Transform - pos: 71.06963,13.620979 + rot: -12.566370614359172 rad + pos: 71.4212,13.651101 parent: 2 - uid: 14581 components: @@ -77170,27 +80770,27 @@ entities: - type: Transform pos: 17.5,-26.5 parent: 2 - - uid: 10312 + - uid: 7756 components: - type: Transform - pos: 8.609015,-6.340649 + pos: 17.522242,-26.53012 parent: 2 - proto: SheetPlastic entities: - - uid: 5333 + - uid: 7827 components: - type: Transform - pos: 56.436665,17.505213 + pos: 18.15394,-26.405436 parent: 2 - - uid: 5334 + - uid: 8421 components: - type: Transform - pos: 56.436665,17.505213 + pos: 56.041805,17.55675 parent: 2 - - uid: 5335 + - uid: 10656 components: - type: Transform - pos: 56.436665,17.505213 + pos: 55.99271,17.57192 parent: 2 - proto: SheetSteel entities: @@ -77206,46 +80806,6 @@ entities: - type: Transform pos: 33.507664,-17.468887 parent: 2 - - uid: 5152 - components: - - type: Transform - pos: 43.528275,-35.489674 - parent: 2 - - uid: 5153 - components: - - type: Transform - pos: 43.528275,-35.489674 - parent: 2 - - uid: 5330 - components: - - type: Transform - pos: 56.63979,17.598963 - parent: 2 - - uid: 5331 - components: - - type: Transform - pos: 56.63979,17.598963 - parent: 2 - - uid: 5332 - components: - - type: Transform - pos: 56.63979,17.598963 - parent: 2 - - uid: 5383 - components: - - type: Transform - pos: 50.524685,8.532994 - parent: 2 - - uid: 5384 - components: - - type: Transform - pos: 50.524685,8.532994 - parent: 2 - - uid: 5385 - components: - - type: Transform - pos: 50.524685,8.532994 - parent: 2 - uid: 5633 components: - type: Transform @@ -77254,7 +80814,7 @@ entities: - uid: 5634 components: - type: Transform - pos: 16.5,-26.5 + pos: 56.604305,17.55675 parent: 2 - uid: 7271 components: @@ -77266,21 +80826,21 @@ entities: - type: Transform pos: 30.5,-30.5 parent: 2 - - uid: 8175 + - uid: 8470 components: - type: Transform - pos: 43.528275,-35.489674 - parent: 2 - - uid: 10313 - components: - - type: Transform - pos: 8.53089,-6.434399 + pos: 36.47758,27.594019 parent: 2 - uid: 12088 components: - type: Transform pos: 16.49948,-26.476994 parent: 2 + - uid: 15581 + components: + - type: Transform + pos: 56.55521,17.556295 + parent: 2 - proto: SheetSteel1 entities: - uid: 4672 @@ -77307,20 +80867,29 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ShotGunCabinetFilled - entities: - - uid: 2221 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,18.5 - parent: 2 - proto: Shovel entities: - uid: 1053 components: - type: Transform - pos: 5.5,31.5 + pos: 7.4232864,29.512466 + parent: 2 +- proto: ShuttersNormal + entities: + - uid: 8446 + components: + - type: Transform + pos: 13.5,29.5 + parent: 2 + - uid: 8541 + components: + - type: Transform + pos: 11.5,29.5 + parent: 2 + - uid: 9640 + components: + - type: Transform + pos: 12.5,29.5 parent: 2 - proto: ShuttersNormalOpen entities: @@ -77363,10 +80932,31 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,-6.5 parent: 2 - - uid: 2090 + - uid: 2065 components: - type: Transform - pos: 11.5,29.5 + pos: 32.5,16.5 + parent: 2 + - uid: 2261 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 + - uid: 3494 + components: + - type: Transform + pos: 35.5,16.5 + parent: 2 + - uid: 4635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-38.5 + parent: 2 + - uid: 5447 + components: + - type: Transform + pos: 38.5,23.5 parent: 2 - uid: 6512 components: @@ -77374,39 +80964,35 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,-5.5 parent: 2 - - uid: 12381 + - uid: 8575 components: - type: Transform - pos: 13.5,29.5 + pos: 37.5,23.5 parent: 2 - - uid: 12824 + - uid: 8592 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,17.5 + pos: 40.5,23.5 parent: 2 - - uid: 12825 + - uid: 8621 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,20.5 + pos: 36.5,23.5 parent: 2 - - uid: 12826 + - uid: 9038 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,18.5 + pos: 33.5,16.5 parent: 2 - - uid: 12839 + - uid: 9266 components: - type: Transform - pos: 12.5,29.5 + pos: 39.5,23.5 parent: 2 - - uid: 13183 + - uid: 11676 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,21.5 + pos: 47.5,37.5 parent: 2 - uid: 13476 components: @@ -77459,59 +81045,41 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,-33.5 parent: 2 - - uid: 13644 - components: - - type: Transform - pos: 55.5,30.5 - parent: 2 - - uid: 13645 - components: - - type: Transform - pos: 56.5,30.5 - parent: 2 - - uid: 13646 - components: - - type: Transform - pos: 57.5,30.5 - parent: 2 - - uid: 13647 - components: - - type: Transform - pos: 55.5,42.5 - parent: 2 - - uid: 13648 - components: - - type: Transform - pos: 56.5,42.5 - parent: 2 - - uid: 13649 - components: - - type: Transform - pos: 57.5,42.5 - parent: 2 - - uid: 13650 + - uid: 13629 components: - type: Transform rot: -1.5707963267948966 rad - pos: 52.5,38.5 + pos: 35.5,25.5 parent: 2 - - uid: 13651 + - uid: 13630 components: - type: Transform rot: -1.5707963267948966 rad - pos: 52.5,39.5 + pos: 35.5,24.5 parent: 2 - - uid: 13652 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,36.5 - parent: 2 - - uid: 13915 + - uid: 14599 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,29.5 + pos: 28.5,30.5 + parent: 2 + - uid: 14600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,31.5 + parent: 2 + - uid: 14860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,20.5 + parent: 2 + - uid: 14861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,21.5 parent: 2 - uid: 14910 components: @@ -77531,82 +81099,31 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,16.5 parent: 2 - - uid: 15370 - components: - - type: Transform - pos: 33.5,16.5 - parent: 2 - - uid: 15371 - components: - - type: Transform - pos: 34.5,16.5 - parent: 2 - proto: ShuttersRadiationOpen entities: - - uid: 449 - components: - - type: Transform - pos: 17.5,-37.5 - parent: 2 - - uid: 780 - components: - - type: Transform - pos: 20.5,-37.5 - parent: 2 - - uid: 2044 - components: - - type: Transform - pos: 16.5,-37.5 - parent: 2 - - uid: 3241 - components: - - type: Transform - pos: 22.5,-44.5 - parent: 2 - - uid: 3972 - components: - - type: Transform - pos: 23.5,-44.5 - parent: 2 - - uid: 3992 - components: - - type: Transform - pos: 21.5,-44.5 - parent: 2 - - uid: 4502 + - uid: 8673 components: - type: Transform + rot: 3.141592653589793 rad pos: 22.5,-37.5 parent: 2 - - uid: 4635 + - uid: 8932 components: - type: Transform - pos: 26.5,-43.5 + rot: 3.141592653589793 rad + pos: 16.5,-37.5 parent: 2 - - uid: 4636 + - uid: 9282 components: - type: Transform - pos: 25.5,-43.5 + rot: 3.141592653589793 rad + pos: 17.5,-37.5 parent: 2 - - uid: 7808 + - uid: 9332 components: - type: Transform - pos: 20.5,-44.5 - parent: 2 - - uid: 8031 - components: - - type: Transform - pos: 19.5,-44.5 - parent: 2 - - uid: 10959 - components: - - type: Transform - pos: 16.5,-43.5 - parent: 2 - - uid: 10999 - components: - - type: Transform - pos: 17.5,-43.5 + rot: 3.141592653589793 rad + pos: 20.5,-37.5 parent: 2 - proto: ShuttersWindowOpen entities: @@ -77742,17 +81259,6 @@ entities: parent: 2 - proto: SignalButton entities: - - uid: 128 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,28.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 8103: - - - Pressed - - Toggle - uid: 1471 components: - type: MetaData @@ -77771,50 +81277,57 @@ entities: 270: - - Pressed - Toggle - - uid: 7809 + - uid: 2443 + components: + - type: MetaData + name: signal button (Inner Doors) + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.41377,27.721725 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8414: + - - Pressed + - Open + 8412: + - - Pressed + - Open + - type: Label + currentLabel: Inner Doors + - type: NameModifier + baseName: signal button + - uid: 11020 + components: + - type: MetaData + name: signal button (Outer Doors) + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.41377,27.494875 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 318: + - - Pressed + - Open + 257: + - - Pressed + - Open + - type: Label + currentLabel: Outer Doors + - type: NameModifier + baseName: signal button + - uid: 14932 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,22.5 + pos: 51.5,34.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 8067: + 15632: - - Pressed - - Toggle - - uid: 13002 - components: - - type: Transform - pos: 10.5,29.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2090: - - - Pressed - - Toggle - 12839: - - - Pressed - - Toggle - 12381: - - - Pressed - - Toggle - - uid: 14913 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,15.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 14912: - - - Pressed - - Toggle - 14910: - - - Pressed - - Toggle - 14911: - - - Pressed - - Toggle + - Trigger - proto: SignalButtonDirectional entities: - uid: 543 @@ -77842,152 +81355,44 @@ entities: 1154: - - Pressed - Toggle - - uid: 3993 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-40.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 4636: - - - Pressed - - Toggle - 4635: - - - Pressed - - Toggle - 3972: - - - Pressed - - Toggle - 3241: - - - Pressed - - Toggle - 3992: - - - Pressed - - Toggle - 7808: - - - Pressed - - Toggle - 8031: - - - Pressed - - Toggle - 10999: - - - Pressed - - Toggle - 10959: - - - Pressed - - Toggle - - uid: 11001 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-37.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 449: - - - Pressed - - Toggle - 2044: - - - Pressed - - Toggle - 780: - - - Pressed - - Toggle - 4502: - - - Pressed - - Toggle - - uid: 11019 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,16.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 15371: - - - Pressed - - Toggle - 15370: - - - Pressed - - Toggle - - uid: 13655 + - uid: 10538 components: - type: MetaData - name: perma shutters + name: signal button (Inner Doors) - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,33.5 + pos: 31.69,31.78 parent: 2 - type: DeviceLinkSource linkedPorts: - 13650: + 8414: - - Pressed - - Toggle - 13651: + - Open + 8412: - - Pressed - - Toggle - 13652: - - - Pressed - - Toggle - 13644: - - - Pressed - - Toggle - 13645: - - - Pressed - - Toggle - 13646: - - - Pressed - - Toggle - 13647: - - - Pressed - - Toggle - 13648: - - - Pressed - - Toggle - 13649: - - - Pressed - - Toggle - - uid: 14566 - components: - - type: Transform - pos: 61.5,26.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 5351: - - - Pressed - - Toggle - 5361: - - - Pressed - - Toggle + - Open + - type: Label + currentLabel: Inner Doors + - type: NameModifier + baseName: signal button - uid: 14742 components: + - type: MetaData + name: signal button (Outer Doors) - type: Transform - pos: 31.77084,21.456566 + pos: 31.31,31.78 parent: 2 - type: DeviceLinkSource linkedPorts: - 12825: + 257: - - Pressed - - Toggle - 13183: + - Open + 318: - - Pressed - - Toggle - - uid: 14924 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.777786,17.53082 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12826: - - - Pressed - - Toggle - 12824: - - - Pressed - - Toggle + - Open + - type: Label + currentLabel: Outer Doors + - type: NameModifier + baseName: signal button - uid: 15124 components: - type: Transform @@ -78011,33 +81416,488 @@ entities: 15121: - - Pressed - Toggle - - uid: 15127 + - uid: 15804 components: + - type: MetaData + name: signal button (Front Doors) - type: Transform rot: 3.141592653589793 rad - pos: 30.5,27.5 + pos: 49.5,16.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 13915: + 10449: + - - Pressed + - Open + 3035: - - Pressed - Toggle - - uid: 15286 + - type: Label + currentLabel: Front Doors + - type: NameModifier + baseName: signal button +- proto: SignalSwitch + entities: + - uid: 5331 components: + - type: MetaData + name: signal switch (Shutters) + - type: Transform + pos: 31.49404,32.001522 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 14600: + - - On + - Open + - - Off + - Close + 14599: + - - On + - Open + - - Off + - Close + - type: Label + currentLabel: Shutters + - type: NameModifier + baseName: signal switch + - uid: 10605 + components: + - type: MetaData + name: signal switch (Blast Doors) + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,25.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 365: + - - On + - Open + - - Off + - Close + 8520: + - - On + - Open + - - Off + - Close + 8557: + - - On + - Open + - - Off + - Close + - type: Label + currentLabel: Blast Doors + - type: NameModifier + baseName: signal switch +- proto: SignalSwitchDirectional + entities: + - uid: 2053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,15.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 14912: + - - Off + - Close + - - On + - Open + 14910: + - - On + - Open + - - Off + - Close + 14911: + - - On + - Open + - - Off + - Close + - uid: 2059 + components: + - type: MetaData + name: signal switch (Storage Bay) + - type: Transform + pos: 10.5,29.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8541: + - - On + - Open + - - Off + - Close + 9640: + - - Off + - Close + - - On + - Open + 8446: + - - On + - Open + - - Off + - Close + - type: Label + currentLabel: Storage Bay + - type: NameModifier + baseName: signal switch + - uid: 7856 + components: + - type: MetaData + name: signal switch (Brig Shutters) + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.060936,27.49635 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3494: + - - On + - Open + - - Off + - Close + 2261: + - - On + - Open + - - Off + - Close + 9038: + - - On + - Open + - - Off + - Close + 2065: + - - On + - Open + - - Off + - Close + 14860: + - - On + - Open + - - Off + - Close + 14861: + - - On + - Open + - - Off + - Close + - type: Label + currentLabel: Brig Shutters + - type: NameModifier + baseName: signal switch + - uid: 10979 + components: + - type: MetaData + name: signal switch (Window Shutters) + - type: Transform + pos: 11.5,-32.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13490: + - - On + - Open + - - Off + - Close + 13489: + - - On + - Open + - - Off + - Close + 13488: + - - On + - Open + - - Off + - Close + 4635: + - - On + - Open + - - Off + - Close + 13478: + - - On + - Open + - - Off + - Close + 13477: + - - On + - Open + - - Off + - Close + 13476: + - - On + - Open + - - Off + - Close + 13481: + - - On + - Open + - - Off + - Close + 13482: + - - On + - Open + - - Off + - Close + 13480: + - - On + - Open + - - Off + - Close + - type: Label + currentLabel: Window Shutters + - type: NameModifier + baseName: signal switch + - uid: 11164 + components: + - type: MetaData + name: signal switch (Bay Conveyor Belts) - type: Transform pos: 6.5,34.5 parent: 2 - type: DeviceLinkSource linkedPorts: + 967: + - - On + - Forward + - - Off + - Off + 999: + - - On + - Forward + - - Off + - Off + 944: + - - On + - Forward + - - Off + - Off + 11473: + - - On + - Forward + - - Off + - Off 895: - - - Pressed - - Toggle + - - On + - Open + - - Off + - Close + - type: Label + currentLabel: Bay Conveyor Belts + - type: NameModifier + baseName: signal switch + - uid: 12384 + components: + - type: MetaData + name: signal switch (Shutters) + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,39.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11676: + - - On + - Open + - - Off + - Close + - type: Label + currentLabel: Shutters + - type: NameModifier + baseName: signal switch + - uid: 13484 + components: + - type: MetaData + name: signal switch (Radiation Shutters) + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-37.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 9282: + - - On + - Open + - - Off + - Close + 8932: + - - On + - Open + - - Off + - Close + 9332: + - - On + - Open + - - Off + - Close + 8673: + - - Off + - Close + - - On + - Open + - type: Label + currentLabel: Radiation Shutters + - type: NameModifier + baseName: signal switch + - uid: 13584 + components: + - type: MetaData + name: signal switch (Loading Dock Belts) + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,28.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2051: + - - On + - Forward + - - Off + - Off + 5467: + - - On + - Forward + - - Off + - Off + 258: + - - On + - Forward + - - Off + - Off + 320: + - - On + - Forward + - - Off + - Off + 450: + - - On + - Forward + - - Off + - Off + 2064: + - - On + - Forward + - - Off + - Off + 4321: + - - On + - Forward + - - Off + - Off + 7972: + - - On + - Forward + - - Off + - Off + 5518: + - - On + - Forward + - - Off + - Off + 8239: + - - On + - Forward + - - Off + - Off + 2009: + - - Off + - Close + - - On + - Open + 3357: + - - On + - Open + - - Off + - Close + 2000: + - - Off + - Close + - - On + - Open + 15789: + - - On + - Open + - - Off + - Close + - type: Label + currentLabel: Loading Dock Belts + - type: NameModifier + baseName: signal switch + - uid: 13706 + components: + - type: MetaData + name: signal switch (Control Room Shutters) + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.060936,27.72783 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13629: + - - On + - Open + - - Off + - Close + 13630: + - - On + - Open + - - Off + - Close + 8621: + - - On + - Open + - - Off + - Close + 8575: + - - On + - Open + - - Off + - Close + 5447: + - - On + - Open + - - Off + - Close + 9266: + - - On + - Open + - - Off + - Close + 8592: + - - On + - Open + - - Off + - Close + - type: Label + currentLabel: Control Room Shutters + - type: NameModifier + baseName: signal switch + - uid: 14657 + components: + - type: MetaData + name: signal switch (Janitorial Service) + - type: Transform + pos: 29.5,32.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2363: + - - On + - On + - - Off + - Off + - type: Label + currentLabel: Janitorial Service + - type: NameModifier + baseName: signal switch - proto: SignAnomaly entities: - - uid: 5066 + - uid: 15513 components: - type: Transform - pos: 61.5,21.5 + pos: 58.5,22.5 parent: 2 - proto: SignAnomaly2 entities: @@ -78048,11 +81908,10 @@ entities: parent: 2 - proto: SignArmory entities: - - uid: 7678 + - uid: 671 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,23.5 + pos: 39.5,32.5 parent: 2 - proto: SignAtmos entities: @@ -78096,6 +81955,14 @@ entities: - type: Transform pos: 41.5,-36.5 parent: 2 +- proto: SignCansScience + entities: + - uid: 11522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,12.5 + parent: 2 - proto: SignCargo entities: - uid: 11211 @@ -78143,11 +82010,31 @@ entities: parent: 2 - proto: SignCryogenicsMed entities: + - uid: 7365 + components: + - type: Transform + pos: 48.5,24.5 + parent: 2 - uid: 11804 components: - type: Transform pos: 63.5,-0.5 parent: 2 +- proto: SignDangerMed + entities: + - uid: 15523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,26.5 + parent: 2 +- proto: SignDetective + entities: + - uid: 9252 + components: + - type: Transform + pos: 54.5,34.5 + parent: 2 - proto: SignDirectionalBridge entities: - uid: 7329 @@ -78189,6 +82076,19 @@ entities: - type: Transform pos: 28.5037,2.3089128 parent: 2 +- proto: SignDirectionalEscapePod + entities: + - uid: 10722 + components: + - type: Transform + pos: 60.521824,46.423424 + parent: 2 + - uid: 15684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.52563,35.58913 + parent: 2 - proto: SignDirectionalEvac entities: - uid: 7894 @@ -78321,6 +82221,17 @@ entities: - type: Transform pos: 3.5,-33.5 parent: 2 + - uid: 9903 + components: + - type: Transform + pos: 60.521824,46.62134 + parent: 2 + - uid: 12296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.52563,35.412045 + parent: 2 - uid: 12297 components: - type: Transform @@ -78333,12 +82244,6 @@ entities: rot: 3.141592653589793 rad pos: 68.5,19.5 parent: 2 - - uid: 12299 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,45.5 - parent: 2 - proto: SignDirectionalSupply entities: - uid: 5418 @@ -78361,6 +82266,14 @@ entities: rot: 3.141592653589793 rad pos: 12.5,11.5 parent: 2 +- proto: SignDoors + entities: + - uid: 12754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,52.5 + parent: 2 - proto: SignElectricalMed entities: - uid: 12351 @@ -78378,41 +82291,6 @@ entities: - type: Transform pos: 31.5,-49.5 parent: 2 - - uid: 14698 - components: - - type: Transform - pos: 28.5,22.5 - parent: 2 - - uid: 14850 - components: - - type: Transform - pos: 50.5,38.5 - parent: 2 - - uid: 14851 - components: - - type: Transform - pos: 50.5,43.5 - parent: 2 - - uid: 14852 - components: - - type: Transform - pos: 52.5,44.5 - parent: 2 - - uid: 14853 - components: - - type: Transform - pos: 60.5,44.5 - parent: 2 - - uid: 14854 - components: - - type: Transform - pos: 62.5,41.5 - parent: 2 - - uid: 14855 - components: - - type: Transform - pos: 62.5,31.5 - parent: 2 - uid: 14949 components: - type: Transform @@ -78431,12 +82309,6 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,-33.5 parent: 2 - - uid: 15369 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,16.5 - parent: 2 - proto: SignEngine entities: - uid: 5157 @@ -78458,15 +82330,17 @@ entities: parent: 2 - proto: SignEscapePods entities: - - uid: 5027 + - uid: 12434 components: - type: Transform - pos: 85.5,3.5 + rot: -1.5707963267948966 rad + pos: 65.5,45.5 parent: 2 - - uid: 15453 + - uid: 14770 components: - type: Transform - pos: 41.5,43.5 + rot: 1.5707963267948966 rad + pos: 86.5,3.5 parent: 2 - uid: 15458 components: @@ -78496,12 +82370,6 @@ entities: parent: 2 - proto: SignFire entities: - - uid: 12280 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,26.5 - parent: 2 - uid: 12993 components: - type: Transform @@ -78520,10 +82388,12 @@ entities: - type: Transform pos: 33.5,-31.5 parent: 2 - - uid: 10437 +- proto: SignGenpop + entities: + - uid: 8573 components: - type: Transform - pos: 61.5,27.5 + pos: 32.5,26.5 parent: 2 - proto: SignGravity entities: @@ -78554,10 +82424,10 @@ entities: parent: 2 - proto: SignInterrogation entities: - - uid: 8439 + - uid: 8933 components: - type: Transform - pos: 38.5,32.5 + pos: 55.5,31.5 parent: 2 - proto: SignJanitor entities: @@ -78576,6 +82446,12 @@ entities: parent: 2 - proto: SignLaserMed entities: + - uid: 11001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-37.5 + parent: 2 - uid: 12289 components: - type: Transform @@ -78603,10 +82479,11 @@ entities: parent: 2 - proto: SignMagneticsMed entities: - - uid: 6846 + - uid: 12178 components: - type: Transform - pos: 3.5,39.5 + rot: 3.141592653589793 rad + pos: 3.5,40.5 parent: 2 - uid: 14680 components: @@ -78645,6 +82522,11 @@ entities: - type: Transform pos: 65.5,-7.5 parent: 2 + - uid: 12182 + components: + - type: Transform + pos: 51.5,46.5 + parent: 2 - proto: SignNTMine entities: - uid: 10969 @@ -78665,13 +82547,6 @@ entities: - type: Transform pos: 16.5,40.5 parent: 2 -- proto: SignPrison - entities: - - uid: 13138 - components: - - type: Transform - pos: 47.5,33.5 - parent: 2 - proto: SignRadiationMed entities: - uid: 747 @@ -78679,10 +82554,10 @@ entities: - type: Transform pos: 18.5,-40.5 parent: 2 - - uid: 4012 + - uid: 15635 components: - type: Transform - pos: 24.5,-37.5 + pos: 19.5,-37.5 parent: 2 - proto: SignRND entities: @@ -78699,25 +82574,24 @@ entities: parent: 2 - proto: SignRobo entities: + - uid: 5277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,12.5 + parent: 2 - uid: 8612 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,12.5 parent: 2 - - uid: 12292 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,12.5 - parent: 2 - proto: SignSalvage entities: - - uid: 6779 + - uid: 14914 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,29.5 + pos: 9.5,29.5 parent: 2 - proto: SignScience entities: @@ -78727,13 +82601,6 @@ entities: rot: -1.5707963267948966 rad pos: 48.5,15.5 parent: 2 -- proto: SignSecurearea - entities: - - uid: 11939 - components: - - type: Transform - pos: 17.5,-15.5 - parent: 2 - proto: SignSecureMed entities: - uid: 1518 @@ -78790,22 +82657,12 @@ entities: - type: Transform pos: 87.5,32.5 parent: 2 - - uid: 14574 - components: - - type: Transform - pos: 82.5,32.5 - parent: 2 - uid: 14592 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,24.5 parent: 2 - - uid: 14849 - components: - - type: Transform - pos: 47.5,36.5 - parent: 2 - uid: 14951 components: - type: Transform @@ -78842,13 +82699,27 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,-29.5 parent: 2 -- proto: SignSecurity +- proto: SignSecureMedRed entities: - - uid: 12294 + - uid: 221 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,27.5 + pos: 39.5,-15.5 + parent: 2 +- proto: SignSecurity + entities: + - uid: 9015 + components: + - type: Transform + pos: 28.5,29.5 + parent: 2 +- proto: SignServer + entities: + - uid: 5201 + components: + - type: Transform + pos: 52.5,25.5 parent: 2 - proto: SignShipDock entities: @@ -78862,19 +82733,13 @@ entities: - type: Transform pos: -11.5,1.5 parent: 2 -- proto: SignShock - entities: - - uid: 11017 - components: - - type: Transform - pos: 42.5,-13.5 - parent: 2 - proto: SignSmoking entities: - - uid: 5466 + - uid: 3432 components: - type: Transform - pos: 68.5,38.5 + rot: 3.141592653589793 rad + pos: 68.5,40.5 parent: 2 - uid: 9721 components: @@ -78898,11 +82763,6 @@ entities: - type: Transform pos: 5.529085,-16.484226 parent: 2 - - uid: 10083 - components: - - type: Transform - pos: 62.5,29.5 - parent: 2 - uid: 12823 components: - type: Transform @@ -78944,11 +82804,6 @@ entities: parent: 2 - proto: SignToolStorage entities: - - uid: 5704 - components: - - type: Transform - pos: 68.5,40.5 - parent: 2 - uid: 11200 components: - type: Transform @@ -78960,14 +82815,6 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,-13.5 parent: 2 -- proto: SignToxins - entities: - - uid: 12304 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,12.5 - parent: 2 - proto: SignVault entities: - uid: 10444 @@ -78982,6 +82829,13 @@ entities: - type: Transform pos: 78.5,0.5 parent: 2 +- proto: SignXenobio + entities: + - uid: 13126 + components: + - type: Transform + pos: 68.5,28.5 + parent: 2 - proto: SingularityGenerator entities: - uid: 750 @@ -78999,6 +82853,12 @@ entities: - type: Transform pos: 11.5,13.5 parent: 2 + - uid: 2402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,15.5 + parent: 2 - uid: 5276 components: - type: Transform @@ -79021,11 +82881,6 @@ entities: rot: -1.5707963267948966 rad pos: 53.5,-7.5 parent: 2 - - uid: 10446 - components: - - type: Transform - pos: 51.5,15.5 - parent: 2 - uid: 10853 components: - type: Transform @@ -79049,11 +82904,13 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,6.5 parent: 2 - - uid: 13628 +- proto: SinkStemlessWater + entities: + - uid: 8554 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,36.5 + rot: 3.141592653589793 rad + pos: 44.5,21.5 parent: 2 - proto: SinkWide entities: @@ -79076,11 +82933,6 @@ entities: parent: 2 - proto: Skub entities: - - uid: 5403 - components: - - type: Transform - pos: 62.485527,20.60704 - parent: 2 - uid: 13072 components: - type: Transform @@ -79211,19 +83063,12 @@ entities: - type: Transform pos: 79.5,34.5 parent: 2 - - uid: 14741 - components: - - type: MetaData - name: Security SMES - - type: Transform - pos: 37.5,33.5 - parent: 2 - proto: SmokingPipeFilledTobacco entities: - - uid: 11946 + - uid: 6913 components: - type: Transform - pos: 32.982197,41.628204 + pos: 35.496292,41.910683 parent: 2 - proto: SodaDispenser entities: @@ -79465,6 +83310,36 @@ entities: - type: Transform pos: -13.5,-33.5 parent: 2 + - uid: 2302 + components: + - type: Transform + pos: 87.5,40.5 + parent: 2 + - uid: 2307 + components: + - type: Transform + pos: 85.5,40.5 + parent: 2 + - uid: 2374 + components: + - type: Transform + pos: 87.5,50.5 + parent: 2 + - uid: 2380 + components: + - type: Transform + pos: 79.5,50.5 + parent: 2 + - uid: 2404 + components: + - type: Transform + pos: 77.5,50.5 + parent: 2 + - uid: 3500 + components: + - type: Transform + pos: 85.5,50.5 + parent: 2 - uid: 5535 components: - type: Transform @@ -79665,6 +83540,11 @@ entities: - type: Transform pos: 85.5,47.5 parent: 2 + - uid: 8558 + components: + - type: Transform + pos: 79.5,40.5 + parent: 2 - uid: 8904 components: - type: Transform @@ -79840,6 +83720,51 @@ entities: - type: Transform pos: 117.5,-19.5 parent: 2 + - uid: 9279 + components: + - type: Transform + pos: 77.5,40.5 + parent: 2 + - uid: 15743 + components: + - type: Transform + pos: -5.5,-40.5 + parent: 2 + - uid: 15744 + components: + - type: Transform + pos: -3.5,-40.5 + parent: 2 + - uid: 15745 + components: + - type: Transform + pos: -3.5,-30.5 + parent: 2 + - uid: 15746 + components: + - type: Transform + pos: -5.5,-30.5 + parent: 2 + - uid: 15753 + components: + - type: Transform + pos: -11.5,-40.5 + parent: 2 + - uid: 15754 + components: + - type: Transform + pos: -13.5,-40.5 + parent: 2 + - uid: 15755 + components: + - type: Transform + pos: -13.5,-30.5 + parent: 2 + - uid: 15756 + components: + - type: Transform + pos: -11.5,-30.5 + parent: 2 - proto: SolarTracker entities: - uid: 1443 @@ -79866,6 +83791,12 @@ entities: parent: 2 - type: SpamEmitSound enabled: False + - uid: 15191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,21.5 + parent: 2 - proto: SpawnMechRipley entities: - uid: 14751 @@ -79882,10 +83813,10 @@ entities: parent: 2 - proto: SpawnMobBandito entities: - - uid: 12772 + - uid: 4123 components: - type: Transform - pos: 62.5,10.5 + pos: 64.5,10.5 parent: 2 - proto: SpawnMobCatGeneric entities: @@ -79910,24 +83841,25 @@ entities: parent: 2 - proto: SpawnMobFoxRenault entities: - - uid: 12231 + - uid: 15496 components: - type: Transform - pos: 31.5,41.5 + pos: 31.5,39.5 parent: 2 - proto: SpawnMobMcGriff entities: - - uid: 2493 + - uid: 15816 components: - type: Transform - pos: 36.5,19.5 + pos: 40.5,27.5 parent: 2 - proto: SpawnMobMonkeyPunpun entities: - - uid: 6527 + - uid: 1646 components: - type: Transform - pos: 39.5,-5.5 + rot: 1.5707963267948966 rad + pos: 38.5,-10.5 parent: 2 - proto: SpawnMobMouse entities: @@ -79941,16 +83873,6 @@ entities: - type: Transform pos: 73.5,-15.5 parent: 2 - - uid: 12797 - components: - - type: Transform - pos: 43.5,44.5 - parent: 2 - - uid: 12798 - components: - - type: Transform - pos: 67.5,39.5 - parent: 2 - uid: 12799 components: - type: Transform @@ -79968,7 +83890,7 @@ entities: parent: 2 - proto: SpawnMobPollyParrot entities: - - uid: 2409 + - uid: 9259 components: - type: Transform pos: 11.5,-33.5 @@ -79989,10 +83911,10 @@ entities: parent: 2 - proto: SpawnMobShiva entities: - - uid: 8444 + - uid: 1195 components: - type: Transform - pos: 44.5,22.5 + pos: 43.5,41.5 parent: 2 - proto: SpawnMobSlothPaperwork entities: @@ -80036,15 +83958,15 @@ entities: parent: 2 - proto: SpawnPointBorg entities: - - uid: 14628 + - uid: 3034 components: - type: Transform - pos: 49.5,9.5 + pos: 51.5,10.5 parent: 2 - - uid: 14629 + - uid: 3667 components: - type: Transform - pos: 51.5,9.5 + pos: 49.5,10.5 parent: 2 - proto: SpawnPointBotanist entities: @@ -80060,10 +83982,10 @@ entities: parent: 2 - proto: SpawnPointCaptain entities: - - uid: 8682 + - uid: 15473 components: - type: Transform - pos: 33.5,40.5 + pos: 36.5,42.5 parent: 2 - proto: SpawnPointCargoTechnician entities: @@ -80131,10 +84053,10 @@ entities: parent: 2 - proto: SpawnPointDetective entities: - - uid: 8679 + - uid: 10425 components: - type: Transform - pos: 42.5,19.5 + pos: 58.5,38.5 parent: 2 - proto: SpawnPointHeadOfPersonnel entities: @@ -80145,10 +84067,10 @@ entities: parent: 2 - proto: SpawnPointHeadOfSecurity entities: - - uid: 8438 + - uid: 8696 components: - type: Transform - pos: 44.5,24.5 + pos: 48.5,42.5 parent: 2 - proto: SpawnPointJanitor entities: @@ -80289,87 +84211,92 @@ entities: parent: 2 - proto: SpawnPointQuartermaster entities: - - uid: 14990 + - uid: 11900 components: - type: Transform - pos: 7.5,18.5 + pos: 6.5,15.5 parent: 2 - proto: SpawnPointResearchAssistant entities: - - uid: 10657 + - uid: 15842 components: - type: Transform - pos: 57.5,23.5 + pos: 49.5,17.5 parent: 2 - - uid: 10658 + - uid: 15871 components: - type: Transform - pos: 56.5,23.5 + pos: 53.5,18.5 parent: 2 - proto: SpawnPointResearchDirector entities: - - uid: 12770 + - uid: 10594 components: - type: Transform - pos: 61.5,9.5 + pos: 62.5,9.5 parent: 2 - proto: SpawnPointSalvageSpecialist entities: - - uid: 14764 + - uid: 6912 components: - type: Transform - pos: 7.5,31.5 + pos: 8.5,31.5 parent: 2 - - uid: 14765 + - uid: 7809 components: - type: Transform - pos: 8.5,32.5 + pos: 8.5,30.5 parent: 2 - proto: SpawnPointScientist entities: - - uid: 10654 - components: - - type: Transform - pos: 57.5,24.5 - parent: 2 - - uid: 10655 - components: - - type: Transform - pos: 56.5,24.5 - parent: 2 - - uid: 10656 + - uid: 5676 components: - type: Transform pos: 55.5,24.5 parent: 2 + - uid: 11670 + components: + - type: Transform + pos: 57.5,24.5 + parent: 2 + - uid: 15576 + components: + - type: Transform + pos: 56.5,24.5 + parent: 2 + - uid: 15583 + components: + - type: Transform + pos: 54.5,24.5 + parent: 2 - proto: SpawnPointSecurityCadet entities: - - uid: 8437 + - uid: 15797 components: - type: Transform - pos: 34.5,27.5 + pos: 38.5,25.5 parent: 2 - - uid: 8696 + - uid: 15798 components: - type: Transform - pos: 34.5,26.5 + pos: 37.5,26.5 parent: 2 - proto: SpawnPointSecurityOfficer entities: - - uid: 8159 + - uid: 6291 components: - type: Transform - pos: 31.5,29.5 + pos: 37.5,33.5 parent: 2 - - uid: 13584 + - uid: 9147 components: - type: Transform - pos: 30.5,29.5 + pos: 35.5,33.5 parent: 2 - - uid: 13585 + - uid: 9148 components: - type: Transform - pos: 29.5,29.5 + pos: 36.5,33.5 parent: 2 - proto: SpawnPointServiceWorker entities: @@ -80429,23 +84356,17 @@ entities: parent: 2 - proto: SpawnPointWarden entities: - - uid: 8375 + - uid: 8467 components: - type: Transform - pos: 38.5,18.5 + pos: 43.5,25.5 parent: 2 - proto: SprayBottle entities: - - uid: 5393 + - uid: 11736 components: - type: Transform - rot: 3.589668631320819E-05 rad - pos: 55.735016,10.470499 - parent: 2 - - uid: 7793 - components: - - type: Transform - pos: 55.34302,10.727416 + pos: 70.321815,33.64177 parent: 2 - proto: SprayBottleSpaceCleaner entities: @@ -80454,6 +84375,11 @@ entities: - type: Transform pos: 82.67393,-4.422255 parent: 2 + - uid: 12047 + components: + - type: Transform + pos: 52.414017,8.823876 + parent: 2 - proto: SprayBottleWater entities: - uid: 6812 @@ -80495,7 +84421,7 @@ entities: - uid: 14285 components: - type: Transform - pos: 84.42593,28.382923 + pos: 84.52714,28.474094 parent: 2 - proto: StationMap entities: @@ -80517,16 +84443,16 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,-8.5 parent: 2 - - uid: 2291 - components: - - type: Transform - pos: 36.5,32.5 - parent: 2 - uid: 8116 components: - type: Transform pos: 9.5,2.5 parent: 2 + - uid: 8230 + components: + - type: Transform + pos: 61.5,16.5 + parent: 2 - uid: 11292 components: - type: Transform @@ -80538,18 +84464,11 @@ entities: rot: 3.141592653589793 rad pos: 34.5,12.5 parent: 2 - - uid: 15380 + - uid: 15681 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,35.5 - parent: 2 -- proto: Stimpack - entities: - - uid: 12493 - components: - - type: Transform - pos: 11.490012,-11.457567 + rot: 1.5707963267948966 rad + pos: 24.5,34.5 parent: 2 - proto: Stool entities: @@ -80570,34 +84489,11 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,-7.5 parent: 2 - - uid: 3406 - components: - - type: Transform - pos: 71.5,46.5 - parent: 2 - - uid: 4304 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-41.5 - parent: 2 - - uid: 4406 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,28.5 - parent: 2 - uid: 5067 components: - type: Transform pos: 51.5,-6.5 parent: 2 - - uid: 5512 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,40.5 - parent: 2 - uid: 5879 components: - type: Transform @@ -80621,20 +84517,11 @@ entities: - type: Transform pos: 27.5,7.5 parent: 2 - - uid: 13626 + - uid: 11903 components: - type: Transform - pos: 55.5,32.5 - parent: 2 - - uid: 13627 - components: - - type: Transform - pos: 56.5,32.5 - parent: 2 - - uid: 13752 - components: - - type: Transform - pos: 54.5,37.5 + rot: 3.141592653589793 rad + pos: 20.492794,-41.282494 parent: 2 - proto: StoolBar entities: @@ -80683,6 +84570,21 @@ entities: - type: Transform pos: 60.5,-16.5 parent: 2 + - uid: 5508 + components: + - type: Transform + pos: 53.5,43.5 + parent: 2 + - uid: 6348 + components: + - type: Transform + pos: 54.5,43.5 + parent: 2 + - uid: 7754 + components: + - type: Transform + pos: 55.5,43.5 + parent: 2 - uid: 12695 components: - type: Transform @@ -80716,11 +84618,19 @@ entities: - type: Transform pos: 36.5,-26.5 parent: 2 - - uid: 10440 + - uid: 10335 components: - type: Transform - pos: 58.5,9.5 + pos: 56.5,8.5 parent: 2 + - uid: 10763 + components: + - type: Transform + anchored: True + pos: 63.5,22.5 + parent: 2 + - type: Physics + bodyType: Static - proto: SubstationBasic entities: - uid: 54 @@ -80739,6 +84649,11 @@ entities: parent: 2 - type: PowerNetworkBattery supplyRampPosition: 2.3437593 + - uid: 679 + components: + - type: Transform + pos: 15.5,-13.5 + parent: 2 - uid: 2039 components: - type: MetaData @@ -80769,6 +84684,13 @@ entities: parent: 2 - type: PowerNetworkBattery supplyRampPosition: 2.3437593 + - uid: 4173 + components: + - type: MetaData + name: substation (Sci) + - type: Transform + pos: 62.5,20.5 + parent: 2 - uid: 4431 components: - type: MetaData @@ -80801,15 +84723,6 @@ entities: - type: Transform pos: 69.5,-13.5 parent: 2 - - uid: 6379 - components: - - type: MetaData - name: Science Substation - - type: Transform - pos: 50.5,27.5 - parent: 2 - - type: PowerNetworkBattery - supplyRampPosition: 2.3437593 - uid: 7576 components: - type: MetaData @@ -80833,17 +84746,12 @@ entities: loadingNetworkDemand: 60.000237 currentReceiving: 60.000237 currentSupply: 60.000237 - - uid: 9041 + - uid: 10341 components: - type: MetaData - name: Security Substation + name: substation (Sec) - type: Transform - pos: 37.5,34.5 - parent: 2 - - uid: 9885 - components: - - type: Transform - pos: 15.5,-14.5 + pos: 62.5,36.5 parent: 2 - uid: 13688 components: @@ -80892,6 +84800,11 @@ entities: parent: 2 - proto: SuitStorageEVA entities: + - uid: 7947 + components: + - type: Transform + pos: 82.5,27.5 + parent: 2 - uid: 10300 components: - type: Transform @@ -80926,48 +84839,121 @@ entities: parent: 2 - proto: SuitStorageEVAPrisoner entities: - - uid: 3460 + - uid: 5106 components: - type: Transform - pos: 48.5,33.5 + pos: 34.5,24.5 parent: 2 - - uid: 3493 + - uid: 5146 components: - type: Transform - pos: 49.5,33.5 + pos: 34.5,23.5 + parent: 2 +- proto: SuitStorageHOS + entities: + - uid: 14456 + components: + - type: Transform + pos: 46.5,38.5 parent: 2 - proto: SuitStorageNTSRA entities: - - uid: 12168 + - uid: 128 components: - type: Transform pos: 49.5,-15.5 parent: 2 - proto: SuitStorageRD entities: - - uid: 10661 + - uid: 3143 components: - type: Transform - pos: 60.5,8.5 + pos: 60.5,10.5 parent: 2 - proto: SuitStorageSec entities: - - uid: 11209 + - uid: 3183 components: + - type: MetaData + name: suit storage unit (2) - type: Transform - pos: 38.5,24.5 + pos: 39.5,33.5 parent: 2 - - uid: 11735 + - 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: + - 12242 + - 12294 + - 12199 + - type: Label + currentLabel: 2 + - type: NameModifier + baseName: suit storage unit + - uid: 12746 components: + - type: MetaData + name: suit storage unit (2) - type: Transform - pos: 41.5,24.5 + pos: 41.5,33.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: + - 12760 + - 12761 + - 12765 + - type: Label + currentLabel: 2 + - type: NameModifier + baseName: suit storage unit - proto: SuitStorageWarden entities: - - uid: 7780 + - uid: 4400 components: - type: Transform - pos: 39.5,19.5 + pos: 40.5,24.5 parent: 2 - proto: SurveillanceCameraCommand entities: @@ -81075,14 +85061,6 @@ entities: - SurveillanceCameraCommand nameSet: True id: Secure Storage Boards - - uid: 13761 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,36.5 - parent: 2 - - type: SurveillanceCamera - id: Camera Routers - uid: 14168 components: - type: Transform @@ -81169,14 +85147,6 @@ entities: parent: 2 - type: SurveillanceCamera id: Captain's Office - - uid: 14676 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,42.5 - parent: 2 - - type: SurveillanceCamera - id: Captain's Bedroom - uid: 14677 components: - type: Transform @@ -81194,17 +85164,6 @@ entities: parent: 2 - type: SurveillanceCamera id: Singulo South - - uid: 5877 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,46.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Solars Northwest ' - uid: 7462 components: - type: Transform @@ -81224,6 +85183,11 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Anchor Room + - uid: 8685 + components: + - type: Transform + pos: 26.5,-36.5 + parent: 2 - uid: 10986 components: - type: Transform @@ -81232,14 +85196,6 @@ entities: parent: 2 - type: SurveillanceCamera id: Singulo West - - uid: 10989 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-16.5 - parent: 2 - - type: SurveillanceCamera - id: Telecomms - uid: 10995 components: - type: Transform @@ -81460,28 +85416,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Atmos Tanks South - - uid: 13738 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-14.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Telecomms Airlock - - uid: 13748 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,46.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Solars Northwest Door - uid: 14678 components: - type: Transform @@ -81490,8 +85424,30 @@ entities: parent: 2 - type: SurveillanceCamera id: Singulo Power + - uid: 14793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-32.5 + parent: 2 + - uid: 14831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-16.5 + parent: 2 - proto: SurveillanceCameraGeneral entities: + - uid: 8684 + components: + - type: Transform + pos: 37.5,13.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: North Hall 1 - uid: 12665 components: - type: Transform @@ -81611,28 +85567,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Central Hall - - uid: 12738 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,15.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Central Hall North - - uid: 12739 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,8.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Central Hall East - uid: 12740 components: - type: Transform @@ -81687,28 +85621,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Main Hall Bar - - uid: 13744 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,15.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Main Hall Security South - - uid: 13745 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,22.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Main Hall Security/Cargo - uid: 13747 components: - type: Transform @@ -81758,6 +85670,17 @@ entities: parent: 2 - type: SurveillanceCamera id: Arrivals Starboard + - uid: 14650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,18.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: North Hall 1 - proto: SurveillanceCameraMedical entities: - uid: 1712 @@ -81923,62 +85846,97 @@ entities: id: Virology Quarantine 1 - proto: SurveillanceCameraRouterCommand entities: - - uid: 2300 + - uid: 10014 components: - type: Transform - pos: 32.5,35.5 + pos: 17.5,-15.5 parent: 2 - proto: SurveillanceCameraRouterEngineering entities: - - uid: 8404 + - uid: 10026 components: - type: Transform - pos: 30.5,35.5 + pos: 15.5,-15.5 parent: 2 - proto: SurveillanceCameraRouterGeneral entities: - - uid: 8230 + - uid: 12378 components: - type: Transform - pos: 49.5,23.5 + pos: 13.5,-19.5 parent: 2 - proto: SurveillanceCameraRouterMedical entities: - - uid: 10316 + - uid: 15494 components: - type: Transform - pos: 32.5,37.5 - parent: 2 -- proto: SurveillanceCameraRouterScience - entities: - - uid: 10317 - components: - - type: Transform - pos: 31.5,37.5 + pos: 14.5,-17.5 parent: 2 - proto: SurveillanceCameraRouterSecurity entities: - - uid: 3160 + - uid: 4644 components: - type: Transform - pos: 31.5,35.5 + pos: 15.5,-19.5 + parent: 2 + - uid: 6899 + components: + - type: Transform + pos: 17.5,-19.5 parent: 2 - proto: SurveillanceCameraRouterService entities: - - uid: 8139 + - uid: 15493 components: - type: Transform - pos: 51.5,23.5 + pos: 17.5,-17.5 parent: 2 - proto: SurveillanceCameraRouterSupply entities: - - uid: 10315 + - uid: 9748 components: - type: Transform - pos: 30.5,37.5 + pos: 13.5,-15.5 parent: 2 - proto: SurveillanceCameraScience entities: + - uid: 3495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,15.5 + parent: 2 + - uid: 8462 + components: + - type: Transform + pos: 54.5,17.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Science - Research & Development + - uid: 8654 + components: + - type: Transform + pos: 70.5,13.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Science - Anomaly + - uid: 12548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,15.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Science - South Hall - uid: 12763 components: - type: Transform @@ -81990,61 +85948,6 @@ entities: - SurveillanceCameraScience nameSet: True id: Science Front - - uid: 12764 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,20.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: RND - - uid: 12765 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,24.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Science Server Room - - uid: 12768 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,14.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Anomaly Lab - - uid: 12769 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,10.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: RD Office - - uid: 12773 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,15.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Science Entrance - uid: 12774 components: - type: Transform @@ -82055,7 +85958,7 @@ entities: setupAvailableNetworks: - SurveillanceCameraScience nameSet: True - id: Robotics + id: Science - Robotics - uid: 13740 components: - type: Transform @@ -82066,7 +85969,7 @@ entities: setupAvailableNetworks: - SurveillanceCameraScience nameSet: True - id: Artifact Chamber + id: Science - Xenoarcheology - uid: 13746 components: - type: Transform @@ -82078,23 +85981,96 @@ entities: - SurveillanceCameraScience nameSet: True id: Science Entrance + - uid: 14562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,11.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Science - RD Office + - uid: 15568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,21.5 + parent: 2 + - uid: 15618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,25.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Science - Lockers - proto: SurveillanceCameraSecurity entities: - - uid: 3204 + - uid: 1647 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,35.5 parent: 2 - type: SurveillanceCamera - id: Interrogation - - uid: 7722 + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security - Armory Blue + - uid: 2291 components: - type: Transform - pos: 31.5,28.5 + rot: -1.5707963267948966 rad + pos: 46.5,39.5 parent: 2 - type: SurveillanceCamera - id: Security Locker Room + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security - Office HOS + - uid: 3078 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,31.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security - Front + - uid: 3488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,37.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security - Detective Office + - uid: 10892 + components: + - type: Transform + pos: 36.5,19.5 + parent: 2 + - uid: 12109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,31.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security - West Hall - uid: 12732 components: - type: Transform @@ -82117,94 +86093,6 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Evac Checkpoint - - uid: 12744 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,27.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Armory - - uid: 12745 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,23.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Warden's Room - - uid: 12746 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,24.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: HoS Room - - uid: 12747 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,19.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Detective Office - - uid: 12748 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,19.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security Locker Room - - uid: 12749 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,18.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Cell 2 - - uid: 12750 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,21.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Cell 1 - - uid: 12751 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,24.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security Entrance - uid: 12752 components: - type: Transform @@ -82216,29 +86104,50 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Court House - - uid: 13757 + - uid: 14594 + components: + - type: Transform + pos: 51.5,30.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security - East Hall + - uid: 15277 components: - type: Transform rot: -1.5707963267948966 rad - pos: 53.5,36.5 + pos: 42.5,18.5 parent: 2 - - type: SurveillanceCamera - id: Perma Brig - - uid: 13758 + - uid: 15370 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,35.5 + rot: -1.5707963267948966 rad + pos: 34.5,33.5 parent: 2 - - type: SurveillanceCamera - id: Perma Entrance - - uid: 13759 + - uid: 15614 components: - type: Transform - pos: 38.5,30.5 + rot: 1.5707963267948966 rad + pos: 40.5,27.5 parent: 2 - type: SurveillanceCamera - id: Security Hallway + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security - Warden + - uid: 15813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,36.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security - Armory Red - proto: SurveillanceCameraService entities: - uid: 12711 @@ -82320,6 +86229,27 @@ entities: id: Janitor's Office - proto: SurveillanceCameraSupply entities: + - uid: 2055 + components: + - type: Transform + pos: 4.5,37.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Salvage Bay + - uid: 8103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,27.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo Dock - uid: 9297 components: - type: Transform @@ -82327,14 +86257,10 @@ entities: pos: 6.5,30.5 parent: 2 - type: SurveillanceCamera - id: Salvage - - uid: 10979 - components: - - type: Transform - pos: 3.5,37.5 - parent: 2 - - type: SurveillanceCamera - id: Salvage Platform + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Salvage Lockers - uid: 12724 components: - type: Transform @@ -82387,13 +86313,6 @@ entities: parent: 2 - type: SurveillanceCamera id: Cargo Storage - - uid: 14954 - components: - - type: Transform - pos: 4.5,26.5 - parent: 2 - - type: SurveillanceCamera - id: Cargo Dock - proto: SynthesizerInstrument entities: - uid: 9740 @@ -82408,6 +86327,16 @@ entities: parent: 2 - proto: Syringe entities: + - uid: 3503 + components: + - type: Transform + pos: 63.957825,25.617743 + parent: 2 + - uid: 10610 + components: + - type: Transform + pos: 63.025978,38.577137 + parent: 2 - uid: 10709 components: - type: Transform @@ -82445,10 +86374,10 @@ entities: - type: Transform pos: 33.5,-4.5 parent: 2 - - uid: 679 + - uid: 622 components: - type: Transform - pos: 21.5,-19.5 + pos: 69.5,37.5 parent: 2 - uid: 778 components: @@ -82595,10 +86524,16 @@ entities: - type: Transform pos: 15.5,35.5 parent: 2 - - uid: 2486 + - uid: 2444 components: - type: Transform - pos: 36.5,25.5 + rot: -1.5707963267948966 rad + pos: 61.5,50.5 + parent: 2 + - uid: 2684 + components: + - type: Transform + pos: 55.5,41.5 parent: 2 - uid: 2906 components: @@ -82615,15 +86550,42 @@ entities: - type: Transform pos: 51.5,-7.5 parent: 2 + - uid: 3042 + components: + - type: Transform + pos: 44.5,9.5 + parent: 2 + - uid: 3093 + components: + - type: Transform + pos: 71.5,30.5 + parent: 2 + - uid: 3141 + components: + - type: Transform + pos: 61.5,41.5 + parent: 2 - uid: 3200 components: - type: Transform pos: 79.5,-7.5 parent: 2 - - uid: 3240 + - uid: 3204 components: - type: Transform - pos: 36.5,26.5 + rot: 3.141592653589793 rad + pos: 52.5,45.5 + parent: 2 + - uid: 3282 + components: + - type: Transform + pos: 52.5,33.5 + parent: 2 + - uid: 3428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,40.5 parent: 2 - uid: 3430 components: @@ -82635,6 +86597,11 @@ entities: - type: Transform pos: 78.5,-7.5 parent: 2 + - uid: 3499 + components: + - type: Transform + pos: 37.5,32.5 + parent: 2 - uid: 3569 components: - type: Transform @@ -82670,11 +86637,6 @@ entities: - type: Transform pos: 38.5,-9.5 parent: 2 - - uid: 4280 - components: - - type: Transform - pos: 57.5,20.5 - parent: 2 - uid: 4302 components: - type: Transform @@ -82730,6 +86692,12 @@ entities: - type: Transform pos: 74.5,-0.5 parent: 2 + - uid: 5200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-10.5 + parent: 2 - uid: 5203 components: - type: Transform @@ -82770,61 +86738,16 @@ entities: - type: Transform pos: 54.5,17.5 parent: 2 - - uid: 5310 + - uid: 5339 components: - type: Transform - pos: 55.5,20.5 - parent: 2 - - uid: 5311 - components: - - type: Transform - pos: 56.5,20.5 - parent: 2 - - uid: 5317 - components: - - type: Transform - pos: 49.5,19.5 - parent: 2 - - uid: 5318 - components: - - type: Transform - pos: 49.5,17.5 - parent: 2 - - uid: 5368 - components: - - type: Transform - pos: 55.5,10.5 - parent: 2 - - uid: 5369 - components: - - type: Transform - pos: 50.5,8.5 - parent: 2 - - uid: 5370 - components: - - type: Transform - pos: 52.5,8.5 + pos: 57.5,44.5 parent: 2 - uid: 5449 components: - type: Transform pos: 71.5,40.5 parent: 2 - - uid: 5450 - components: - - type: Transform - pos: 71.5,37.5 - parent: 2 - - uid: 5473 - components: - - type: Transform - pos: 67.5,37.5 - parent: 2 - - uid: 5475 - components: - - type: Transform - pos: 67.5,38.5 - parent: 2 - uid: 5521 components: - type: Transform @@ -82835,6 +86758,17 @@ entities: - type: Transform pos: 77.5,-13.5 parent: 2 + - uid: 6286 + components: + - type: Transform + pos: 48.5,44.5 + parent: 2 + - uid: 6336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,50.5 + parent: 2 - uid: 6756 components: - type: Transform @@ -82875,20 +86809,31 @@ entities: - type: Transform pos: 53.5,-5.5 parent: 2 + - uid: 7965 + components: + - type: Transform + pos: 6.5,40.5 + parent: 2 - uid: 7978 components: - type: Transform pos: -1.5,-3.5 parent: 2 - - uid: 8383 + - uid: 8410 components: - type: Transform - pos: 54.5,36.5 + rot: 3.141592653589793 rad + pos: 63.5,25.5 parent: 2 - - uid: 8538 + - uid: 8503 components: - type: Transform - pos: 34.5,17.5 + pos: 62.5,38.5 + parent: 2 + - uid: 8578 + components: + - type: Transform + pos: 51.5,30.5 parent: 2 - uid: 8858 components: @@ -82900,6 +86845,27 @@ entities: - type: Transform pos: 107.5,-11.5 parent: 2 + - uid: 9257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,38.5 + parent: 2 + - uid: 9333 + components: + - type: Transform + pos: 57.5,32.5 + parent: 2 + - uid: 9337 + components: + - type: Transform + pos: 63.5,38.5 + parent: 2 + - uid: 9344 + components: + - type: Transform + pos: 36.5,32.5 + parent: 2 - uid: 9354 components: - type: Transform @@ -82910,6 +86876,11 @@ entities: - type: Transform pos: 27.5,6.5 parent: 2 + - uid: 9431 + components: + - type: Transform + pos: 52.5,40.5 + parent: 2 - uid: 9621 components: - type: Transform @@ -82920,10 +86891,10 @@ entities: - type: Transform pos: 78.5,4.5 parent: 2 - - uid: 9956 + - uid: 10050 components: - type: Transform - pos: 5.5,40.5 + pos: 59.5,20.5 parent: 2 - uid: 10072 components: @@ -82935,11 +86906,6 @@ entities: - type: Transform pos: 78.5,-6.5 parent: 2 - - uid: 10137 - components: - - type: Transform - pos: 36.5,27.5 - parent: 2 - uid: 10268 components: - type: Transform @@ -82955,25 +86921,33 @@ entities: - type: Transform pos: 16.5,-5.5 parent: 2 - - uid: 10664 + - uid: 10404 components: - type: Transform - pos: 63.5,9.5 + rot: 3.141592653589793 rad + pos: 65.5,11.5 parent: 2 - - uid: 10665 + - uid: 10431 components: - type: Transform - pos: 63.5,10.5 + rot: 1.5707963267948966 rad + pos: 42.5,29.5 parent: 2 - - uid: 10668 + - uid: 10574 components: - type: Transform - pos: 63.5,8.5 + rot: 3.141592653589793 rad + pos: 65.5,10.5 parent: 2 - - uid: 10763 + - uid: 10614 components: - type: Transform - pos: 4.5,40.5 + pos: 71.5,33.5 + parent: 2 + - uid: 10655 + components: + - type: Transform + pos: 70.5,33.5 parent: 2 - uid: 10803 components: @@ -82985,6 +86959,17 @@ entities: - type: Transform pos: 70.5,11.5 parent: 2 + - uid: 10861 + components: + - type: Transform + pos: 49.5,19.5 + parent: 2 + - uid: 10886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,25.5 + parent: 2 - uid: 11119 components: - type: Transform @@ -83010,11 +86995,6 @@ entities: - type: Transform pos: 57.5,-14.5 parent: 2 - - uid: 11191 - components: - - type: Transform - pos: 46.5,11.5 - parent: 2 - uid: 11302 components: - type: Transform @@ -83055,15 +87035,11 @@ entities: - type: Transform pos: 51.5,4.5 parent: 2 - - uid: 11522 + - uid: 11472 components: - type: Transform - pos: 46.5,9.5 - parent: 2 - - uid: 11736 - components: - - type: Transform - pos: 36.5,28.5 + rot: 3.141592653589793 rad + pos: 60.5,20.5 parent: 2 - uid: 11830 components: @@ -83110,82 +87086,125 @@ entities: - type: Transform pos: 78.5,7.5 parent: 2 - - uid: 12582 + - uid: 12442 components: - type: Transform - pos: 20.5,-19.5 + pos: 60.5,19.5 + parent: 2 + - uid: 12743 + components: + - type: Transform + pos: 48.5,11.5 + parent: 2 + - uid: 12745 + components: + - type: Transform + pos: 45.5,9.5 parent: 2 - uid: 13105 components: - type: Transform pos: 15.5,24.5 parent: 2 + - uid: 13469 + components: + - type: Transform + pos: 70.5,30.5 + parent: 2 + - uid: 13516 + components: + - type: Transform + pos: 39.5,47.5 + parent: 2 - uid: 13564 components: - type: Transform pos: 50.5,4.5 parent: 2 - - uid: 13609 - components: - - type: Transform - pos: 54.5,41.5 - parent: 2 - - uid: 13610 - components: - - type: Transform - pos: 55.5,41.5 - parent: 2 - - uid: 13611 - components: - - type: Transform - pos: 56.5,41.5 - parent: 2 - - uid: 13624 - components: - - type: Transform - pos: 56.5,31.5 - parent: 2 - - uid: 13625 - components: - - type: Transform - pos: 55.5,31.5 - parent: 2 - uid: 14068 components: - type: Transform pos: -17.5,0.5 parent: 2 + - uid: 14235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,40.5 + parent: 2 + - uid: 14830 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,28.5 + parent: 2 - uid: 15302 components: - type: Transform pos: 38.5,-29.5 parent: 2 - - uid: 15372 + - uid: 15657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,47.5 + parent: 2 +- proto: TableCounterMetal + entities: + - uid: 2373 + components: + - type: Transform + pos: 55.5,42.5 + parent: 2 + - uid: 2407 + components: + - type: Transform + pos: 35.5,18.5 + parent: 2 + - uid: 2563 + components: + - type: Transform + pos: 37.5,22.5 + parent: 2 + - uid: 3253 + components: + - type: Transform + pos: 54.5,42.5 + parent: 2 + - uid: 4131 + components: + - type: Transform + pos: 38.5,22.5 + parent: 2 + - uid: 6243 + components: + - type: Transform + pos: 36.5,22.5 + parent: 2 + - uid: 6281 components: - type: Transform pos: 33.5,17.5 parent: 2 -- proto: TableCarpet - entities: - - uid: 2266 + - uid: 6333 components: - type: Transform - pos: 70.5,28.5 + pos: 34.5,17.5 parent: 2 - - uid: 3429 + - uid: 8359 components: - type: Transform - pos: 70.5,29.5 + pos: 53.5,42.5 parent: 2 - - uid: 5501 + - uid: 8425 components: - type: Transform - pos: 70.5,33.5 + pos: 36.5,21.5 parent: 2 - - uid: 6007 + - uid: 9239 components: - type: Transform - pos: 70.5,27.5 + pos: 35.5,17.5 parent: 2 - proto: TableCounterWood entities: @@ -83209,6 +87228,58 @@ entities: - type: Transform pos: 19.5,-9.5 parent: 2 +- proto: TableFancyBlue + entities: + - uid: 15461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,32.5 + parent: 2 + - uid: 15462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,33.5 + parent: 2 +- proto: TableFancyRed + entities: + - uid: 2295 + components: + - type: Transform + pos: 44.5,43.5 + parent: 2 + - uid: 8495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,41.5 + parent: 2 + - uid: 8779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,41.5 + parent: 2 + - uid: 12764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,29.5 + parent: 2 + - uid: 15460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,30.5 + parent: 2 +- proto: TableFrame + entities: + - uid: 15700 + components: + - type: Transform + pos: 54.5,47.5 + parent: 2 - proto: TableGlass entities: - uid: 12696 @@ -83350,21 +87421,6 @@ entities: - type: Transform pos: 17.5,40.5 parent: 2 - - uid: 2420 - components: - - type: Transform - pos: 28.5,25.5 - parent: 2 - - uid: 2431 - components: - - type: Transform - pos: 32.5,27.5 - parent: 2 - - uid: 2432 - components: - - type: Transform - pos: 32.5,26.5 - parent: 2 - uid: 2991 components: - type: Transform @@ -83375,11 +87431,23 @@ entities: - type: Transform pos: 51.5,1.5 parent: 2 + - uid: 3063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,30.5 + parent: 2 - uid: 3512 components: - type: Transform pos: 48.5,18.5 parent: 2 + - uid: 3528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,17.5 + parent: 2 - uid: 4146 components: - type: Transform @@ -83465,16 +87533,39 @@ entities: - type: Transform pos: 54.5,-4.5 parent: 2 + - uid: 5400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,32.5 + parent: 2 + - uid: 5401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,32.5 + parent: 2 - uid: 5813 components: - type: Transform pos: 34.5,-8.5 parent: 2 + - uid: 6534 + components: + - type: Transform + pos: 7.5,29.5 + parent: 2 - uid: 7545 components: - type: Transform pos: 55.5,-10.5 parent: 2 + - uid: 7566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,31.5 + parent: 2 - uid: 7611 components: - type: Transform @@ -83485,11 +87576,6 @@ entities: - type: Transform pos: 54.5,-10.5 parent: 2 - - uid: 7679 - components: - - type: Transform - pos: 38.5,19.5 - parent: 2 - uid: 7739 components: - type: Transform @@ -83500,25 +87586,17 @@ entities: - type: Transform pos: 47.5,12.5 parent: 2 - - uid: 8433 + - uid: 8563 components: - type: Transform - pos: 39.5,21.5 + rot: -1.5707963267948966 rad + pos: 36.5,27.5 parent: 2 - - uid: 8445 + - uid: 9133 components: - type: Transform - pos: 39.5,28.5 - parent: 2 - - uid: 8518 - components: - - type: Transform - pos: 40.5,28.5 - parent: 2 - - uid: 8675 - components: - - type: Transform - pos: 40.5,35.5 + rot: 1.5707963267948966 rad + pos: 36.5,24.5 parent: 2 - uid: 10310 components: @@ -83530,11 +87608,6 @@ entities: - type: Transform pos: 17.5,42.5 parent: 2 - - uid: 11475 - components: - - type: Transform - pos: 39.5,17.5 - parent: 2 - uid: 11800 components: - type: Transform @@ -83545,16 +87618,17 @@ entities: - type: Transform pos: 12.5,-34.5 parent: 2 + - uid: 11944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,31.5 + parent: 2 - uid: 12423 components: - type: Transform pos: 49.5,1.5 parent: 2 - - uid: 13103 - components: - - type: Transform - pos: 38.5,28.5 - parent: 2 - uid: 14245 components: - type: Transform @@ -83570,6 +87644,11 @@ entities: - type: Transform pos: 86.5,28.5 parent: 2 + - uid: 14525 + components: + - type: Transform + pos: 50.5,34.5 + parent: 2 - uid: 14554 components: - type: Transform @@ -83590,6 +87669,11 @@ entities: - type: Transform pos: 89.5,32.5 parent: 2 + - uid: 14656 + components: + - type: Transform + pos: 51.5,34.5 + parent: 2 - uid: 14661 components: - type: Transform @@ -83649,49 +87733,11 @@ entities: - type: Transform pos: 8.5,3.5 parent: 2 - - uid: 2405 - components: - - type: Transform - pos: 44.5,23.5 - parent: 2 - - uid: 2406 - components: - - type: Transform - pos: 45.5,23.5 - parent: 2 - - uid: 2407 - components: - - type: Transform - pos: 45.5,24.5 - parent: 2 - - uid: 2478 - components: - - type: Transform - pos: 43.5,19.5 - parent: 2 - - uid: 2713 + - uid: 2272 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,33.5 - parent: 2 - - uid: 2714 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,32.5 - parent: 2 - - uid: 2715 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,30.5 - parent: 2 - - uid: 2716 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,29.5 + pos: 30.5,41.5 parent: 2 - uid: 2719 components: @@ -83722,10 +87768,15 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,39.5 parent: 2 - - uid: 5407 + - uid: 3091 components: - type: Transform - pos: 34.5,41.5 + pos: 59.5,36.5 + parent: 2 + - uid: 5269 + components: + - type: Transform + pos: 32.5,41.5 parent: 2 - uid: 5408 components: @@ -83735,17 +87786,12 @@ entities: - uid: 5409 components: - type: Transform - pos: 32.5,41.5 + pos: 30.5,42.5 parent: 2 - - uid: 5410 + - uid: 6339 components: - type: Transform - pos: 30.5,41.5 - parent: 2 - - uid: 5413 - components: - - type: Transform - pos: 37.5,43.5 + pos: 44.5,24.5 parent: 2 - uid: 7262 components: @@ -83757,6 +87803,11 @@ entities: - type: Transform pos: 30.5,6.5 parent: 2 + - uid: 7753 + components: + - type: Transform + pos: 44.5,25.5 + parent: 2 - uid: 8646 components: - type: Transform @@ -83782,21 +87833,37 @@ entities: - type: Transform pos: 83.5,7.5 parent: 2 + - uid: 8707 + components: + - type: Transform + pos: 55.5,37.5 + parent: 2 + - uid: 8713 + components: + - type: Transform + pos: 54.5,37.5 + parent: 2 - uid: 9004 components: - type: Transform pos: 18.5,29.5 parent: 2 + - uid: 9310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,39.5 + parent: 2 + - uid: 10084 + components: + - type: Transform + pos: 35.5,43.5 + parent: 2 - uid: 10635 components: - type: Transform pos: 30.5,7.5 parent: 2 - - uid: 11477 - components: - - type: Transform - pos: 43.5,20.5 - parent: 2 - uid: 12727 components: - type: Transform @@ -83809,6 +87876,12 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-42.5 parent: 2 + - uid: 14847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,42.5 + parent: 2 - proto: TargetClown entities: - uid: 9607 @@ -83816,6 +87889,14 @@ entities: - type: Transform pos: 27.5,8.5 parent: 2 +- proto: TargetSyndicate + entities: + - uid: 2203 + components: + - type: Transform + pos: 50.5,38.5 + parent: 2 + - type: Conveyed - proto: TegCenter entities: - uid: 13127 @@ -83841,168 +87922,62 @@ entities: parent: 2 - type: PointLight color: '#FF3300FF' -- proto: TelecomServer +- proto: TelecomServerFilledCargo entities: - - uid: 533 + - uid: 15809 components: - type: Transform - pos: 16.5,-16.5 + pos: 12.5,-15.5 parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 535 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 5183 +- proto: TelecomServerFilledCommand + entities: + - uid: 10001 components: - type: Transform - pos: 13.5,-16.5 + pos: 16.5,-15.5 parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 412 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 10443 +- proto: TelecomServerFilledCommon + entities: + - uid: 15810 components: - type: Transform - pos: 14.5,-16.5 + pos: 12.5,-19.5 parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 413 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 12111 +- proto: TelecomServerFilledEngineering + entities: + - uid: 9760 components: - type: Transform - pos: 15.5,-16.5 + pos: 14.5,-15.5 parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 414 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 12112 +- proto: TelecomServerFilledMedical + entities: + - uid: 12362 components: - type: Transform - pos: 13.5,-18.5 + pos: 13.5,-17.5 parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 421 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 12232 +- proto: TelecomServerFilledScience + entities: + - uid: 4454 components: - type: Transform - pos: 14.5,-18.5 + pos: 14.5,-19.5 parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 422 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 12233 +- proto: TelecomServerFilledSecurity + entities: + - uid: 6898 components: - type: Transform - pos: 15.5,-18.5 + pos: 16.5,-19.5 parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 423 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 12395 +- proto: TelecomServerFilledService + entities: + - uid: 12383 components: - type: Transform - pos: 16.5,-18.5 + pos: 16.5,-17.5 parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 424 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - proto: TeslaCoil entities: - uid: 2038 @@ -84076,11 +88051,6 @@ entities: parent: 2 - proto: TintedWindow entities: - - uid: 171 - components: - - type: Transform - pos: 41.5,32.5 - parent: 2 - uid: 1165 components: - type: Transform @@ -84106,25 +88076,17 @@ entities: - type: Transform pos: 62.5,-8.5 parent: 2 - - uid: 10993 - components: - - type: Transform - pos: 17.5,-16.5 - parent: 2 - - uid: 10994 - components: - - type: Transform - pos: 17.5,-18.5 - parent: 2 - uid: 11195 components: - type: Transform pos: 60.5,-8.5 parent: 2 - - uid: 14525 +- proto: ToiletDirtyWater + entities: + - uid: 8395 components: - type: Transform - pos: 39.5,32.5 + pos: 43.5,22.5 parent: 2 - proto: ToiletEmpty entities: @@ -84139,12 +88101,6 @@ entities: rot: 3.141592653589793 rad pos: 8.5,12.5 parent: 2 - - uid: 3253 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,34.5 - parent: 2 - uid: 5701 components: - type: Transform @@ -84156,11 +88112,6 @@ entities: rot: 3.141592653589793 rad pos: 79.5,-13.5 parent: 2 - - uid: 8702 - components: - - type: Transform - pos: 59.5,38.5 - parent: 2 - uid: 9019 components: - type: Transform @@ -84182,11 +88133,6 @@ entities: parent: 2 - proto: ToolboxElectricalFilled entities: - - uid: 5378 - components: - - type: Transform - pos: 52.6158,11.657994 - parent: 2 - uid: 5626 components: - type: Transform @@ -84197,6 +88143,40 @@ entities: - type: Transform pos: 36.482082,-14.3137665 parent: 2 +- proto: ToolboxEmergency + entities: + - uid: 13141 + components: + - type: MetaData + desc: A bright red toolbox, stocked with everything a warden needs to maintain their brig. + name: warden's toolbox + - type: Transform + pos: 44.461845,24.599695 + parent: 2 + - type: Storage + storedItems: + 13169: + position: 3,0 + _rotation: North + 13431: + position: 0,0 + _rotation: South + 13499: + position: 1,0 + _rotation: South + 13502: + position: 2,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 13431 + - 13499 + - 13502 + - 13169 - proto: ToolboxEmergencyFilled entities: - uid: 4997 @@ -84219,26 +88199,21 @@ entities: parent: 2 - proto: ToolboxMechanicalFilled entities: - - uid: 2949 - components: - - type: Transform - pos: 6.500301,40.636074 - parent: 2 - uid: 4998 components: - type: Transform pos: 35.491802,46.459015 parent: 2 + - uid: 5244 + components: + - type: Transform + pos: 44.514893,9.766216 + parent: 2 - uid: 7357 components: - type: Transform pos: 18.414553,24.540695 parent: 2 - - uid: 11020 - components: - - type: Transform - pos: 46.489563,11.711195 - parent: 2 - uid: 11410 components: - type: Transform @@ -84249,6 +88224,32 @@ entities: - type: Transform pos: 36.482082,-14.5012665 parent: 2 +- proto: Tourniquet + entities: + - uid: 8619 + components: + - type: Transform + pos: 36.49021,32.681957 + parent: 2 + - uid: 12438 + components: + - type: Transform + pos: 36.693336,32.541332 + parent: 2 +- proto: TowelColorOrange + entities: + - uid: 13167 + components: + - type: Transform + pos: 39.307285,22.41729 + parent: 2 +- proto: TowercapSeeds + entities: + - uid: 2601 + components: + - type: Transform + pos: 59.45062,42.28196 + parent: 2 - proto: ToyAi entities: - uid: 14649 @@ -84263,11 +88264,6 @@ entities: - type: Transform pos: 12.5,12.5 parent: 2 - - uid: 13632 - components: - - type: Transform - pos: 56.426826,31.732376 - parent: 2 - proto: ToySpawner entities: - uid: 8652 @@ -84277,6 +88273,11 @@ entities: parent: 2 - proto: TrashBag entities: + - uid: 8394 + components: + - type: Transform + pos: 39.281395,22.796711 + parent: 2 - uid: 10811 components: - type: Transform @@ -84295,6 +88296,18 @@ entities: - type: Transform pos: 26.493341,6.2912045 parent: 2 +- proto: trayScanner + entities: + - uid: 10338 + components: + - type: Transform + pos: 49.60256,19.49661 + parent: 2 + - uid: 10893 + components: + - type: Transform + pos: 64.6922,25.570868 + parent: 2 - proto: TrumpetInstrument entities: - uid: 5030 @@ -84302,64 +88315,29 @@ entities: - type: Transform pos: 84.55714,10.563628 parent: 2 -- proto: TwoWayLever +- proto: TurnstileGenpopEnter entities: - - uid: 607 + - uid: 2312 components: - type: Transform - pos: 9.5,33.5 + pos: 33.5,22.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 829: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 967: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 944: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 450: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 999: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 14660: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 12384: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off +- proto: TurnstileGenpopLeave + entities: + - uid: 3179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,22.5 + parent: 2 + - uid: 3212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,24.5 + parent: 2 +- proto: TwoWayLever + entities: - uid: 5856 components: - type: Transform @@ -84465,90 +88443,48 @@ entities: - Open - - Middle - Close - - uid: 8101 + - uid: 12180 components: + - type: MetaData + name: two way lever (Recycler) - type: Transform - pos: 6.5,28.5 + rot: 3.141592653589793 rad + pos: 9.5,33.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 2037: + 13728: - - Left - - Forward - - - Right - Reverse - - - Middle - - Off - 2041: - - - Left - - Forward - - Right - - Reverse + - Forward - - Middle - Off 2042: - - Left - - Forward - - - Right - Reverse + - - Right + - Forward - - Middle - Off - 2064: + 13115: - - Left - Forward - - Right - Reverse - - Middle - Off - 13731: + 8327: - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - - uid: 8446 - components: - - type: Transform - pos: 6.5,22.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2040: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 2067: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 2051: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 2066: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 8239: - - - Left - - Forward - - - Right - Reverse + - - Right + - Forward - - Middle - Off + - type: Label + currentLabel: Recycler + - type: NameModifier + baseName: two way lever - proto: UniformPrinter entities: - uid: 10283 @@ -84653,6 +88589,16 @@ entities: - type: Transform pos: 24.5,42.5 parent: 2 + - uid: 3184 + components: + - type: Transform + pos: 17.5,35.5 + parent: 2 + - uid: 3324 + components: + - type: Transform + pos: 57.5,47.5 + parent: 2 - uid: 5349 components: - type: MetaData @@ -84660,13 +88606,6 @@ entities: - type: Transform pos: 63.5,16.5 parent: 2 - - uid: 5426 - components: - - type: MetaData - name: cigarette machine - - type: Transform - pos: 34.5,43.5 - parent: 2 - uid: 6615 components: - type: Transform @@ -84677,11 +88616,6 @@ entities: - type: Transform pos: -21.5,-14.5 parent: 2 - - uid: 11033 - components: - - type: Transform - pos: 19.5,35.5 - parent: 2 - proto: VendingMachineClothing entities: - uid: 127 @@ -84703,6 +88637,16 @@ entities: - type: Transform pos: 11.5,-3.5 parent: 2 + - uid: 2574 + components: + - type: Transform + pos: 56.5,47.5 + parent: 2 + - uid: 3203 + components: + - type: Transform + pos: 67.5,44.5 + parent: 2 - uid: 5350 components: - type: MetaData @@ -84710,13 +88654,6 @@ entities: - type: Transform pos: 62.5,16.5 parent: 2 - - uid: 5468 - components: - - type: MetaData - name: Hot drinks machine - - type: Transform - pos: 67.5,41.5 - parent: 2 - uid: 7774 components: - type: Transform @@ -84729,13 +88666,6 @@ entities: - type: Transform pos: 107.5,-12.5 parent: 2 - - uid: 11224 - components: - - type: MetaData - name: Hot drinks machine - - type: Transform - pos: 45.5,20.5 - parent: 2 - proto: VendingMachineCondiments entities: - uid: 6757 @@ -84752,10 +88682,10 @@ entities: parent: 2 - proto: VendingMachineDetDrobe entities: - - uid: 7711 + - uid: 2493 components: - type: Transform - pos: 41.5,17.5 + pos: 58.5,35.5 parent: 2 - proto: VendingMachineDinnerware entities: @@ -84764,6 +88694,18 @@ entities: - type: Transform pos: 33.5,-12.5 parent: 2 +- proto: VendingMachineDonut + entities: + - uid: 3356 + components: + - type: Transform + pos: 55.5,47.5 + parent: 2 + - uid: 13511 + components: + - type: Transform + pos: 54.5,30.5 + parent: 2 - proto: VendingMachineEngiDrobe entities: - uid: 4093 @@ -84785,11 +88727,6 @@ entities: - type: Transform pos: 8.5,5.5 parent: 2 - - uid: 13622 - components: - - type: Transform - pos: 54.5,31.5 - parent: 2 - proto: VendingMachineGeneDrobe entities: - uid: 11912 @@ -84841,14 +88778,14 @@ entities: parent: 2 - proto: VendingMachineRoboDrobe entities: - - uid: 5376 + - uid: 42 components: - type: Transform - pos: 53.5,11.5 + pos: 46.5,9.5 parent: 2 - proto: VendingMachineRobotics entities: - - uid: 10078 + - uid: 10053 components: - type: Transform pos: 50.5,11.5 @@ -84862,24 +88799,24 @@ entities: parent: 2 - proto: VendingMachineSciDrobe entities: - - uid: 11953 + - uid: 8409 components: - type: Transform - pos: 58.5,25.5 + pos: 53.5,25.5 parent: 2 - proto: VendingMachineSec entities: - - uid: 8442 + - uid: 11674 components: - type: Transform - pos: 31.5,28.5 + pos: 34.5,34.5 parent: 2 - proto: VendingMachineSecDrobe entities: - - uid: 6184 + - uid: 9146 components: - type: Transform - pos: 29.5,28.5 + pos: 34.5,32.5 parent: 2 - proto: VendingMachineSeeds entities: @@ -84888,26 +88825,24 @@ entities: - type: Transform pos: 43.5,-4.5 parent: 2 -- proto: VendingMachineSeedsUnlocked - entities: - - uid: 13605 + - uid: 7681 components: - type: Transform - pos: 55.5,36.5 + pos: 40.5,17.5 parent: 2 - proto: VendingMachineSovietSoda entities: - - uid: 5467 + - uid: 15675 components: - type: Transform - pos: 67.5,35.5 + pos: 49.5,50.5 parent: 2 - proto: VendingMachineSustenance entities: - - uid: 13623 + - uid: 13648 components: - type: Transform - pos: 57.5,31.5 + pos: 34.5,21.5 parent: 2 - proto: VendingMachineTankDispenserEngineering entities: @@ -84923,11 +88858,6 @@ entities: - type: Transform pos: 22.5,-34.5 parent: 2 - - uid: 3476 - components: - - type: Transform - pos: 50.5,33.5 - parent: 2 - uid: 10305 components: - type: Transform @@ -84992,18 +88922,10 @@ entities: parent: 2 - proto: WallmountTelescreen entities: - - uid: 10831 + - uid: 13575 components: - type: Transform - pos: 31.5,43.5 - parent: 2 -- proto: WallmountTelescreenFrame - entities: - - uid: 14562 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 93.5,30.5 + pos: 30.5,43.5 parent: 2 - proto: WallReinforced entities: @@ -85012,6 +88934,11 @@ entities: - type: Transform pos: 5.5,14.5 parent: 2 + - uid: 18 + components: + - type: Transform + pos: 42.5,23.5 + parent: 2 - uid: 20 components: - type: Transform @@ -85022,11 +88949,22 @@ entities: - type: Transform pos: -9.5,-21.5 parent: 2 + - uid: 63 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 2 - uid: 67 components: - type: Transform pos: 14.5,-13.5 parent: 2 + - uid: 82 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,40.5 + parent: 2 - uid: 83 components: - type: Transform @@ -85097,6 +89035,11 @@ entities: - type: Transform pos: 7.5,-10.5 parent: 2 + - uid: 184 + components: + - type: Transform + pos: 38.5,32.5 + parent: 2 - uid: 201 components: - type: Transform @@ -85177,11 +89120,6 @@ entities: - type: Transform pos: 8.5,-10.5 parent: 2 - - uid: 319 - components: - - type: Transform - pos: 60.5,32.5 - parent: 2 - uid: 324 components: - type: Transform @@ -85207,6 +89145,23 @@ entities: - type: Transform pos: -25.5,-3.5 parent: 2 + - uid: 349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,28.5 + parent: 2 + - uid: 404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,40.5 + parent: 2 + - uid: 422 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 2 - uid: 435 components: - type: Transform @@ -85222,6 +89177,11 @@ entities: - type: Transform pos: -27.5,1.5 parent: 2 + - uid: 466 + components: + - type: Transform + pos: 52.5,7.5 + parent: 2 - uid: 470 components: - type: Transform @@ -85387,11 +89347,6 @@ entities: - type: Transform pos: 17.5,-14.5 parent: 2 - - uid: 616 - components: - - type: Transform - pos: 17.5,-15.5 - parent: 2 - uid: 618 components: - type: Transform @@ -85417,11 +89372,6 @@ entities: - type: Transform pos: 11.5,-16.5 parent: 2 - - uid: 625 - components: - - type: Transform - pos: 11.5,-17.5 - parent: 2 - uid: 626 components: - type: Transform @@ -85432,50 +89382,15 @@ entities: - type: Transform pos: 11.5,-19.5 parent: 2 - - uid: 629 - components: - - type: Transform - pos: 12.5,-15.5 - parent: 2 - - uid: 630 - components: - - type: Transform - pos: 12.5,-16.5 - parent: 2 - - uid: 631 - components: - - type: Transform - pos: 12.5,-17.5 - parent: 2 - - uid: 632 - components: - - type: Transform - pos: 12.5,-18.5 - parent: 2 - - uid: 633 - components: - - type: Transform - pos: 12.5,-19.5 - parent: 2 - uid: 634 components: - type: Transform pos: 12.5,-20.5 parent: 2 - - uid: 635 - components: - - type: Transform - pos: 15.5,-15.5 - parent: 2 - - uid: 636 - components: - - type: Transform - pos: 14.5,-15.5 - parent: 2 - uid: 637 components: - type: Transform - pos: 13.5,-15.5 + pos: 15.5,-11.5 parent: 2 - uid: 638 components: @@ -85527,36 +89442,6 @@ entities: - type: Transform pos: 24.5,-20.5 parent: 2 - - uid: 648 - components: - - type: Transform - pos: 13.5,-19.5 - parent: 2 - - uid: 649 - components: - - type: Transform - pos: 14.5,-19.5 - parent: 2 - - uid: 650 - components: - - type: Transform - pos: 15.5,-19.5 - parent: 2 - - uid: 651 - components: - - type: Transform - pos: 16.5,-19.5 - parent: 2 - - uid: 652 - components: - - type: Transform - pos: 17.5,-19.5 - parent: 2 - - uid: 653 - components: - - type: Transform - pos: 18.5,-19.5 - parent: 2 - uid: 654 components: - type: Transform @@ -85587,11 +89472,6 @@ entities: - type: Transform pos: 24.5,-14.5 parent: 2 - - uid: 669 - components: - - type: Transform - pos: 53.5,42.5 - parent: 2 - uid: 687 components: - type: Transform @@ -85942,6 +89822,12 @@ entities: - type: Transform pos: 18.5,-40.5 parent: 2 + - uid: 984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,52.5 + parent: 2 - uid: 993 components: - type: Transform @@ -85982,26 +89868,39 @@ entities: - type: Transform pos: 14.5,-39.5 parent: 2 + - uid: 1109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,24.5 + parent: 2 + - uid: 1152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,52.5 + parent: 2 - uid: 1218 components: - type: Transform pos: 37.5,-29.5 parent: 2 - - uid: 1219 + - uid: 1223 components: - type: Transform - pos: 16.5,-15.5 - parent: 2 - - uid: 1230 - components: - - type: Transform - pos: 48.5,32.5 + pos: 37.5,41.5 parent: 2 - uid: 1250 components: - type: Transform pos: 30.5,-58.5 parent: 2 + - uid: 1256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,44.5 + parent: 2 - uid: 1264 components: - type: Transform @@ -86197,6 +90096,12 @@ entities: - type: Transform pos: 16.5,39.5 parent: 2 + - uid: 1521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-20.5 + parent: 2 - uid: 1576 components: - type: Transform @@ -86307,10 +90212,10 @@ entities: - type: Transform pos: 40.5,-17.5 parent: 2 - - uid: 1763 + - uid: 1762 components: - type: Transform - pos: 37.5,32.5 + pos: 63.5,8.5 parent: 2 - uid: 1828 components: @@ -86367,6 +90272,12 @@ entities: - type: Transform pos: -0.5,-20.5 parent: 2 + - uid: 2040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,37.5 + parent: 2 - uid: 2058 components: - type: Transform @@ -86392,16 +90303,17 @@ entities: - type: Transform pos: 47.5,-24.5 parent: 2 + - uid: 2090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,2.5 + parent: 2 - uid: 2102 components: - type: Transform pos: 24.5,28.5 parent: 2 - - uid: 2117 - components: - - type: Transform - pos: 43.5,25.5 - parent: 2 - uid: 2122 components: - type: Transform @@ -86427,31 +90339,27 @@ entities: - type: Transform pos: 49.5,-28.5 parent: 2 - - uid: 2190 + - uid: 2153 components: - type: Transform - pos: 28.5,16.5 + rot: 1.5707963267948966 rad + pos: 58.5,27.5 + parent: 2 + - uid: 2189 + components: + - type: Transform + pos: 52.5,38.5 parent: 2 - uid: 2191 components: - type: Transform pos: 29.5,16.5 parent: 2 - - uid: 2192 - components: - - type: Transform - pos: 30.5,16.5 - parent: 2 - uid: 2193 components: - type: Transform pos: 31.5,16.5 parent: 2 - - uid: 2194 - components: - - type: Transform - pos: 32.5,16.5 - parent: 2 - uid: 2196 components: - type: Transform @@ -86462,296 +90370,210 @@ entities: - type: Transform pos: 28.5,22.5 parent: 2 - - uid: 2198 - components: - - type: Transform - pos: 28.5,26.5 - parent: 2 - - uid: 2199 - components: - - type: Transform - pos: 28.5,27.5 - parent: 2 - - uid: 2200 - components: - - type: Transform - pos: 29.5,27.5 - parent: 2 - uid: 2201 components: - type: Transform - pos: 30.5,27.5 - parent: 2 - - uid: 2202 - components: - - type: Transform - pos: 31.5,27.5 - parent: 2 - - uid: 2203 - components: - - type: Transform - pos: 28.5,28.5 - parent: 2 - - uid: 2204 - components: - - type: Transform - pos: 36.5,29.5 + pos: 34.5,35.5 parent: 2 - uid: 2205 components: - type: Transform - pos: 28.5,30.5 + rot: 1.5707963267948966 rad + pos: 61.5,29.5 parent: 2 - - uid: 2206 + - uid: 2210 components: - type: Transform - pos: 28.5,31.5 - parent: 2 - - uid: 2207 - components: - - type: Transform - pos: 29.5,31.5 - parent: 2 - - uid: 2208 - components: - - type: Transform - pos: 30.5,31.5 - parent: 2 - - uid: 2209 - components: - - type: Transform - pos: 31.5,31.5 - parent: 2 - - uid: 2211 - components: - - type: Transform - pos: 51.5,29.5 + rot: 1.5707963267948966 rad + pos: 59.5,40.5 parent: 2 - uid: 2212 components: - type: Transform - pos: 60.5,35.5 + rot: -1.5707963267948966 rad + pos: 35.5,22.5 parent: 2 - uid: 2214 components: - type: Transform - pos: 60.5,37.5 - parent: 2 - - uid: 2215 - components: - - type: Transform - pos: 60.5,38.5 - parent: 2 - - uid: 2217 - components: - - type: Transform - pos: 60.5,34.5 + pos: 38.5,33.5 parent: 2 - uid: 2218 components: - type: Transform - pos: 49.5,29.5 + pos: 57.5,40.5 parent: 2 - - uid: 2219 + - uid: 2227 components: - type: Transform - pos: 43.5,32.5 - parent: 2 - - uid: 2220 - components: - - type: Transform - pos: 50.5,29.5 - parent: 2 - - uid: 2226 - components: - - type: Transform - pos: 63.5,44.5 + rot: 1.5707963267948966 rad + pos: 28.5,18.5 parent: 2 - uid: 2228 components: - type: Transform - pos: 31.5,32.5 + pos: 50.5,29.5 parent: 2 - uid: 2229 components: - type: Transform - pos: 40.5,38.5 + rot: 1.5707963267948966 rad + pos: 58.5,40.5 parent: 2 - - uid: 2230 + - uid: 2240 components: - type: Transform - pos: 34.5,32.5 + pos: 55.5,31.5 parent: 2 - - uid: 2232 + - uid: 2244 components: - type: Transform - pos: 42.5,37.5 + rot: 3.141592653589793 rad + pos: 28.5,26.5 parent: 2 - - uid: 2233 + - uid: 2245 components: - type: Transform - pos: 42.5,36.5 + pos: 52.5,39.5 parent: 2 - - uid: 2234 + - uid: 2257 components: - type: Transform - pos: 42.5,35.5 - parent: 2 - - uid: 2235 - components: - - type: Transform - pos: 42.5,34.5 - parent: 2 - - uid: 2260 - components: - - type: Transform - pos: 35.5,29.5 + rot: 3.141592653589793 rad + pos: 36.5,40.5 parent: 2 - uid: 2262 components: - type: Transform - pos: 37.5,29.5 + rot: 3.141592653589793 rad + pos: 35.5,40.5 + parent: 2 + - uid: 2263 + components: + - type: Transform + pos: 61.5,32.5 + parent: 2 + - uid: 2265 + components: + - type: Transform + pos: 55.5,39.5 + parent: 2 + - uid: 2266 + components: + - type: Transform + pos: 31.5,29.5 parent: 2 - uid: 2267 components: - type: Transform - pos: 42.5,29.5 + rot: 3.141592653589793 rad + pos: 32.5,22.5 parent: 2 - uid: 2268 components: - type: Transform - pos: 43.5,29.5 + rot: -1.5707963267948966 rad + pos: 51.5,39.5 parent: 2 - - uid: 2269 + - uid: 2281 components: - type: Transform - pos: 44.5,29.5 + pos: 48.5,29.5 parent: 2 - - uid: 2272 + - uid: 2288 components: - type: Transform - pos: 44.5,32.5 + pos: 41.5,16.5 parent: 2 - - uid: 2273 + - uid: 2292 components: - type: Transform - pos: 44.5,33.5 + rot: 3.141592653589793 rad + pos: 35.5,23.5 parent: 2 - - uid: 2277 + - uid: 2293 components: - type: Transform - pos: 44.5,38.5 + pos: 60.5,40.5 parent: 2 - - uid: 2278 + - uid: 2297 components: - type: Transform - pos: 44.5,37.5 + rot: 3.141592653589793 rad + pos: 32.5,26.5 parent: 2 - uid: 2306 components: - type: Transform pos: 12.5,-57.5 parent: 2 - - uid: 2313 + - uid: 2318 components: - type: Transform - pos: 40.5,18.5 + rot: 1.5707963267948966 rad + pos: 40.5,37.5 parent: 2 - - uid: 2327 + - uid: 2328 components: - type: Transform - pos: 37.5,25.5 + rot: -1.5707963267948966 rad + pos: 30.5,36.5 parent: 2 - - uid: 2331 - components: - - type: Transform - pos: 42.5,25.5 - parent: 2 - - uid: 2334 + - uid: 2329 components: - type: Transform + rot: -1.5707963267948966 rad pos: 43.5,26.5 parent: 2 - - uid: 2335 - components: - - type: Transform - pos: 44.5,26.5 - parent: 2 - - uid: 2336 - components: - - type: Transform - pos: 45.5,26.5 - parent: 2 - - uid: 2337 - components: - - type: Transform - pos: 46.5,26.5 - parent: 2 - - uid: 2338 - components: - - type: Transform - pos: 46.5,25.5 - parent: 2 - - uid: 2339 - components: - - type: Transform - pos: 46.5,24.5 - parent: 2 - - uid: 2340 - components: - - type: Transform - pos: 46.5,23.5 - parent: 2 - - uid: 2341 - components: - - type: Transform - pos: 46.5,22.5 - parent: 2 - - uid: 2342 - components: - - type: Transform - pos: 46.5,21.5 - parent: 2 - - uid: 2343 + - uid: 2330 components: - type: Transform + rot: 1.5707963267948966 rad pos: 45.5,21.5 parent: 2 - - uid: 2344 + - uid: 2357 components: - type: Transform - pos: 44.5,21.5 + pos: 60.5,37.5 parent: 2 - - uid: 2345 + - uid: 2362 components: - type: Transform - pos: 43.5,21.5 + rot: -1.5707963267948966 rad + pos: 49.5,39.5 parent: 2 - - uid: 2346 + - uid: 2367 components: - type: Transform - pos: 42.5,21.5 + rot: -1.5707963267948966 rad + pos: 49.5,34.5 parent: 2 - - uid: 2348 + - uid: 2372 components: - type: Transform - pos: 40.5,21.5 - parent: 2 - - uid: 2349 - components: - - type: Transform - pos: 40.5,20.5 - parent: 2 - - uid: 2350 - components: - - type: Transform - pos: 40.5,19.5 + rot: -1.5707963267948966 rad + pos: 47.5,43.5 parent: 2 - uid: 2400 components: - type: Transform pos: 51.5,-27.5 parent: 2 + - uid: 2406 + components: + - type: Transform + pos: 50.5,40.5 + parent: 2 + - uid: 2409 + components: + - type: Transform + pos: 42.5,16.5 + parent: 2 + - uid: 2432 + components: + - type: Transform + pos: 62.5,37.5 + parent: 2 - uid: 2439 components: - type: Transform @@ -86762,16 +90584,6 @@ entities: - type: Transform pos: 51.5,-23.5 parent: 2 - - uid: 2443 - components: - - type: Transform - pos: 40.5,17.5 - parent: 2 - - uid: 2444 - components: - - type: Transform - pos: 40.5,16.5 - parent: 2 - uid: 2445 components: - type: Transform @@ -86787,55 +90599,39 @@ entities: - type: Transform pos: 37.5,16.5 parent: 2 - - uid: 2448 + - uid: 2459 components: - type: Transform - pos: 36.5,16.5 + rot: -1.5707963267948966 rad + pos: 51.5,46.5 + parent: 2 + - uid: 2465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,32.5 + parent: 2 + - uid: 2477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,26.5 + parent: 2 + - uid: 2478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,26.5 parent: 2 - uid: 2485 components: - type: Transform pos: 3.5,14.5 parent: 2 - - uid: 2563 + - uid: 2562 components: - type: Transform - pos: 29.5,33.5 - parent: 2 - - uid: 2568 - components: - - type: Transform - pos: 33.5,34.5 - parent: 2 - - uid: 2569 - components: - - type: Transform - pos: 29.5,34.5 - parent: 2 - - uid: 2570 - components: - - type: Transform - pos: 29.5,35.5 - parent: 2 - - uid: 2571 - components: - - type: Transform - pos: 29.5,37.5 - parent: 2 - - uid: 2572 - components: - - type: Transform - pos: 33.5,35.5 - parent: 2 - - uid: 2573 - components: - - type: Transform - pos: 33.5,36.5 - parent: 2 - - uid: 2574 - components: - - type: Transform - pos: 33.5,37.5 + pos: 68.5,48.5 parent: 2 - uid: 2575 components: @@ -86895,7 +90691,8 @@ entities: - uid: 2586 components: - type: Transform - pos: 31.5,43.5 + rot: -1.5707963267948966 rad + pos: 40.5,39.5 parent: 2 - uid: 2587 components: @@ -86920,17 +90717,12 @@ entities: - uid: 2591 components: - type: Transform - pos: 35.5,43.5 - parent: 2 - - uid: 2592 - components: - - type: Transform - pos: 35.5,42.5 + pos: 45.5,39.5 parent: 2 - uid: 2593 components: - type: Transform - pos: 35.5,41.5 + pos: 50.5,41.5 parent: 2 - uid: 2594 components: @@ -86947,46 +90739,6 @@ entities: - type: Transform pos: 38.5,44.5 parent: 2 - - uid: 2597 - components: - - type: Transform - pos: 38.5,43.5 - parent: 2 - - uid: 2598 - components: - - type: Transform - pos: 38.5,42.5 - parent: 2 - - uid: 2599 - components: - - type: Transform - pos: 38.5,41.5 - parent: 2 - - uid: 2600 - components: - - type: Transform - pos: 38.5,40.5 - parent: 2 - - uid: 2601 - components: - - type: Transform - pos: 38.5,39.5 - parent: 2 - - uid: 2602 - components: - - type: Transform - pos: 37.5,39.5 - parent: 2 - - uid: 2603 - components: - - type: Transform - pos: 36.5,39.5 - parent: 2 - - uid: 2604 - components: - - type: Transform - pos: 35.5,39.5 - parent: 2 - uid: 2605 components: - type: Transform @@ -87172,11 +90924,6 @@ entities: - type: Transform pos: 14.5,34.5 parent: 2 - - uid: 2685 - components: - - type: Transform - pos: 35.5,16.5 - parent: 2 - uid: 2785 components: - type: Transform @@ -87432,21 +91179,6 @@ entities: - type: Transform pos: 49.5,7.5 parent: 2 - - uid: 3034 - components: - - type: Transform - pos: 50.5,7.5 - parent: 2 - - uid: 3035 - components: - - type: Transform - pos: 51.5,7.5 - parent: 2 - - uid: 3036 - components: - - type: Transform - pos: 52.5,7.5 - parent: 2 - uid: 3037 components: - type: Transform @@ -87487,100 +91219,74 @@ entities: - type: Transform pos: 48.5,20.5 parent: 2 - - uid: 3063 + - uid: 3069 components: - type: Transform - pos: 40.5,39.5 - parent: 2 - - uid: 3064 - components: - - type: Transform - pos: 40.5,40.5 - parent: 2 - - uid: 3065 - components: - - type: Transform - pos: 44.5,39.5 + pos: 58.5,33.5 parent: 2 - uid: 3071 components: - type: Transform pos: 55.5,-20.5 parent: 2 + - uid: 3072 + components: + - type: Transform + pos: 75.5,-20.5 + parent: 2 - uid: 3073 components: - type: Transform pos: 55.5,-21.5 parent: 2 - - uid: 3074 + - uid: 3095 components: - type: Transform - pos: 42.5,43.5 + rot: -1.5707963267948966 rad + pos: 60.5,35.5 parent: 2 - - uid: 3075 + - uid: 3097 components: - type: Transform - pos: 42.5,44.5 + pos: 63.5,7.5 parent: 2 - - uid: 3076 + - uid: 3102 components: - type: Transform - pos: 42.5,45.5 + rot: -1.5707963267948966 rad + pos: 40.5,40.5 parent: 2 - - uid: 3077 + - uid: 3106 components: - type: Transform - pos: 42.5,46.5 + rot: -1.5707963267948966 rad + pos: 40.5,38.5 parent: 2 - - uid: 3078 + - uid: 3107 components: - type: Transform - pos: 42.5,47.5 + pos: 61.5,33.5 parent: 2 - - uid: 3079 + - uid: 3110 components: - type: Transform - pos: 45.5,45.5 + rot: 3.141592653589793 rad + pos: 41.5,40.5 parent: 2 - - uid: 3080 + - uid: 3117 components: - type: Transform - pos: 45.5,44.5 - parent: 2 - - uid: 3081 - components: - - type: Transform - pos: 45.5,43.5 - parent: 2 - - uid: 3082 - components: - - type: Transform - pos: 46.5,43.5 - parent: 2 - - uid: 3083 - components: - - type: Transform - pos: 46.5,42.5 - parent: 2 - - uid: 3084 - components: - - type: Transform - pos: 46.5,41.5 - parent: 2 - - uid: 3085 - components: - - type: Transform - pos: 46.5,40.5 + pos: 59.5,35.5 parent: 2 - uid: 3119 components: - type: Transform pos: -26.5,-2.5 parent: 2 - - uid: 3125 + - uid: 3127 components: - type: Transform - pos: 50.5,45.5 + pos: 55.5,33.5 parent: 2 - uid: 3133 components: @@ -87592,65 +91298,49 @@ entities: - type: Transform pos: -21.5,-3.5 parent: 2 - - uid: 3142 + - uid: 3148 components: - type: Transform - pos: 37.5,28.5 + pos: 60.5,39.5 parent: 2 - - uid: 3146 + - uid: 3152 components: - type: Transform - pos: 47.5,36.5 - parent: 2 - - uid: 3149 - components: - - type: Transform - pos: 47.5,33.5 - parent: 2 - - uid: 3150 - components: - - type: Transform - pos: 47.5,32.5 + pos: 42.5,36.5 parent: 2 - uid: 3153 components: - type: Transform - pos: 47.5,29.5 + rot: 3.141592653589793 rad + pos: 31.5,26.5 parent: 2 - uid: 3155 components: - type: Transform - pos: 48.5,28.5 + rot: 1.5707963267948966 rad + pos: 28.5,17.5 parent: 2 - - uid: 3158 + - uid: 3156 components: - type: Transform - pos: 51.5,28.5 + rot: 3.141592653589793 rad + pos: 35.5,26.5 parent: 2 - - uid: 3164 + - uid: 3166 components: - type: Transform - pos: 40.5,37.5 + pos: 55.5,30.5 parent: 2 - uid: 3169 components: - type: Transform pos: 35.5,35.5 parent: 2 - - uid: 3170 - components: - - type: Transform - pos: 38.5,37.5 - parent: 2 - uid: 3178 components: - type: Transform - pos: 52.5,33.5 - parent: 2 - - uid: 3179 - components: - - type: Transform - pos: 35.5,34.5 + rot: -1.5707963267948966 rad + pos: 47.5,29.5 parent: 2 - uid: 3180 components: @@ -87667,91 +91357,94 @@ entities: - type: Transform pos: 69.5,-10.5 parent: 2 - - uid: 3194 + - uid: 3186 components: - type: Transform - pos: 38.5,29.5 - parent: 2 - - uid: 3195 - components: - - type: Transform - pos: 43.5,28.5 - parent: 2 - - uid: 3196 - components: - - type: Transform - pos: 43.5,27.5 - parent: 2 - - uid: 3198 - components: - - type: Transform - pos: 61.5,29.5 - parent: 2 - - uid: 3199 - components: - - type: Transform - pos: 61.5,28.5 + rot: -1.5707963267948966 rad + pos: 60.5,36.5 parent: 2 - uid: 3201 components: - type: Transform pos: 65.5,29.5 parent: 2 - - uid: 3203 + - uid: 3208 components: - type: Transform - pos: 41.5,37.5 - parent: 2 - - uid: 3207 - components: - - type: Transform - pos: 32.5,32.5 + rot: 3.141592653589793 rad + pos: 34.5,22.5 parent: 2 - uid: 3210 components: - type: Transform pos: -4.5,-17.5 parent: 2 + - uid: 3230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-14.5 + parent: 2 - uid: 3236 components: - type: Transform pos: 70.5,-13.5 parent: 2 - - uid: 3256 + - uid: 3237 components: - type: Transform - pos: 48.5,29.5 + rot: -1.5707963267948966 rad + pos: 51.5,45.5 + parent: 2 + - uid: 3239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,24.5 + parent: 2 + - uid: 3240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,39.5 + parent: 2 + - uid: 3242 + components: + - type: Transform + pos: 43.5,16.5 + parent: 2 + - uid: 3243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,16.5 + parent: 2 + - uid: 3247 + components: + - type: Transform + pos: 33.5,35.5 + parent: 2 + - uid: 3250 + components: + - type: Transform + pos: 30.5,35.5 + parent: 2 + - uid: 3259 + components: + - type: Transform + pos: 44.5,20.5 parent: 2 - uid: 3262 components: - type: Transform - pos: 62.5,29.5 - parent: 2 - - uid: 3264 - components: - - type: Transform - pos: 62.5,45.5 - parent: 2 - - uid: 3266 - components: - - type: Transform - pos: 63.5,45.5 + rot: 1.5707963267948966 rad + pos: 49.5,51.5 parent: 2 - uid: 3268 components: - type: Transform pos: 65.5,45.5 parent: 2 - - uid: 3269 - components: - - type: Transform - pos: 65.5,44.5 - parent: 2 - - uid: 3270 - components: - - type: Transform - pos: 65.5,43.5 - parent: 2 - uid: 3271 components: - type: Transform @@ -87772,35 +91465,10 @@ entities: - type: Transform pos: 65.5,33.5 parent: 2 - - uid: 3275 - components: - - type: Transform - pos: 65.5,34.5 - parent: 2 - - uid: 3279 - components: - - type: Transform - pos: 65.5,38.5 - parent: 2 - - uid: 3280 - components: - - type: Transform - pos: 65.5,39.5 - parent: 2 - - uid: 3281 - components: - - type: Transform - pos: 65.5,40.5 - parent: 2 - - uid: 3282 - components: - - type: Transform - pos: 65.5,41.5 - parent: 2 - uid: 3283 components: - type: Transform - pos: 65.5,42.5 + pos: 46.5,32.5 parent: 2 - uid: 3285 components: @@ -87842,21 +91510,23 @@ entities: - type: Transform pos: 47.5,-26.5 parent: 2 - - uid: 3315 - components: - - type: Transform - pos: 49.5,49.5 - parent: 2 - - uid: 3316 - components: - - type: Transform - pos: 63.5,49.5 - parent: 2 - uid: 3318 components: - type: Transform pos: -7.5,-17.5 parent: 2 + - uid: 3331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,51.5 + parent: 2 + - uid: 3338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,27.5 + parent: 2 - uid: 3352 components: - type: Transform @@ -87902,21 +91572,11 @@ entities: - type: Transform pos: 71.5,43.5 parent: 2 - - uid: 3372 - components: - - type: Transform - pos: 70.5,43.5 - parent: 2 - uid: 3373 components: - type: Transform pos: 72.5,35.5 parent: 2 - - uid: 3374 - components: - - type: Transform - pos: 71.5,35.5 - parent: 2 - uid: 3375 components: - type: Transform @@ -87942,20 +91602,39 @@ entities: - type: Transform pos: 72.5,40.5 parent: 2 + - uid: 3381 + components: + - type: Transform + pos: 49.5,36.5 + parent: 2 - uid: 3383 components: - type: Transform - pos: 70.5,35.5 + rot: -1.5707963267948966 rad + pos: 45.5,29.5 parent: 2 - - uid: 3384 + - uid: 3388 components: - type: Transform - pos: 69.5,35.5 + pos: 45.5,20.5 parent: 2 - - uid: 3385 + - uid: 3389 components: - type: Transform - pos: 68.5,35.5 + rot: -1.5707963267948966 rad + pos: 73.5,30.5 + parent: 2 + - uid: 3390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,34.5 + parent: 2 + - uid: 3391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,26.5 parent: 2 - uid: 3419 components: @@ -88002,6 +91681,11 @@ entities: - type: Transform pos: 73.5,19.5 parent: 2 + - uid: 3429 + components: + - type: Transform + pos: 54.5,26.5 + parent: 2 - uid: 3435 components: - type: Transform @@ -88057,26 +91741,11 @@ entities: - type: Transform pos: 65.5,25.5 parent: 2 - - uid: 3453 - components: - - type: Transform - pos: 61.5,27.5 - parent: 2 - - uid: 3454 - components: - - type: Transform - pos: 61.5,26.5 - parent: 2 - uid: 3456 components: - type: Transform pos: 12.5,34.5 parent: 2 - - uid: 3462 - components: - - type: Transform - pos: 61.5,22.5 - parent: 2 - uid: 3463 components: - type: Transform @@ -88132,50 +91801,15 @@ entities: - type: Transform pos: 61.5,17.5 parent: 2 - - uid: 3481 - components: - - type: Transform - pos: 50.5,26.5 - parent: 2 - uid: 3482 components: - type: Transform pos: 52.5,26.5 parent: 2 - - uid: 3483 + - uid: 3493 components: - type: Transform - pos: 51.5,22.5 - parent: 2 - - uid: 3484 - components: - - type: Transform - pos: 52.5,22.5 - parent: 2 - - uid: 3488 - components: - - type: Transform - pos: 51.5,26.5 - parent: 2 - - uid: 3491 - components: - - type: Transform - pos: 49.5,22.5 - parent: 2 - - uid: 3492 - components: - - type: Transform - pos: 50.5,22.5 - parent: 2 - - uid: 3494 - components: - - type: Transform - pos: 51.5,27.5 - parent: 2 - - uid: 3498 - components: - - type: Transform - pos: 49.5,26.5 + pos: 40.5,16.5 parent: 2 - uid: 3505 components: @@ -88197,11 +91831,6 @@ entities: - type: Transform pos: 48.5,25.5 parent: 2 - - uid: 3509 - components: - - type: Transform - pos: 48.5,26.5 - parent: 2 - uid: 3510 components: - type: Transform @@ -88217,11 +91846,6 @@ entities: - type: Transform pos: 48.5,-26.5 parent: 2 - - uid: 3528 - components: - - type: Transform - pos: 61.5,16.5 - parent: 2 - uid: 3536 components: - type: Transform @@ -88317,21 +91941,6 @@ entities: - type: Transform pos: 86.5,2.5 parent: 2 - - uid: 3560 - components: - - type: Transform - pos: 85.5,2.5 - parent: 2 - - uid: 3561 - components: - - type: Transform - pos: 85.5,3.5 - parent: 2 - - uid: 3562 - components: - - type: Transform - pos: 85.5,5.5 - parent: 2 - uid: 3564 components: - type: Transform @@ -88455,7 +92064,8 @@ entities: - uid: 3634 components: - type: Transform - pos: 69.5,12.5 + rot: 1.5707963267948966 rad + pos: 43.5,48.5 parent: 2 - uid: 3635 components: @@ -88592,16 +92202,6 @@ entities: - type: Transform pos: 59.5,11.5 parent: 2 - - uid: 3668 - components: - - type: Transform - pos: 64.5,11.5 - parent: 2 - - uid: 3669 - components: - - type: Transform - pos: 64.5,10.5 - parent: 2 - uid: 3670 components: - type: Transform @@ -88610,17 +92210,8 @@ entities: - uid: 3671 components: - type: Transform - pos: 64.5,8.5 - parent: 2 - - uid: 3672 - components: - - type: Transform - pos: 64.5,7.5 - parent: 2 - - uid: 3673 - components: - - type: Transform - pos: 63.5,7.5 + rot: 3.141592653589793 rad + pos: 66.5,9.5 parent: 2 - uid: 3674 components: @@ -88957,16 +92548,6 @@ entities: - type: Transform pos: 84.5,-11.5 parent: 2 - - uid: 3821 - components: - - type: Transform - pos: 59.5,31.5 - parent: 2 - - uid: 3822 - components: - - type: Transform - pos: 50.5,32.5 - parent: 2 - uid: 3829 components: - type: Transform @@ -89032,6 +92613,11 @@ entities: - type: Transform pos: 72.5,-17.5 parent: 2 + - uid: 3851 + components: + - type: Transform + pos: 73.5,-20.5 + parent: 2 - uid: 3865 components: - type: Transform @@ -89047,11 +92633,6 @@ entities: - type: Transform pos: 76.5,-19.5 parent: 2 - - uid: 3868 - components: - - type: Transform - pos: 73.5,-19.5 - parent: 2 - uid: 3879 components: - type: Transform @@ -89177,6 +92758,11 @@ entities: - type: Transform pos: 15.5,-59.5 parent: 2 + - uid: 4018 + components: + - type: Transform + pos: 37.5,42.5 + parent: 2 - uid: 4044 components: - type: Transform @@ -89217,15 +92803,10 @@ entities: - type: Transform pos: 23.5,-37.5 parent: 2 - - uid: 4127 + - uid: 4132 components: - type: Transform - pos: 52.5,40.5 - parent: 2 - - uid: 4128 - components: - - type: Transform - pos: 36.5,32.5 + pos: 28.5,32.5 parent: 2 - uid: 4166 components: @@ -89272,6 +92853,11 @@ entities: - type: Transform pos: 32.5,-21.5 parent: 2 + - uid: 4188 + components: + - type: Transform + pos: 37.5,43.5 + parent: 2 - uid: 4229 components: - type: Transform @@ -89352,36 +92938,21 @@ entities: - type: Transform pos: 33.5,-37.5 parent: 2 - - uid: 4346 - components: - - type: Transform - pos: 59.5,41.5 - parent: 2 - uid: 4347 components: - type: Transform - pos: 60.5,39.5 + pos: 28.5,29.5 parent: 2 - - uid: 4348 + - uid: 4349 components: - type: Transform - pos: 48.5,36.5 + pos: 55.5,29.5 parent: 2 - uid: 4364 components: - type: Transform pos: 12.5,-53.5 parent: 2 - - uid: 4367 - components: - - type: Transform - pos: 59.5,39.5 - parent: 2 - - uid: 4368 - components: - - type: Transform - pos: 50.5,36.5 - parent: 2 - uid: 4369 components: - type: Transform @@ -89447,20 +93018,10 @@ entities: - type: Transform pos: 28.5,-45.5 parent: 2 - - uid: 4397 + - uid: 4404 components: - type: Transform - pos: 51.5,33.5 - parent: 2 - - uid: 4398 - components: - - type: Transform - pos: 38.5,32.5 - parent: 2 - - uid: 4399 - components: - - type: Transform - pos: 47.5,40.5 + pos: 57.5,34.5 parent: 2 - uid: 4417 components: @@ -89527,16 +93088,6 @@ entities: - type: Transform pos: 41.5,-37.5 parent: 2 - - uid: 4568 - components: - - type: Transform - pos: 59.5,26.5 - parent: 2 - - uid: 4573 - components: - - type: Transform - pos: 60.5,26.5 - parent: 2 - uid: 4633 components: - type: Transform @@ -89557,11 +93108,6 @@ entities: - type: Transform pos: -7.5,1.5 parent: 2 - - uid: 4744 - components: - - type: Transform - pos: 52.5,32.5 - parent: 2 - uid: 4829 components: - type: Transform @@ -89572,15 +93118,11 @@ entities: - type: Transform pos: 4.5,15.5 parent: 2 - - uid: 5194 + - uid: 5183 components: - type: Transform - pos: 38.5,33.5 - parent: 2 - - uid: 5199 - components: - - type: Transform - pos: 59.5,30.5 + rot: 3.141592653589793 rad + pos: 16.5,-14.5 parent: 2 - uid: 5291 components: @@ -89602,6 +93144,41 @@ entities: - type: Transform pos: 45.5,-41.5 parent: 2 + - uid: 5310 + components: + - type: Transform + pos: 60.5,37.5 + parent: 2 + - uid: 5318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,22.5 + parent: 2 + - uid: 5319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,25.5 + parent: 2 + - uid: 5322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,22.5 + parent: 2 + - uid: 5328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,10.5 + parent: 2 + - uid: 5351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,26.5 + parent: 2 - uid: 5353 components: - type: Transform @@ -89612,25 +93189,32 @@ entities: - type: Transform pos: 2.5,9.5 parent: 2 - - uid: 5362 - components: - - type: Transform - pos: 52.5,41.5 - parent: 2 - uid: 5388 components: - type: Transform pos: 68.5,47.5 parent: 2 - - uid: 5477 + - uid: 5441 components: - type: Transform - pos: 72.5,34.5 + rot: 3.141592653589793 rad + pos: 48.5,50.5 parent: 2 - - uid: 5478 + - uid: 5442 components: - type: Transform - pos: 72.5,30.5 + pos: 64.5,50.5 + parent: 2 + - uid: 5451 + components: + - type: Transform + pos: 46.5,35.5 + parent: 2 + - uid: 5459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,37.5 parent: 2 - uid: 5479 components: @@ -89652,25 +93236,67 @@ entities: - type: Transform pos: 69.5,26.5 parent: 2 + - uid: 5489 + components: + - type: Transform + pos: 58.5,34.5 + parent: 2 + - uid: 5492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,22.5 + parent: 2 - uid: 5498 components: - type: Transform pos: 70.5,21.5 parent: 2 - - uid: 5508 + - uid: 5503 components: - type: Transform - pos: 44.5,40.5 + pos: 73.5,33.5 parent: 2 - uid: 5510 components: - type: Transform pos: 74.5,21.5 parent: 2 + - uid: 5515 + components: + - type: Transform + pos: 56.5,40.5 + parent: 2 + - uid: 5522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,22.5 + parent: 2 + - uid: 5531 + components: + - type: Transform + pos: 55.5,34.5 + parent: 2 + - uid: 5648 + components: + - type: Transform + pos: 54.5,29.5 + parent: 2 + - uid: 5650 + components: + - type: Transform + pos: 64.5,51.5 + parent: 2 + - uid: 5674 + components: + - type: Transform + pos: 46.5,37.5 + parent: 2 - uid: 5677 components: - type: Transform - pos: 53.5,46.5 + pos: 53.5,29.5 parent: 2 - uid: 5685 components: @@ -89687,15 +93313,38 @@ entities: - type: Transform pos: 51.5,-11.5 parent: 2 - - uid: 5736 + - uid: 5757 components: - type: Transform - pos: 58.5,35.5 + pos: 5.5,28.5 + parent: 2 + - uid: 5859 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,32.5 + parent: 2 + - uid: 5876 + components: + - type: Transform + pos: 4.5,28.5 + parent: 2 + - uid: 5877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,22.5 + parent: 2 + - uid: 5929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-14.5 parent: 2 - uid: 5967 components: - type: Transform - pos: 59.5,46.5 + pos: 43.5,23.5 parent: 2 - uid: 6119 components: @@ -89722,15 +93371,10 @@ entities: - type: Transform pos: 14.5,-40.5 parent: 2 - - uid: 6139 + - uid: 6184 components: - type: Transform - pos: 49.5,32.5 - parent: 2 - - uid: 6196 - components: - - type: Transform - pos: 60.5,41.5 + pos: 63.5,9.5 parent: 2 - uid: 6209 components: @@ -89747,15 +93391,40 @@ entities: - type: Transform pos: 60.5,-20.5 parent: 2 - - uid: 6212 + - uid: 6313 components: - type: Transform - pos: 39.5,43.5 + rot: -1.5707963267948966 rad + pos: 45.5,42.5 parent: 2 - - uid: 6335 + - uid: 6318 components: - type: Transform - pos: 30.5,34.5 + rot: 1.5707963267948966 rad + pos: 38.5,37.5 + parent: 2 + - uid: 6323 + components: + - type: Transform + pos: 56.5,39.5 + parent: 2 + - uid: 6349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,37.5 + parent: 2 + - uid: 6422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,11.5 + parent: 2 + - uid: 6672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,26.5 parent: 2 - uid: 6680 components: @@ -89787,6 +93456,17 @@ entities: - type: Transform pos: 63.5,-20.5 parent: 2 + - uid: 6797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,30.5 + parent: 2 + - uid: 6798 + components: + - type: Transform + pos: 68.5,49.5 + parent: 2 - uid: 6814 components: - type: Transform @@ -89802,26 +93482,36 @@ entities: - type: Transform pos: -4.5,-13.5 parent: 2 + - uid: 6843 + components: + - type: Transform + pos: 68.5,49.5 + parent: 2 + - uid: 6848 + components: + - type: Transform + pos: 68.5,50.5 + parent: 2 + - uid: 6866 + components: + - type: Transform + pos: 68.5,51.5 + parent: 2 - uid: 6867 components: - type: Transform pos: 4.5,14.5 parent: 2 - - uid: 6868 + - uid: 6873 components: - type: Transform - pos: 60.5,33.5 + pos: 41.5,43.5 parent: 2 - uid: 6880 components: - type: Transform pos: 14.5,-12.5 parent: 2 - - uid: 6881 - components: - - type: Transform - pos: 15.5,-12.5 - parent: 2 - uid: 6882 components: - type: Transform @@ -89842,6 +93532,17 @@ entities: - type: Transform pos: 9.5,-39.5 parent: 2 + - uid: 6917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,20.5 + parent: 2 + - uid: 6945 + components: + - type: Transform + pos: 47.5,48.5 + parent: 2 - uid: 7251 components: - type: Transform @@ -89932,25 +93633,43 @@ entities: - type: Transform pos: -8.5,14.5 parent: 2 + - uid: 7711 + components: + - type: Transform + pos: 62.5,35.5 + parent: 2 + - uid: 7722 + components: + - type: Transform + pos: 61.5,37.5 + parent: 2 - uid: 7750 components: - type: Transform pos: -8.5,-8.5 parent: 2 - - uid: 7754 + - uid: 7752 components: - type: Transform - pos: 41.5,29.5 + rot: 3.141592653589793 rad + pos: 30.5,26.5 parent: 2 - - uid: 7755 + - uid: 7759 components: - type: Transform - pos: 35.5,32.5 + pos: 56.5,26.5 parent: 2 - - uid: 7756 + - uid: 7761 components: - type: Transform - pos: 63.5,43.5 + rot: 3.141592653589793 rad + pos: 64.5,49.5 + parent: 2 + - uid: 7762 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,48.5 parent: 2 - uid: 7769 components: @@ -89962,6 +93681,23 @@ entities: - type: Transform pos: -19.5,-8.5 parent: 2 + - uid: 7803 + components: + - type: Transform + pos: 72.5,34.5 + parent: 2 + - uid: 7834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,48.5 + parent: 2 + - uid: 7835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,48.5 + parent: 2 - uid: 7839 components: - type: Transform @@ -89977,6 +93713,18 @@ entities: - type: Transform pos: -21.5,-17.5 parent: 2 + - uid: 7845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,48.5 + parent: 2 + - uid: 7849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,48.5 + parent: 2 - uid: 7875 components: - type: Transform @@ -90167,6 +93915,17 @@ entities: - type: Transform pos: 2.5,-27.5 parent: 2 + - uid: 7937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,26.5 + parent: 2 + - uid: 7939 + components: + - type: Transform + pos: 55.5,26.5 + parent: 2 - uid: 8044 components: - type: Transform @@ -90182,6 +93941,12 @@ entities: - type: Transform pos: 5.5,29.5 parent: 2 + - uid: 8101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,3.5 + parent: 2 - uid: 8102 components: - type: Transform @@ -90197,11 +93962,6 @@ entities: - type: Transform pos: 12.5,-56.5 parent: 2 - - uid: 8251 - components: - - type: Transform - pos: 52.5,36.5 - parent: 2 - uid: 8255 components: - type: Transform @@ -90217,26 +93977,11 @@ entities: - type: Transform pos: -5.5,14.5 parent: 2 - - uid: 8304 - components: - - type: Transform - pos: 49.5,36.5 - parent: 2 - - uid: 8324 - components: - - type: Transform - pos: 51.5,36.5 - parent: 2 - uid: 8326 components: - type: Transform pos: 52.5,-9.5 parent: 2 - - uid: 8328 - components: - - type: Transform - pos: 44.5,20.5 - parent: 2 - uid: 8329 components: - type: Transform @@ -90257,50 +94002,235 @@ entities: - type: Transform pos: 44.5,16.5 parent: 2 - - uid: 8405 + - uid: 8370 components: - type: Transform - pos: 58.5,39.5 + pos: 68.5,50.5 parent: 2 - uid: 8411 components: - type: Transform - pos: 60.5,40.5 + rot: 3.141592653589793 rad + pos: 28.5,23.5 parent: 2 - - uid: 8436 + - uid: 8413 components: - type: Transform - pos: 53.5,41.5 + rot: 3.141592653589793 rad + pos: 29.5,26.5 + parent: 2 + - uid: 8415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,25.5 + parent: 2 + - uid: 8416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,32.5 + parent: 2 + - uid: 8422 + components: + - type: Transform + pos: 46.5,33.5 + parent: 2 + - uid: 8439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,22.5 + parent: 2 + - uid: 8440 + components: + - type: Transform + pos: 38.5,34.5 + parent: 2 + - uid: 8444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,39.5 parent: 2 - uid: 8447 components: - type: Transform pos: 3.5,22.5 parent: 2 - - uid: 8517 + - uid: 8451 components: - type: Transform - pos: 44.5,28.5 + rot: 1.5707963267948966 rad + pos: 45.5,22.5 parent: 2 - - uid: 8674 + - uid: 8474 + components: + - type: Transform + pos: 50.5,43.5 + parent: 2 + - uid: 8476 + components: + - type: Transform + pos: 46.5,34.5 + parent: 2 + - uid: 8481 + components: + - type: Transform + pos: 50.5,42.5 + parent: 2 + - uid: 8486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,32.5 + parent: 2 + - uid: 8487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,28.5 + parent: 2 + - uid: 8489 + components: + - type: Transform + pos: 37.5,40.5 + parent: 2 + - uid: 8491 + components: + - type: Transform + pos: 52.5,29.5 + parent: 2 + - uid: 8493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,33.5 + parent: 2 + - uid: 8499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,29.5 + parent: 2 + - uid: 8502 + components: + - type: Transform + pos: 36.5,16.5 + parent: 2 + - uid: 8516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,45.5 + parent: 2 + - uid: 8518 + components: + - type: Transform + pos: 57.5,26.5 + parent: 2 + - uid: 8542 + components: + - type: Transform + pos: 51.5,29.5 + parent: 2 + - uid: 8582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,32.5 + parent: 2 + - uid: 8591 + components: + - type: Transform + pos: 61.5,31.5 + parent: 2 + - uid: 8603 + components: + - type: Transform + pos: 73.5,27.5 + parent: 2 + - uid: 8606 + components: + - type: Transform + pos: 41.5,23.5 + parent: 2 + - uid: 8609 components: - type: Transform pos: 52.5,37.5 parent: 2 - - uid: 8677 + - uid: 8610 components: - type: Transform - pos: 53.5,31.5 + pos: 46.5,36.5 + parent: 2 + - uid: 8613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,37.5 + parent: 2 + - uid: 8617 + components: + - type: Transform + pos: 30.5,16.5 + parent: 2 + - uid: 8637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,32.5 + parent: 2 + - uid: 8690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,28.5 + parent: 2 + - uid: 8691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,27.5 + parent: 2 + - uid: 8693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,22.5 + parent: 2 + - uid: 8698 + components: + - type: Transform + pos: 58.5,30.5 parent: 2 - uid: 8700 components: - type: Transform - pos: 42.5,33.5 + pos: 58.5,32.5 parent: 2 - uid: 8701 components: - type: Transform - pos: 42.5,32.5 + pos: 58.5,31.5 + parent: 2 + - uid: 8702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,26.5 + parent: 2 + - uid: 8703 + components: + - type: Transform + pos: 45.5,28.5 + parent: 2 + - uid: 8712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,35.5 parent: 2 - uid: 8720 components: @@ -90427,6 +94357,18 @@ entities: - type: Transform pos: 104.5,-21.5 parent: 2 + - uid: 8795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,26.5 + parent: 2 + - uid: 8796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,43.5 + parent: 2 - uid: 8811 components: - type: Transform @@ -90532,11 +94474,61 @@ entities: - type: Transform pos: 116.5,-17.5 parent: 2 + - uid: 8983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,51.5 + parent: 2 + - uid: 9037 + components: + - type: Transform + pos: 39.5,32.5 + parent: 2 + - uid: 9041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,37.5 + parent: 2 + - uid: 9154 + components: + - type: Transform + pos: 60.5,38.5 + parent: 2 - uid: 9175 components: - type: Transform pos: 69.5,-14.5 parent: 2 + - uid: 9176 + components: + - type: Transform + pos: 59.5,28.5 + parent: 2 + - uid: 9177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,28.5 + parent: 2 + - uid: 9178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,37.5 + parent: 2 + - uid: 9212 + components: + - type: Transform + pos: 50.5,39.5 + parent: 2 + - uid: 9214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,40.5 + parent: 2 - uid: 9217 components: - type: Transform @@ -90557,25 +94549,89 @@ entities: - type: Transform pos: 39.5,-17.5 parent: 2 - - uid: 9348 + - uid: 9223 components: - type: Transform - pos: 31.5,34.5 + rot: -1.5707963267948966 rad + pos: 49.5,37.5 parent: 2 - - uid: 9455 + - uid: 9247 components: - type: Transform - pos: 32.5,34.5 + pos: 41.5,44.5 parent: 2 - - uid: 9726 + - uid: 9276 components: - type: Transform - pos: 58.5,38.5 + rot: 1.5707963267948966 rad + pos: 45.5,37.5 + parent: 2 + - uid: 9277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,26.5 + parent: 2 + - uid: 9278 + components: + - type: Transform + pos: 59.5,28.5 + parent: 2 + - uid: 9302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,29.5 + parent: 2 + - uid: 9311 + components: + - type: Transform + pos: 59.5,34.5 + parent: 2 + - uid: 9320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,54.5 + parent: 2 + - uid: 9346 + components: + - type: Transform + pos: 57.5,30.5 + parent: 2 + - uid: 9401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,37.5 + parent: 2 + - uid: 9433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,9.5 + parent: 2 + - uid: 9585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,28.5 + parent: 2 + - uid: 9749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-17.5 parent: 2 - uid: 9860 components: - type: Transform - pos: 58.5,33.5 + pos: 45.5,25.5 + parent: 2 + - uid: 9884 + components: + - type: Transform + pos: 45.5,23.5 parent: 2 - uid: 9890 components: @@ -90587,10 +94643,26 @@ entities: - type: Transform pos: 8.5,-39.5 parent: 2 + - uid: 9927 + components: + - type: Transform + pos: 44.5,23.5 + parent: 2 + - uid: 9956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,6.5 + parent: 2 + - uid: 10044 + components: + - type: Transform + pos: 34.5,41.5 + parent: 2 - uid: 10085 components: - type: Transform - pos: 58.5,34.5 + pos: 30.5,44.5 parent: 2 - uid: 10089 components: @@ -90712,6 +94784,12 @@ entities: - type: Transform pos: -1.5,-6.5 parent: 2 + - uid: 10115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,22.5 + parent: 2 - uid: 10140 components: - type: Transform @@ -90762,15 +94840,80 @@ entities: - type: Transform pos: 42.5,-20.5 parent: 2 - - uid: 10319 + - uid: 10279 components: - type: Transform - pos: 58.5,37.5 + rot: 1.5707963267948966 rad + pos: 33.5,33.5 parent: 2 - - uid: 10320 + - uid: 10293 components: - type: Transform - pos: 53.5,30.5 + rot: -1.5707963267948966 rad + pos: 56.5,38.5 + parent: 2 + - uid: 10389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,38.5 + parent: 2 + - uid: 10390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,40.5 + parent: 2 + - uid: 10401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,46.5 + parent: 2 + - uid: 10414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,35.5 + parent: 2 + - uid: 10434 + components: + - type: Transform + pos: 45.5,43.5 + parent: 2 + - uid: 10442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,36.5 + parent: 2 + - uid: 10446 + components: + - type: Transform + pos: 41.5,42.5 + parent: 2 + - uid: 10463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,36.5 + parent: 2 + - uid: 10588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,25.5 + parent: 2 + - uid: 10713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,18.5 + parent: 2 + - uid: 10715 + components: + - type: Transform + pos: 40.5,41.5 parent: 2 - uid: 10745 components: @@ -90802,6 +94945,11 @@ entities: - type: Transform pos: 86.5,-21.5 parent: 2 + - uid: 10831 + components: + - type: Transform + pos: 42.5,44.5 + parent: 2 - uid: 10842 components: - type: Transform @@ -90812,21 +94960,17 @@ entities: - type: Transform pos: 38.5,35.5 parent: 2 - - uid: 10844 - components: - - type: Transform - pos: 38.5,34.5 - parent: 2 - - uid: 10845 - components: - - type: Transform - pos: 59.5,33.5 - parent: 2 - uid: 10878 components: - type: Transform pos: 26.5,-59.5 parent: 2 + - uid: 10881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,25.5 + parent: 2 - uid: 10967 components: - type: Transform @@ -90857,35 +95001,56 @@ entities: - type: Transform pos: 11.5,-54.5 parent: 2 + - uid: 11100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,51.5 + parent: 2 + - uid: 11145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,51.5 + parent: 2 + - uid: 11146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,53.5 + parent: 2 + - uid: 11192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,53.5 + parent: 2 + - uid: 11221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,54.5 + parent: 2 - uid: 11223 components: - type: Transform pos: 16.5,43.5 parent: 2 - - uid: 11280 - components: - - type: Transform - pos: 52.5,31.5 - parent: 2 - - uid: 11398 - components: - - type: Transform - pos: 87.5,5.5 - parent: 2 - - uid: 11400 - components: - - type: Transform - pos: 87.5,3.5 - parent: 2 - uid: 11613 components: - type: Transform pos: -20.5,-8.5 parent: 2 - - uid: 11676 + - uid: 11663 components: - type: Transform - pos: 8.5,37.5 + rot: 3.141592653589793 rad + pos: 48.5,48.5 + parent: 2 + - uid: 11678 + components: + - type: Transform + pos: 52.5,34.5 parent: 2 - uid: 11691 components: @@ -90897,16 +95062,6 @@ entities: - type: Transform pos: 7.5,15.5 parent: 2 - - uid: 11733 - components: - - type: Transform - pos: 37.5,20.5 - parent: 2 - - uid: 11734 - components: - - type: Transform - pos: 39.5,20.5 - parent: 2 - uid: 11769 components: - type: Transform @@ -90967,21 +95122,6 @@ entities: - type: Transform pos: 11.5,-53.5 parent: 2 - - uid: 12102 - components: - - type: Transform - pos: 54.5,42.5 - parent: 2 - - uid: 12142 - components: - - type: Transform - pos: 58.5,42.5 - parent: 2 - - uid: 12143 - components: - - type: Transform - pos: 59.5,42.5 - parent: 2 - uid: 12228 components: - type: Transform @@ -90992,45 +95132,39 @@ entities: - type: Transform pos: 64.5,12.5 parent: 2 + - uid: 12367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,37.5 + parent: 2 + - uid: 12415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,32.5 + parent: 2 - uid: 12424 components: - type: Transform pos: 7.5,39.5 parent: 2 - - uid: 12432 - components: - - type: Transform - pos: 58.5,49.5 - parent: 2 - uid: 12433 components: - type: Transform pos: 58.5,51.5 parent: 2 - - uid: 12434 - components: - - type: Transform - pos: 58.5,50.5 - parent: 2 - - uid: 12435 - components: - - type: Transform - pos: 54.5,50.5 - parent: 2 - uid: 12436 components: - type: Transform - pos: 54.5,49.5 + rot: 3.141592653589793 rad + pos: 48.5,49.5 parent: 2 - - uid: 12438 + - uid: 12443 components: - type: Transform - pos: 59.5,47.5 - parent: 2 - - uid: 12440 - components: - - type: Transform - pos: 53.5,47.5 + rot: 1.5707963267948966 rad + pos: 33.5,34.5 parent: 2 - uid: 12446 components: @@ -91047,26 +95181,26 @@ entities: - type: Transform pos: 27.5,-41.5 parent: 2 + - uid: 12562 + components: + - type: Transform + pos: 53.5,7.5 + parent: 2 - uid: 12664 components: - type: Transform pos: 3.5,28.5 parent: 2 - - uid: 12669 + - uid: 12769 components: - type: Transform - pos: 56.5,46.5 + pos: 54.5,34.5 parent: 2 - uid: 12775 components: - type: Transform pos: 20.5,-60.5 parent: 2 - - uid: 12856 - components: - - type: Transform - pos: 39.5,45.5 - parent: 2 - uid: 12888 components: - type: Transform @@ -91202,26 +95336,11 @@ entities: - type: Transform pos: -20.5,1.5 parent: 2 - - uid: 13104 - components: - - type: Transform - pos: 44.5,27.5 - parent: 2 - uid: 13113 components: - type: Transform pos: -24.5,1.5 parent: 2 - - uid: 13117 - components: - - type: Transform - pos: 36.5,20.5 - parent: 2 - - uid: 13125 - components: - - type: Transform - pos: 38.5,45.5 - parent: 2 - uid: 13184 components: - type: Transform @@ -91467,6 +95586,24 @@ entities: - type: Transform pos: 10.5,18.5 parent: 2 + - uid: 13521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,37.5 + parent: 2 + - uid: 13523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,37.5 + parent: 2 + - uid: 13526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,44.5 + parent: 2 - uid: 13561 components: - type: Transform @@ -91482,25 +95619,10 @@ entities: - type: Transform pos: 70.5,-14.5 parent: 2 - - uid: 13565 - components: - - type: Transform - pos: 51.5,32.5 - parent: 2 - - uid: 13566 - components: - - type: Transform - pos: 60.5,31.5 - parent: 2 - - uid: 13573 - components: - - type: Transform - pos: 54.5,30.5 - parent: 2 - uid: 13574 components: - type: Transform - pos: 58.5,30.5 + pos: 52.5,35.5 parent: 2 - uid: 13614 components: @@ -92182,6 +96304,12 @@ entities: - type: Transform pos: 94.5,25.5 parent: 2 + - uid: 14329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,38.5 + parent: 2 - uid: 14340 components: - type: Transform @@ -92422,6 +96550,23 @@ entities: - type: Transform pos: 94.5,31.5 parent: 2 + - uid: 14550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,38.5 + parent: 2 + - uid: 14583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,38.5 + parent: 2 + - uid: 14628 + components: + - type: Transform + pos: 50.5,7.5 + parent: 2 - uid: 14745 components: - type: Transform @@ -92452,6 +96597,12 @@ entities: - type: Transform pos: 4.5,41.5 parent: 2 + - uid: 14787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,38.5 + parent: 2 - uid: 14795 components: - type: Transform @@ -92515,32 +96666,43 @@ entities: - uid: 14823 components: - type: Transform - pos: 50.5,38.5 + rot: 3.141592653589793 rad + pos: 38.5,48.5 parent: 2 - - uid: 14828 + - uid: 14872 components: - type: Transform - pos: 50.5,43.5 + rot: -1.5707963267948966 rad + pos: 49.5,43.5 parent: 2 - - uid: 14835 + - uid: 14874 components: - type: Transform - pos: 52.5,44.5 + rot: -1.5707963267948966 rad + pos: 46.5,43.5 parent: 2 - - uid: 14837 + - uid: 14888 components: - type: Transform - pos: 62.5,41.5 + rot: 3.141592653589793 rad + pos: 38.5,47.5 parent: 2 - - uid: 14838 + - uid: 14890 components: - type: Transform - pos: 62.5,31.5 + pos: 59.5,12.5 parent: 2 - - uid: 14848 + - uid: 14892 components: - type: Transform - pos: 60.5,44.5 + rot: -1.5707963267948966 rad + pos: 63.5,37.5 + parent: 2 + - uid: 14915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,22.5 parent: 2 - uid: 14920 components: @@ -92587,20 +96749,101 @@ entities: - type: Transform pos: 12.5,-54.5 parent: 2 - - uid: 15451 + - uid: 15173 components: - type: Transform - pos: 41.5,43.5 + pos: 72.5,-21.5 parent: 2 - - uid: 15452 + - uid: 15180 components: - type: Transform - pos: 41.5,45.5 + pos: 41.5,41.5 parent: 2 - - uid: 15459 + - uid: 15184 components: - type: Transform - pos: 75.5,-19.5 + rot: 3.141592653589793 rad + pos: 43.5,44.5 + parent: 2 + - uid: 15363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,33.5 + parent: 2 + - uid: 15365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,32.5 + parent: 2 + - uid: 15369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,54.5 + parent: 2 + - uid: 15372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,40.5 + parent: 2 + - uid: 15512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,21.5 + parent: 2 + - uid: 15526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,25.5 + parent: 2 + - uid: 15532 + components: + - type: Transform + pos: 72.5,-22.5 + parent: 2 + - uid: 15533 + components: + - type: Transform + pos: 76.5,-20.5 + parent: 2 + - uid: 15540 + components: + - type: Transform + pos: 76.5,-21.5 + parent: 2 + - uid: 15541 + components: + - type: Transform + pos: 76.5,-22.5 + parent: 2 + - uid: 15544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,25.5 + parent: 2 + - uid: 15564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,21.5 + parent: 2 + - uid: 15565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,21.5 + parent: 2 + - uid: 15784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,5.5 parent: 2 - proto: WallReinforcedRust entities: @@ -92691,6 +96934,12 @@ entities: - type: Transform pos: 3.5,-2.5 parent: 2 + - uid: 185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,17.5 + parent: 2 - uid: 186 components: - type: Transform @@ -92836,6 +97085,12 @@ entities: - type: Transform pos: 10.5,32.5 parent: 2 + - uid: 449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,3.5 + parent: 2 - uid: 452 components: - type: Transform @@ -92881,6 +97136,12 @@ entities: - type: Transform pos: 10.5,-12.5 parent: 2 + - uid: 474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,38.5 + parent: 2 - uid: 475 components: - type: Transform @@ -93826,6 +98087,11 @@ entities: - type: Transform pos: 23.5,-33.5 parent: 2 + - uid: 1774 + components: + - type: Transform + pos: 53.5,22.5 + parent: 2 - uid: 1775 components: - type: Transform @@ -93891,6 +98157,11 @@ entities: - type: Transform pos: 29.5,-8.5 parent: 2 + - uid: 1902 + components: + - type: Transform + pos: 68.5,32.5 + parent: 2 - uid: 1949 components: - type: Transform @@ -94181,6 +98452,11 @@ entities: - type: Transform pos: 16.5,32.5 parent: 2 + - uid: 2133 + components: + - type: Transform + pos: 56.5,43.5 + parent: 2 - uid: 2169 components: - type: Transform @@ -94216,35 +98492,48 @@ entities: - type: Transform pos: 23.5,17.5 parent: 2 - - uid: 2244 + - uid: 2256 components: - type: Transform - pos: 29.5,22.5 + pos: 64.5,42.5 parent: 2 - - uid: 2245 + - uid: 2299 components: - type: Transform - pos: 30.5,22.5 + pos: 60.5,42.5 parent: 2 - - uid: 2246 + - uid: 2300 components: - type: Transform - pos: 31.5,22.5 + pos: 56.5,42.5 parent: 2 - - uid: 2247 + - uid: 2310 components: - type: Transform - pos: 29.5,19.5 + pos: 60.5,45.5 parent: 2 - - uid: 2248 + - uid: 2354 components: - type: Transform - pos: 30.5,19.5 + rot: 3.141592653589793 rad + pos: 56.5,44.5 parent: 2 - - uid: 2249 + - uid: 2360 components: - type: Transform - pos: 31.5,19.5 + rot: 3.141592653589793 rad + pos: 64.5,46.5 + parent: 2 + - uid: 2368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,41.5 + parent: 2 + - uid: 2489 + components: + - type: Transform + pos: 49.5,16.5 parent: 2 - uid: 2496 components: @@ -94356,11 +98645,6 @@ entities: - type: Transform pos: 34.5,12.5 parent: 2 - - uid: 2562 - components: - - type: Transform - pos: 28.5,33.5 - parent: 2 - uid: 2668 components: - type: Transform @@ -94731,50 +99015,10 @@ entities: - type: Transform pos: 67.5,6.5 parent: 2 - - uid: 3040 - components: - - type: Transform - pos: 56.5,8.5 - parent: 2 - - uid: 3041 - components: - - type: Transform - pos: 56.5,9.5 - parent: 2 - - uid: 3042 - components: - - type: Transform - pos: 56.5,10.5 - parent: 2 - - uid: 3043 - components: - - type: Transform - pos: 56.5,11.5 - parent: 2 - - uid: 3044 - components: - - type: Transform - pos: 56.5,12.5 - parent: 2 - - uid: 3051 - components: - - type: Transform - pos: 46.5,20.5 - parent: 2 - - uid: 3053 - components: - - type: Transform - pos: 49.5,16.5 - parent: 2 - uid: 3054 components: - type: Transform - pos: 50.5,16.5 - parent: 2 - - uid: 3055 - components: - - type: Transform - pos: 51.5,16.5 + pos: 54.5,22.5 parent: 2 - uid: 3056 components: @@ -94811,25 +99055,42 @@ entities: - type: Transform pos: 49.5,12.5 parent: 2 - - uid: 3356 + - uid: 3080 components: - type: Transform - pos: 68.5,46.5 + rot: 1.5707963267948966 rad + pos: 64.5,45.5 parent: 2 - - uid: 3357 + - uid: 3092 components: - type: Transform - pos: 68.5,45.5 + pos: 68.5,36.5 parent: 2 - - uid: 3358 + - uid: 3128 components: - type: Transform - pos: 68.5,44.5 + rot: 3.141592653589793 rad + pos: 54.5,46.5 parent: 2 - - uid: 3359 + - uid: 3130 components: - type: Transform - pos: 68.5,43.5 + pos: 42.5,22.5 + parent: 2 + - uid: 3140 + components: + - type: Transform + pos: 56.5,41.5 + parent: 2 + - uid: 3175 + components: + - type: Transform + pos: 61.5,42.5 + parent: 2 + - uid: 3214 + components: + - type: Transform + pos: 65.5,36.5 parent: 2 - uid: 3360 components: @@ -94841,11 +99102,6 @@ entities: - type: Transform pos: 68.5,40.5 parent: 2 - - uid: 3381 - components: - - type: Transform - pos: 68.5,41.5 - parent: 2 - uid: 3382 components: - type: Transform @@ -94856,16 +99112,6 @@ entities: - type: Transform pos: 68.5,37.5 parent: 2 - - uid: 3388 - components: - - type: Transform - pos: 68.5,38.5 - parent: 2 - - uid: 3396 - components: - - type: Transform - pos: 66.5,45.5 - parent: 2 - uid: 3414 components: - type: Transform @@ -94881,31 +99127,21 @@ entities: - type: Transform pos: 67.5,30.5 parent: 2 - - uid: 3441 - components: - - type: Transform - pos: 68.5,27.5 - parent: 2 - uid: 3442 components: - type: Transform pos: 68.5,29.5 parent: 2 - - uid: 3443 - components: - - type: Transform - pos: 68.5,33.5 - parent: 2 - - uid: 3444 - components: - - type: Transform - pos: 68.5,34.5 - parent: 2 - uid: 3461 components: - type: Transform pos: 14.5,29.5 parent: 2 + - uid: 3490 + components: + - type: Transform + pos: 41.5,20.5 + parent: 2 - uid: 3523 components: - type: Transform @@ -94951,16 +99187,6 @@ entities: - type: Transform pos: 79.5,9.5 parent: 2 - - uid: 3570 - components: - - type: Transform - pos: 78.5,11.5 - parent: 2 - - uid: 3571 - components: - - type: Transform - pos: 77.5,11.5 - parent: 2 - uid: 3572 components: - type: Transform @@ -95024,12 +99250,7 @@ entities: - uid: 3585 components: - type: Transform - pos: 79.5,11.5 - parent: 2 - - uid: 3586 - components: - - type: Transform - pos: 76.5,11.5 + pos: 59.5,50.5 parent: 2 - uid: 3598 components: @@ -95071,11 +99292,6 @@ entities: - type: Transform pos: 65.5,13.5 parent: 2 - - uid: 3666 - components: - - type: Transform - pos: 59.5,12.5 - parent: 2 - uid: 3680 components: - type: Transform @@ -95376,6 +99592,11 @@ entities: - type: Transform pos: 28.5,-20.5 parent: 2 + - uid: 4397 + components: + - type: Transform + pos: 70.5,28.5 + parent: 2 - uid: 5057 components: - type: Transform @@ -95386,25 +99607,20 @@ entities: - type: Transform pos: 40.5,-11.5 parent: 2 + - uid: 5152 + components: + - type: Transform + pos: 70.5,27.5 + parent: 2 - uid: 5174 components: - type: Transform pos: 76.5,6.5 parent: 2 - - uid: 5401 + - uid: 5309 components: - type: Transform - pos: 63.5,18.5 - parent: 2 - - uid: 5402 - components: - - type: Transform - pos: 63.5,19.5 - parent: 2 - - uid: 5404 - components: - - type: Transform - pos: 63.5,20.5 + pos: 65.5,42.5 parent: 2 - uid: 5420 components: @@ -95416,30 +99632,26 @@ entities: - type: Transform pos: 10.5,33.5 parent: 2 - - uid: 5441 + - uid: 5424 components: - type: Transform - pos: 71.5,38.5 + pos: 23.5,34.5 parent: 2 - - uid: 5442 + - uid: 5433 components: - type: Transform - pos: 70.5,38.5 + pos: 24.5,34.5 parent: 2 - - uid: 5443 + - uid: 5487 components: - type: Transform - pos: 69.5,38.5 + rot: 1.5707963267948966 rad + pos: 47.5,20.5 parent: 2 - - uid: 5748 + - uid: 5496 components: - type: Transform - pos: 56.5,21.5 - parent: 2 - - uid: 5749 - components: - - type: Transform - pos: 57.5,21.5 + pos: 68.5,34.5 parent: 2 - uid: 5785 components: @@ -95456,26 +99668,29 @@ entities: - type: Transform pos: 28.5,-7.5 parent: 2 - - uid: 6117 + - uid: 6198 components: - type: Transform - pos: 55.5,21.5 + rot: 3.141592653589793 rad + pos: 65.5,38.5 parent: 2 - - uid: 6128 + - uid: 6212 components: - type: Transform - pos: 53.5,21.5 - parent: 2 - - uid: 6138 - components: - - type: Transform - pos: 53.5,22.5 + rot: 3.141592653589793 rad + pos: 65.5,37.5 parent: 2 - uid: 6481 components: - type: Transform pos: 41.5,-2.5 parent: 2 + - uid: 6487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,46.5 + parent: 2 - uid: 6494 components: - type: Transform @@ -95506,6 +99721,23 @@ entities: - type: Transform pos: 29.5,3.5 parent: 2 + - uid: 6521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,46.5 + parent: 2 + - uid: 6530 + components: + - type: Transform + pos: 58.5,46.5 + parent: 2 + - uid: 6533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,40.5 + parent: 2 - uid: 6574 components: - type: Transform @@ -95546,11 +99778,96 @@ entities: - type: Transform pos: 75.5,5.5 parent: 2 + - uid: 7250 + components: + - type: Transform + pos: 9.5,29.5 + parent: 2 - uid: 8169 components: - type: Transform pos: 13.5,32.5 parent: 2 + - uid: 8175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,36.5 + parent: 2 + - uid: 8251 + components: + - type: Transform + pos: 60.5,43.5 + parent: 2 + - uid: 8396 + components: + - type: Transform + pos: 63.5,42.5 + parent: 2 + - uid: 8430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,18.5 + parent: 2 + - uid: 8435 + components: + - type: Transform + pos: 41.5,18.5 + parent: 2 + - uid: 8436 + components: + - type: Transform + pos: 43.5,20.5 + parent: 2 + - uid: 8454 + components: + - type: Transform + pos: 77.5,10.5 + parent: 2 + - uid: 8459 + components: + - type: Transform + pos: 42.5,20.5 + parent: 2 + - uid: 8469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,45.5 + parent: 2 + - uid: 8504 + components: + - type: Transform + pos: 64.5,37.5 + parent: 2 + - uid: 8506 + components: + - type: Transform + pos: 64.5,42.5 + parent: 2 + - uid: 8507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,41.5 + parent: 2 + - uid: 8509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,45.5 + parent: 2 + - uid: 8562 + components: + - type: Transform + pos: 62.5,42.5 + parent: 2 + - uid: 8631 + components: + - type: Transform + pos: 60.5,46.5 + parent: 2 - uid: 8805 components: - type: Transform @@ -95601,10 +99918,71 @@ entities: - type: Transform pos: 39.5,-18.5 parent: 2 - - uid: 10026 + - uid: 9238 components: - type: Transform - pos: 16.5,-10.5 + rot: -1.5707963267948966 rad + pos: 41.5,17.5 + parent: 2 + - uid: 9240 + components: + - type: Transform + pos: 59.5,46.5 + parent: 2 + - uid: 9256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,52.5 + parent: 2 + - uid: 9260 + components: + - type: Transform + pos: 68.5,35.5 + parent: 2 + - uid: 9280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,36.5 + parent: 2 + - uid: 9298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,46.5 + parent: 2 + - uid: 9300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,45.5 + parent: 2 + - uid: 9334 + components: + - type: Transform + pos: 64.5,37.5 + parent: 2 + - uid: 9340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,46.5 + parent: 2 + - uid: 9405 + components: + - type: Transform + pos: 78.5,10.5 + parent: 2 + - uid: 9418 + components: + - type: Transform + pos: 60.5,41.5 + parent: 2 + - uid: 9474 + components: + - type: Transform + pos: 70.5,29.5 parent: 2 - uid: 10027 components: @@ -95621,11 +99999,45 @@ entities: - type: Transform pos: 14.5,-8.5 parent: 2 + - uid: 10039 + components: + - type: Transform + pos: 68.5,28.5 + parent: 2 + - uid: 10307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,36.5 + parent: 2 + - uid: 10313 + components: + - type: Transform + pos: 68.5,33.5 + parent: 2 + - uid: 10399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,9.5 + parent: 2 - uid: 10812 components: - type: Transform pos: 89.5,-17.5 parent: 2 + - uid: 10839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,44.5 + parent: 2 + - uid: 10882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,11.5 + parent: 2 - uid: 11311 components: - type: Transform @@ -95636,6 +100048,11 @@ entities: - type: Transform pos: 75.5,4.5 parent: 2 + - uid: 11384 + components: + - type: Transform + pos: 51.5,16.5 + parent: 2 - uid: 11415 components: - type: Transform @@ -95666,16 +100083,64 @@ entities: - type: Transform pos: 76.5,8.5 parent: 2 + - uid: 12550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,19.5 + parent: 2 - uid: 13189 components: - type: Transform pos: 11.5,14.5 parent: 2 + - uid: 13591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,12.5 + parent: 2 + - uid: 13609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,44.5 + parent: 2 + - uid: 13651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,8.5 + parent: 2 - uid: 13684 components: - type: Transform pos: 11.5,19.5 parent: 2 + - uid: 14367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,16.5 + parent: 2 + - uid: 14566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,46.5 + parent: 2 + - uid: 14582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,46.5 + parent: 2 + - uid: 14587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,45.5 + parent: 2 - uid: 14725 components: - type: Transform @@ -95691,11 +100156,70 @@ entities: - type: Transform pos: 16.5,24.5 parent: 2 + - uid: 14827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,19.5 + parent: 2 + - uid: 14913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,5.5 + parent: 2 - uid: 15006 components: - type: Transform pos: 50.5,-14.5 parent: 2 + - uid: 15413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,53.5 + parent: 2 + - uid: 15416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,45.5 + parent: 2 + - uid: 15417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,46.5 + parent: 2 + - uid: 15418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,44.5 + parent: 2 + - uid: 15419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,43.5 + parent: 2 + - uid: 15619 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,47.5 + parent: 2 + - uid: 15622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,43.5 + parent: 2 + - uid: 15644 + components: + - type: Transform + pos: 53.5,50.5 + parent: 2 - proto: WallSolidRust entities: - uid: 7884 @@ -95710,10 +100234,10 @@ entities: parent: 2 - proto: WallWeaponCapacitorRecharger entities: - - uid: 2909 + - uid: 5675 components: - type: Transform - pos: 36.5,20.5 + pos: 49.5,34.5 parent: 2 - proto: WardrobeBlueFilled entities: @@ -95793,26 +100317,40 @@ entities: - 0 - proto: WardrobePrisonFilled entities: - - uid: 8686 + - uid: 2239 components: - type: Transform - pos: 29.5,21.5 + anchored: True + pos: 34.5,25.5 parent: 2 - - uid: 8687 + - type: Physics + bodyType: Static + - uid: 8397 components: - type: Transform - pos: 29.5,17.5 - parent: 2 - - uid: 13591 - components: - - type: Transform - pos: 58.5,31.5 - parent: 2 - - uid: 13592 - components: - - type: Transform - pos: 58.5,41.5 + anchored: True + pos: 43.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: Physics + bodyType: Static - proto: WardrobeVirologyFilled entities: - uid: 10910 @@ -95884,21 +100422,31 @@ entities: parent: 2 - proto: WaterCooler entities: - - uid: 2449 - components: - - type: Transform - pos: 24.5,33.5 - parent: 2 - uid: 5643 components: - type: Transform pos: 14.5,-23.5 parent: 2 + - uid: 9143 + components: + - type: Transform + pos: 53.5,30.5 + parent: 2 + - uid: 10714 + components: + - type: Transform + pos: 46.5,44.5 + parent: 2 - uid: 11430 components: - type: Transform pos: 76.5,3.5 parent: 2 + - uid: 14792 + components: + - type: Transform + pos: 29.5,33.5 + parent: 2 - proto: WaterTankFull entities: - uid: 606 @@ -95921,30 +100469,25 @@ entities: - type: Transform pos: 29.5,-17.5 parent: 2 - - uid: 10442 + - uid: 7790 components: - type: Transform - pos: 45.5,7.5 + pos: 62.5,43.5 parent: 2 - uid: 10790 components: - type: Transform pos: 57.5,-17.5 parent: 2 - - uid: 10838 - components: - - type: Transform - pos: 66.5,47.5 - parent: 2 - uid: 12407 components: - type: Transform pos: 46.5,-19.5 parent: 2 - - uid: 13608 + - uid: 12797 components: - type: Transform - pos: 53.5,40.5 + pos: 47.5,7.5 parent: 2 - uid: 13875 components: @@ -95963,6 +100506,11 @@ entities: - type: Transform pos: 47.5,-3.5 parent: 2 + - uid: 8559 + components: + - type: Transform + pos: 40.5,22.5 + parent: 2 - proto: WaterVaporCanister entities: - uid: 1923 @@ -95970,68 +100518,35 @@ entities: - type: Transform pos: 50.5,-29.5 parent: 2 - - uid: 7845 + - uid: 12083 components: - type: Transform - pos: 58.5,11.5 + pos: 58.5,9.5 parent: 2 - proto: WeaponCapacitorRecharger entities: - - uid: 2050 - components: - - type: Transform - pos: 34.5,41.5 - parent: 2 - - uid: 3235 - components: - - type: Transform - pos: 36.5,26.5 - parent: 2 - uid: 7979 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-3.5 parent: 2 - - uid: 8537 + - uid: 8373 components: - type: Transform - pos: 34.5,17.5 + rot: 1.5707963267948966 rad + pos: 37.5,32.5 parent: 2 - - uid: 8691 + - uid: 10608 components: - type: Transform - pos: 39.5,21.5 + pos: 28.5,31.5 parent: 2 - - uid: 11146 + - uid: 11664 components: - type: Transform - pos: 44.5,23.5 + pos: 48.5,18.5 parent: 2 - - type: ContainerContainer - containers: - WeaponCapacitorCharger-powerCellContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - charger-slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - charger_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - type: Physics - canCollide: False - uid: 12172 components: - type: Transform @@ -96044,61 +100559,106 @@ entities: - type: Transform pos: 90.5,28.5 parent: 2 -- proto: WeaponDisabler +- proto: WeaponEnergyTurretAI entities: - - uid: 2287 - components: - - type: Transform - pos: 36.50164,27.085938 - parent: 2 - - uid: 10139 - components: - - type: Transform - pos: 36.48081,27.346535 - parent: 2 -- proto: WeaponSubMachineGunWt550 - entities: - - uid: 7940 - components: - - type: Transform - pos: 45.454727,23.618372 - parent: 2 -- proto: WeaponTurretSyndicateBroken - entities: - - uid: 14238 - components: - - type: Transform - pos: 86.5,32.5 - parent: 2 - - uid: 14240 - components: - - type: Transform - pos: 84.5,32.5 - parent: 2 - - uid: 14263 - components: - - type: Transform - pos: 82.5,29.5 - parent: 2 - - uid: 14367 - components: - - type: Transform - pos: 92.5,33.5 - parent: 2 - - uid: 14521 + - uid: 7956 components: - type: Transform + rot: 3.141592653589793 rad pos: 96.5,33.5 parent: 2 - - uid: 14522 + - type: DeviceNetwork + deviceLists: + - 3821 + - uid: 8449 components: - type: Transform pos: 96.5,27.5 parent: 2 - - uid: 14523 + - type: DeviceNetwork + deviceLists: + - 3821 + - uid: 8600 components: - type: Transform - pos: 92.5,27.5 + pos: 85.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9445 + - uid: 9459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3821 +- proto: WeaponEnergyTurretAIControlPanel + entities: + - uid: 3821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 97.5,30.5 + parent: 2 + - type: DeviceList + devices: + - 8449 + - 9459 + - 7956 + - uid: 9445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,31.5 + parent: 2 + - type: DeviceList + devices: + - 8600 +- proto: WeaponEnergyTurretSecurity + entities: + - uid: 14086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6314 +- proto: WeaponEnergyTurretSecurityControlPanel + entities: + - uid: 6314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,33.5 + parent: 2 + - type: DeviceList + devices: + - 14086 +- proto: WeaponLaserCarbinePractice + entities: + - uid: 2366 + components: + - type: Transform + pos: 50.6435,34.509346 + parent: 2 +- proto: WeaponShotgunEnforcerRubber + entities: + - uid: 5153 + components: + - type: Transform + pos: 44.511932,25.36125 + parent: 2 +- proto: WeaponSubMachineGunWt550 + entities: + - uid: 1999 + components: + - type: Transform + pos: 44.47453,43.768467 parent: 2 - proto: WeedSpray entities: @@ -96119,6 +100679,13 @@ entities: - type: Transform pos: 32.547882,-30.463009 parent: 2 +- proto: WelderIndustrialAdvanced + entities: + - uid: 8683 + components: + - type: Transform + pos: 43.46133,-35.475647 + parent: 2 - proto: WeldingFuelTankFull entities: - uid: 800 @@ -96131,20 +100698,10 @@ entities: - type: Transform pos: 17.5,26.5 parent: 2 - - uid: 3502 + - uid: 3139 components: - type: Transform - pos: 36.5,36.5 - parent: 2 - - uid: 5391 - components: - - type: Transform - pos: 47.5,9.5 - parent: 2 - - uid: 5531 - components: - - type: Transform - pos: 65.5,20.5 + pos: 61.5,43.5 parent: 2 - uid: 5705 components: @@ -96156,6 +100713,11 @@ entities: - type: Transform pos: 30.5,-17.5 parent: 2 + - uid: 9602 + components: + - type: Transform + pos: 46.5,7.5 + parent: 2 - uid: 9899 components: - type: Transform @@ -96181,6 +100743,11 @@ entities: - type: Transform pos: -15.5,-24.5 parent: 2 + - uid: 15682 + components: + - type: Transform + pos: 37.5,36.5 + parent: 2 - proto: WetFloorSign entities: - uid: 12306 @@ -96193,6 +100760,13 @@ entities: - type: Transform pos: 11.536887,-11.504442 parent: 2 +- proto: WheatSeeds + entities: + - uid: 5475 + components: + - type: Transform + pos: 57.48187,43.34446 + parent: 2 - proto: Windoor entities: - uid: 308 @@ -96225,6 +100799,54 @@ entities: rot: 3.141592653589793 rad pos: 38.5,4.5 parent: 2 + - uid: 3349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,30.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 2224: + - - DoorStatus + - Close + 8633: + - - DoorStatus + - Close + - uid: 3483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,18.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3513: + - - DoorStatus + - Close + 14627: + - - DoorStatus + - Close + - uid: 3484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,17.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 14627: + - - DoorStatus + - Close + 3513: + - - DoorStatus + - Close - uid: 7775 components: - type: Transform @@ -96237,21 +100859,52 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,-1.5 parent: 2 -- proto: WindoorBarKitchenLocked - entities: - - uid: 3520 + - uid: 10315 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,-9.5 + pos: 28.5,31.5 parent: 2 -- proto: WindoorCargoLocked - entities: - - uid: 7250 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 8633: + - - DoorStatus + - Close + 2224: + - - DoorStatus + - Close + - uid: 14990 components: - type: Transform - pos: 9.5,29.5 + pos: 7.5,29.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 11629: + - - DoorStatus + - Close + 15185: + - - DoorStatus + - Close + - uid: 15190 + components: + - type: Transform + pos: 6.5,29.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 11629: + - - DoorStatus + - Close + 15185: + - - DoorStatus + - Close - proto: WindoorChapelLocked entities: - uid: 9730 @@ -96303,12 +100956,6 @@ entities: - type: Transform pos: 77.5,-5.5 parent: 2 - - uid: 5876 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-28.5 - parent: 2 - uid: 6852 components: - type: Transform @@ -96325,30 +100972,21 @@ entities: rot: -1.5707963267948966 rad pos: 113.5,-19.5 parent: 2 + - uid: 9726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,29.5 + parent: 2 - uid: 10121 components: - type: Transform pos: 80.5,-2.5 parent: 2 - - uid: 13596 + - uid: 10312 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,40.5 - parent: 2 - - uid: 13597 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,32.5 - parent: 2 -- proto: WindoorSecureArmoryLocked - entities: - - uid: 13091 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,18.5 + pos: 69.5,34.5 parent: 2 - proto: WindoorSecureAtmosphericsLocked entities: @@ -96364,6 +101002,49 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,-23.5 parent: 2 +- proto: WindoorSecureBrigLocked + entities: + - uid: 2224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,30.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 10315: + - - DoorStatus + - Close + - uid: 8633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,31.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 10315: + - - DoorStatus + - Close + 3349: + - - DoorStatus + - Close + - uid: 10770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,30.5 + parent: 2 + - uid: 14867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,29.5 + parent: 2 - proto: WindoorSecureCargoLocked entities: - uid: 10119 @@ -96404,6 +101085,18 @@ entities: - type: Transform pos: 14.5,38.5 parent: 2 + - uid: 8538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,31.5 + parent: 2 + - uid: 8666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,31.5 + parent: 2 - uid: 14210 components: - type: Transform @@ -96456,6 +101149,12 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,-23.5 parent: 2 + - uid: 5826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-15.5 + parent: 2 - uid: 5858 components: - type: Transform @@ -96474,6 +101173,12 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,-24.5 parent: 2 + - uid: 12330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-15.5 + parent: 2 - uid: 15423 components: - type: Transform @@ -96514,12 +101219,38 @@ entities: parent: 2 - proto: WindoorSecureSalvageLocked entities: - - uid: 14738 + - uid: 11629 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,29.5 + pos: 6.5,29.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 15190: + - - DoorStatus + - Close + 14990: + - - DoorStatus + - Close + - uid: 15185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,29.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 14990: + - - DoorStatus + - Close + 15190: + - - DoorStatus + - Close - proto: WindoorSecureScienceLocked entities: - uid: 3513 @@ -96528,22 +101259,37 @@ entities: rot: 1.5707963267948966 rad pos: 48.5,18.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3484: + - - DoorStatus + - Close + 3483: + - - DoorStatus + - Close - uid: 7848 components: - type: Transform pos: 47.5,12.5 parent: 2 - - uid: 8669 + - uid: 14627 components: - type: Transform - pos: 62.5,26.5 - parent: 2 - - uid: 8697 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,26.5 + rot: 1.5707963267948966 rad + pos: 48.5,17.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3484: + - - DoorStatus + - Close + 3483: + - - DoorStatus + - Close - proto: WindoorSecureSecurityLawyerLocked entities: - uid: 1077 @@ -96554,29 +101300,10 @@ entities: parent: 2 - proto: WindoorSecureSecurityLocked entities: - - uid: 2258 + - uid: 5116 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,20.5 - parent: 2 - - uid: 2259 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,18.5 - parent: 2 - - uid: 2421 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,25.5 - parent: 2 - - uid: 2429 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,25.5 + pos: 35.5,32.5 parent: 2 - uid: 7738 components: @@ -96595,19 +101322,8 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-4.5 parent: 2 - - uid: 12661 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,29.5 - parent: 2 - proto: Window entities: - - uid: 142 - components: - - type: Transform - pos: 38.5,-10.5 - parent: 2 - uid: 289 components: - type: Transform @@ -96723,16 +101439,6 @@ entities: - type: Transform pos: 66.5,-18.5 parent: 2 - - uid: 4321 - components: - - type: Transform - pos: 7.5,29.5 - parent: 2 - - uid: 4322 - components: - - type: Transform - pos: 6.5,29.5 - parent: 2 - uid: 4957 components: - type: Transform @@ -96884,6 +101590,12 @@ entities: rot: -1.5707963267948966 rad pos: 59.5,4.5 parent: 2 + - uid: 5141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-9.5 + parent: 2 - uid: 7076 components: - type: Transform @@ -96932,14 +101644,14 @@ entities: rot: -1.5707963267948966 rad pos: 65.5,4.5 parent: 2 -- proto: WindowReinforcedDirectional - entities: - - uid: 224 + - uid: 15812 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-15.5 + rot: -1.5707963267948966 rad + pos: 38.5,-10.5 parent: 2 +- proto: WindowReinforcedDirectional + entities: - uid: 673 components: - type: Transform @@ -96968,12 +101680,6 @@ entities: - type: Transform pos: 25.5,-30.5 parent: 2 - - uid: 1481 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,8.5 - parent: 2 - uid: 2158 components: - type: Transform @@ -96986,17 +101692,16 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,48.5 parent: 2 - - uid: 2410 + - uid: 2428 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,17.5 + pos: 37.5,32.5 parent: 2 - - uid: 2679 + - uid: 3385 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,32.5 + pos: 7.5,29.5 parent: 2 - uid: 5034 components: @@ -97010,6 +101715,12 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,32.5 parent: 2 + - uid: 5336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,29.5 + parent: 2 - uid: 5364 components: - type: Transform @@ -97022,6 +101733,11 @@ entities: rot: 3.141592653589793 rad pos: 17.5,32.5 parent: 2 + - uid: 5471 + components: + - type: Transform + pos: 36.5,32.5 + parent: 2 - uid: 5656 components: - type: Transform @@ -97045,12 +101761,6 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,-32.5 parent: 2 - - uid: 5866 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-15.5 - parent: 2 - uid: 5867 components: - type: Transform @@ -97069,44 +101779,6 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,-29.5 parent: 2 - - uid: 6198 - components: - - type: Transform - pos: 28.5,25.5 - parent: 2 - - uid: 6327 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,28.5 - parent: 2 - - uid: 6328 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,30.5 - parent: 2 - - uid: 6329 - components: - - type: Transform - pos: 31.5,25.5 - parent: 2 - - uid: 6330 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,26.5 - parent: 2 - - uid: 6331 - components: - - type: Transform - pos: 29.5,25.5 - parent: 2 - - uid: 6332 - components: - - type: Transform - pos: 30.5,25.5 - parent: 2 - uid: 6832 components: - type: Transform @@ -97119,12 +101791,6 @@ entities: rot: -1.5707963267948966 rad pos: -9.5,0.5 parent: 2 - - uid: 7762 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,19.5 - parent: 2 - uid: 7785 components: - type: Transform @@ -97249,6 +101915,22 @@ entities: rot: -1.5707963267948966 rad pos: 113.5,-18.5 parent: 2 + - uid: 9155 + components: + - type: Transform + pos: 34.5,32.5 + parent: 2 + - uid: 9458 + components: + - type: Transform + pos: 70.5,34.5 + parent: 2 + - uid: 9588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,29.5 + parent: 2 - uid: 9613 components: - type: Transform @@ -97279,10 +101961,11 @@ entities: rot: 3.141592653589793 rad pos: 29.5,5.5 parent: 2 - - uid: 12766 + - uid: 10573 components: - type: Transform - pos: 46.5,37.5 + rot: 3.141592653589793 rad + pos: 44.5,29.5 parent: 2 - uid: 12790 components: @@ -97308,29 +101991,6 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,0.5 parent: 2 - - uid: 13435 - components: - - type: Transform - pos: 58.5,12.5 - parent: 2 - - uid: 13541 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,33.5 - parent: 2 - - uid: 13594 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,41.5 - parent: 2 - - uid: 13595 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,31.5 - parent: 2 - uid: 14199 components: - type: Transform @@ -97355,18 +102015,6 @@ entities: rot: 3.141592653589793 rad pos: 79.5,27.5 parent: 2 - - uid: 14235 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 86.5,32.5 - parent: 2 - - uid: 14249 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,32.5 - parent: 2 - uid: 14357 components: - type: Transform @@ -97396,17 +102044,35 @@ entities: - type: Transform pos: 82.5,36.5 parent: 2 - - uid: 15085 + - uid: 14664 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,30.5 + pos: 24.5,33.5 parent: 2 - - uid: 15086 + - uid: 14825 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,29.5 + pos: 31.5,31.5 + parent: 2 + - uid: 14855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,32.5 + parent: 2 + - uid: 14856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,30.5 + parent: 2 + - uid: 14857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,29.5 parent: 2 - uid: 15424 components: @@ -97442,6 +102108,56 @@ entities: - type: Transform pos: 34.5,4.5 parent: 2 +- proto: WoodenBench + entities: + - uid: 982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,6.5 + parent: 2 + - uid: 2287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,8.5 + parent: 2 + - uid: 6306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,8.5 + parent: 2 + - uid: 6311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,5.5 + parent: 2 + - uid: 6315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,6.5 + parent: 2 + - uid: 6317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,9.5 + parent: 2 + - uid: 15646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,5.5 + parent: 2 + - uid: 15653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,9.5 + parent: 2 - proto: Wrench entities: - uid: 604 @@ -97449,14 +102165,22 @@ entities: - type: Transform pos: 30.501482,-14.418215 parent: 2 - - uid: 5325 - components: - - type: Transform - pos: 55.374165,17.598963 - parent: 2 - uid: 11127 components: - type: Transform pos: 54.489273,-14.340717 parent: 2 + - uid: 13499 + components: + - type: Transform + parent: 13141 + - type: Physics + canCollide: False +- proto: ZiptiesBroken + entities: + - uid: 9457 + components: + - type: Transform + pos: 71.78979,31.37478 + parent: 2 ... diff --git a/Resources/Maps/plasma.yml b/Resources/Maps/plasma.yml index 03e759a003..b5d76a75e0 100644 --- a/Resources/Maps/plasma.yml +++ b/Resources/Maps/plasma.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Map - engineVersion: 264.0.0 + engineVersion: 266.0.0 forkId: "" forkVersion: "" - time: 07/22/2025 14:44:01 - entityCount: 26380 + time: 08/31/2025 08:36:21 + entityCount: 26386 maps: - 1 grids: @@ -10064,6 +10064,8 @@ entities: - 25266 - 25235 - 25090 + - type: Fixtures + fixtures: {} - uid: 346 components: - type: MetaData @@ -10076,6 +10078,8 @@ entities: devices: - 9330 - 18807 + - type: Fixtures + fixtures: {} - uid: 374 components: - type: MetaData @@ -10089,6 +10093,8 @@ entities: - 23516 - 9976 - 23320 + - type: Fixtures + fixtures: {} - uid: 461 components: - type: MetaData @@ -10101,6 +10107,8 @@ entities: - 23370 - 23872 - 23368 + - type: Fixtures + fixtures: {} - uid: 854 components: - type: Transform @@ -10112,6 +10120,8 @@ entities: - 457 - 18223 - 972 + - type: Fixtures + fixtures: {} - uid: 927 components: - type: MetaData @@ -10131,6 +10141,8 @@ entities: - 25858 - 25856 - 25857 + - type: Fixtures + fixtures: {} - uid: 1848 components: - type: MetaData @@ -10149,6 +10161,8 @@ entities: - 24570 - 24569 - 26337 + - type: Fixtures + fixtures: {} - uid: 2136 components: - type: MetaData @@ -10171,6 +10185,8 @@ entities: - 10020 - 10021 - 6939 + - type: Fixtures + fixtures: {} - uid: 3073 components: - type: MetaData @@ -10188,6 +10204,8 @@ entities: - 11250 - 11253 - 11254 + - type: Fixtures + fixtures: {} - uid: 3074 components: - type: MetaData @@ -10202,6 +10220,8 @@ entities: - 10402 - 11246 - 11254 + - type: Fixtures + fixtures: {} - uid: 3287 components: - type: MetaData @@ -10233,6 +10253,8 @@ entities: - 2980 - 2987 - 6938 + - type: Fixtures + fixtures: {} - uid: 4080 components: - type: MetaData @@ -10249,6 +10271,8 @@ entities: - 11179 - 16988 - 16991 + - type: Fixtures + fixtures: {} - uid: 4214 components: - type: MetaData @@ -10266,6 +10290,8 @@ entities: - 12510 - 11070 - 24045 + - type: Fixtures + fixtures: {} - uid: 5387 components: - type: MetaData @@ -10277,6 +10303,8 @@ entities: - type: DeviceList devices: - 5385 + - type: Fixtures + fixtures: {} - uid: 5658 components: - type: MetaData @@ -10288,6 +10316,8 @@ entities: - type: DeviceList devices: - 5379 + - type: Fixtures + fixtures: {} - uid: 5898 components: - type: MetaData @@ -10304,6 +10334,8 @@ entities: - 14951 - 14950 - 14948 + - type: Fixtures + fixtures: {} - uid: 5906 components: - type: MetaData @@ -10314,6 +10346,8 @@ entities: - type: DeviceList devices: - 19290 + - type: Fixtures + fixtures: {} - uid: 6850 components: - type: MetaData @@ -10327,6 +10361,8 @@ entities: - 11379 - 7088 - 11181 + - type: Fixtures + fixtures: {} - uid: 6929 components: - type: MetaData @@ -10342,6 +10378,8 @@ entities: - 18710 - 17897 - 17967 + - type: Fixtures + fixtures: {} - uid: 7346 components: - type: MetaData @@ -10359,6 +10397,8 @@ entities: - 7808 - 23895 - 22713 + - type: Fixtures + fixtures: {} - uid: 8070 components: - type: MetaData @@ -10369,6 +10409,8 @@ entities: - type: DeviceList devices: - 25859 + - type: Fixtures + fixtures: {} - uid: 8072 components: - type: MetaData @@ -10380,6 +10422,8 @@ entities: - type: DeviceList devices: - 25860 + - type: Fixtures + fixtures: {} - uid: 8411 components: - type: MetaData @@ -10392,6 +10436,8 @@ entities: - 860 - 853 - 24038 + - type: Fixtures + fixtures: {} - uid: 8934 components: - type: MetaData @@ -10407,6 +10453,8 @@ entities: - 11810 - 11072 - 5744 + - type: Fixtures + fixtures: {} - uid: 8941 components: - type: MetaData @@ -10426,6 +10474,8 @@ entities: - 13217 - 12001 - 13220 + - type: Fixtures + fixtures: {} - uid: 8947 components: - type: MetaData @@ -10444,6 +10494,8 @@ entities: - 14689 - 13863 - 15360 + - type: Fixtures + fixtures: {} - uid: 8954 components: - type: MetaData @@ -10456,6 +10508,8 @@ entities: devices: - 15356 - 5746 + - type: Fixtures + fixtures: {} - uid: 9146 components: - type: MetaData @@ -10469,6 +10523,8 @@ entities: - 12441 - 12514 - 11100 + - type: Fixtures + fixtures: {} - uid: 9162 components: - type: MetaData @@ -10482,6 +10538,8 @@ entities: - 12244 - 12247 - 2488 + - type: Fixtures + fixtures: {} - uid: 9167 components: - type: Transform @@ -10499,6 +10557,8 @@ entities: - 24662 - 4910 - 7653 + - type: Fixtures + fixtures: {} - uid: 9253 components: - type: MetaData @@ -10523,6 +10583,8 @@ entities: - 14353 - 14356 - 1782 + - type: Fixtures + fixtures: {} - uid: 9346 components: - type: MetaData @@ -10536,6 +10598,8 @@ entities: - 12298 - 25653 - 25651 + - type: Fixtures + fixtures: {} - uid: 9348 components: - type: MetaData @@ -10547,6 +10611,8 @@ entities: devices: - 14863 - 14864 + - type: Fixtures + fixtures: {} - uid: 9385 components: - type: Transform @@ -10558,6 +10624,8 @@ entities: - 24697 - 869 - 16816 + - type: Fixtures + fixtures: {} - uid: 9430 components: - type: MetaData @@ -10576,6 +10644,8 @@ entities: - 13438 - 19613 - 14948 + - type: Fixtures + fixtures: {} - uid: 9459 components: - type: MetaData @@ -10588,6 +10658,8 @@ entities: - 6868 - 7843 - 16418 + - type: Fixtures + fixtures: {} - uid: 9624 components: - type: MetaData @@ -10599,6 +10671,8 @@ entities: - type: DeviceList devices: - 9476 + - type: Fixtures + fixtures: {} - uid: 11242 components: - type: MetaData @@ -10613,6 +10687,8 @@ entities: - 2968 - 2976 - 11251 + - type: Fixtures + fixtures: {} - uid: 11243 components: - type: MetaData @@ -10630,6 +10706,8 @@ entities: - 11249 - 2976 - 11252 + - type: Fixtures + fixtures: {} - uid: 11244 components: - type: MetaData @@ -10644,6 +10722,8 @@ entities: - 23990 - 14980 - 7351 + - type: Fixtures + fixtures: {} - uid: 11298 components: - type: MetaData @@ -10662,6 +10742,8 @@ entities: - 11805 - 24031 - 24034 + - type: Fixtures + fixtures: {} - uid: 11722 components: - type: MetaData @@ -10680,6 +10762,8 @@ entities: - 24647 - 24646 - 24645 + - type: Fixtures + fixtures: {} - uid: 11837 components: - type: MetaData @@ -10706,6 +10790,8 @@ entities: - 11817 - 11816 - 23126 + - type: Fixtures + fixtures: {} - uid: 11893 components: - type: MetaData @@ -10728,6 +10814,8 @@ entities: - 7808 - 23895 - 22713 + - type: Fixtures + fixtures: {} - uid: 12151 components: - type: MetaData @@ -10770,6 +10858,8 @@ entities: - 18200 - 1658 - 19471 + - type: Fixtures + fixtures: {} - uid: 14263 components: - type: MetaData @@ -10783,6 +10873,8 @@ entities: - 14272 - 4875 - 4280 + - type: Fixtures + fixtures: {} - uid: 14861 components: - type: MetaData @@ -10795,6 +10887,8 @@ entities: - 23614 - 22162 - 19738 + - type: Fixtures + fixtures: {} - uid: 15140 components: - type: MetaData @@ -10810,6 +10904,8 @@ entities: - 24127 - 24124 - 24128 + - type: Fixtures + fixtures: {} - uid: 15348 components: - type: MetaData @@ -10827,6 +10923,8 @@ entities: - 15353 - 15355 - 15354 + - type: Fixtures + fixtures: {} - uid: 15359 components: - type: MetaData @@ -10845,6 +10943,8 @@ entities: - 11105 - 9134 - 12047 + - type: Fixtures + fixtures: {} - uid: 15364 components: - type: MetaData @@ -10858,6 +10958,8 @@ entities: - 15103 - 24123 - 1599 + - type: Fixtures + fixtures: {} - uid: 15411 components: - type: MetaData @@ -10871,6 +10973,8 @@ entities: - 24124 - 24125 - 24126 + - type: Fixtures + fixtures: {} - uid: 15412 components: - type: MetaData @@ -10884,6 +10988,8 @@ entities: - 15079 - 15078 - 24126 + - type: Fixtures + fixtures: {} - uid: 15413 components: - type: MetaData @@ -10896,6 +11002,8 @@ entities: - 24128 - 14285 - 15121 + - type: Fixtures + fixtures: {} - uid: 15415 components: - type: MetaData @@ -10915,6 +11023,8 @@ entities: - 15369 - 15373 - 15417 + - type: Fixtures + fixtures: {} - uid: 15416 components: - type: MetaData @@ -10923,6 +11033,8 @@ entities: rot: -1.5707963267948966 rad pos: -62.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15581 components: - type: MetaData @@ -10940,6 +11052,8 @@ entities: - 4826 - 5626 - 5622 + - type: Fixtures + fixtures: {} - uid: 16218 components: - type: MetaData @@ -10955,6 +11069,8 @@ entities: - 22218 - 10448 - 1166 + - type: Fixtures + fixtures: {} - uid: 17332 components: - type: MetaData @@ -10967,6 +11083,8 @@ entities: devices: - 13824 - 16746 + - type: Fixtures + fixtures: {} - uid: 17569 components: - type: MetaData @@ -10980,6 +11098,8 @@ entities: - 17180 - 24048 - 24045 + - type: Fixtures + fixtures: {} - uid: 17849 components: - type: MetaData @@ -10993,6 +11113,8 @@ entities: - 15036 - 25561 - 11829 + - type: Fixtures + fixtures: {} - uid: 18696 components: - type: MetaData @@ -11007,6 +11129,8 @@ entities: - 18024 - 18012 - 18708 + - type: Fixtures + fixtures: {} - uid: 18697 components: - type: MetaData @@ -11021,6 +11145,8 @@ entities: - 18037 - 18038 - 18048 + - type: Fixtures + fixtures: {} - uid: 18703 components: - type: MetaData @@ -11028,6 +11154,8 @@ entities: - type: Transform pos: -87.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18704 components: - type: MetaData @@ -11041,6 +11169,8 @@ entities: - 18060 - 18722 - 18072 + - type: Fixtures + fixtures: {} - uid: 18705 components: - type: MetaData @@ -11054,6 +11184,8 @@ entities: - 16034 - 17442 - 18721 + - type: Fixtures + fixtures: {} - uid: 18706 components: - type: MetaData @@ -11066,6 +11198,8 @@ entities: - 17994 - 18707 - 17241 + - type: Fixtures + fixtures: {} - uid: 19277 components: - type: MetaData @@ -11079,6 +11213,8 @@ entities: - 17091 - 19288 - 18053 + - type: Fixtures + fixtures: {} - uid: 19278 components: - type: MetaData @@ -11093,6 +11229,8 @@ entities: - 18843 - 18844 - 19289 + - type: Fixtures + fixtures: {} - uid: 19280 components: - type: MetaData @@ -11105,6 +11243,8 @@ entities: devices: - 19291 - 19292 + - type: Fixtures + fixtures: {} - uid: 19281 components: - type: MetaData @@ -11116,6 +11256,8 @@ entities: - type: DeviceList devices: - 10148 + - type: Fixtures + fixtures: {} - uid: 19282 components: - type: MetaData @@ -11130,6 +11272,8 @@ entities: - 18893 - 19285 - 18985 + - type: Fixtures + fixtures: {} - uid: 19284 components: - type: MetaData @@ -11141,6 +11285,8 @@ entities: devices: - 16940 - 5384 + - type: Fixtures + fixtures: {} - uid: 19286 components: - type: MetaData @@ -11159,6 +11305,8 @@ entities: - 26338 - 18957 - 18891 + - type: Fixtures + fixtures: {} - uid: 19293 components: - type: MetaData @@ -11173,6 +11321,8 @@ entities: - 19294 - 18965 - 15582 + - type: Fixtures + fixtures: {} - uid: 19297 components: - type: MetaData @@ -11184,11 +11334,15 @@ entities: - type: DeviceList devices: - 19298 + - type: Fixtures + fixtures: {} - uid: 19570 components: - type: Transform pos: -96.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19798 components: - type: MetaData @@ -11205,6 +11359,8 @@ entities: - 19713 - 19797 - 19714 + - type: Fixtures + fixtures: {} - uid: 19805 components: - type: MetaData @@ -11218,6 +11374,8 @@ entities: - 19804 - 10170 - 18879 + - type: Fixtures + fixtures: {} - uid: 19806 components: - type: MetaData @@ -11231,6 +11389,8 @@ entities: - 19792 - 19652 - 19653 + - type: Fixtures + fixtures: {} - uid: 19910 components: - type: MetaData @@ -11271,6 +11431,8 @@ entities: - 24779 - 24782 - 24783 + - type: Fixtures + fixtures: {} - uid: 20216 components: - type: MetaData @@ -11283,6 +11445,8 @@ entities: - 4332 - 19029 - 20094 + - type: Fixtures + fixtures: {} - uid: 20303 components: - type: MetaData @@ -11295,6 +11459,8 @@ entities: devices: - 275 - 20304 + - type: Fixtures + fixtures: {} - uid: 20316 components: - type: MetaData @@ -11320,6 +11486,8 @@ entities: - 17492 - 431 - 507 + - type: Fixtures + fixtures: {} - uid: 20318 components: - type: MetaData @@ -11332,6 +11500,8 @@ entities: - 20373 - 20374 - 20375 + - type: Fixtures + fixtures: {} - uid: 20367 components: - type: MetaData @@ -11345,6 +11515,8 @@ entities: - 20120 - 20119 - 20377 + - type: Fixtures + fixtures: {} - uid: 20372 components: - type: MetaData @@ -11360,6 +11532,8 @@ entities: - 14633 - 7825 - 20079 + - type: Fixtures + fixtures: {} - uid: 20948 components: - type: MetaData @@ -11378,6 +11552,8 @@ entities: - 24050 - 24048 - 24049 + - type: Fixtures + fixtures: {} - uid: 21036 components: - type: MetaData @@ -11390,6 +11566,8 @@ entities: - 15048 - 19791 - 14840 + - type: Fixtures + fixtures: {} - uid: 21473 components: - type: MetaData @@ -11403,6 +11581,8 @@ entities: - 20074 - 20104 - 20472 + - type: Fixtures + fixtures: {} - uid: 21674 components: - type: MetaData @@ -11415,6 +11595,8 @@ entities: - 7039 - 22285 - 24230 + - type: Fixtures + fixtures: {} - uid: 22168 components: - type: MetaData @@ -11433,6 +11615,8 @@ entities: - 24680 - 24681 - 24693 + - type: Fixtures + fixtures: {} - uid: 23400 components: - type: MetaData @@ -11445,6 +11629,8 @@ entities: devices: - 19571 - 19790 + - type: Fixtures + fixtures: {} - uid: 23457 components: - type: MetaData @@ -11458,6 +11644,8 @@ entities: - 788 - 23519 - 20779 + - type: Fixtures + fixtures: {} - uid: 23681 components: - type: MetaData @@ -11487,6 +11675,8 @@ entities: - 14628 - 16293 - 15676 + - type: Fixtures + fixtures: {} - uid: 23983 components: - type: MetaData @@ -11497,6 +11687,8 @@ entities: - type: DeviceList devices: - 23984 + - type: Fixtures + fixtures: {} - uid: 24026 components: - type: MetaData @@ -11513,6 +11705,8 @@ entities: - 14937 - 14938 - 14936 + - type: Fixtures + fixtures: {} - uid: 24037 components: - type: MetaData @@ -11525,6 +11719,8 @@ entities: devices: - 25633 - 25632 + - type: Fixtures + fixtures: {} - uid: 24043 components: - type: MetaData @@ -11538,6 +11734,8 @@ entities: - 12329 - 8663 - 24044 + - type: Fixtures + fixtures: {} - uid: 24108 components: - type: MetaData @@ -11557,6 +11755,8 @@ entities: - 24164 - 24162 - 24867 + - type: Fixtures + fixtures: {} - uid: 24232 components: - type: MetaData @@ -11572,6 +11772,8 @@ entities: - 18613 - 24515 - 24509 + - type: Fixtures + fixtures: {} - uid: 24742 components: - type: MetaData @@ -11588,6 +11790,8 @@ entities: - 24130 - 15021 - 9250 + - type: Fixtures + fixtures: {} - uid: 25258 components: - type: MetaData @@ -11605,6 +11809,8 @@ entities: - 25256 - 25150 - 25248 + - type: Fixtures + fixtures: {} - uid: 25270 components: - type: MetaData @@ -11616,6 +11822,8 @@ entities: devices: - 24899 - 25192 + - type: Fixtures + fixtures: {} - uid: 25280 components: - type: MetaData @@ -11628,6 +11836,8 @@ entities: - 25190 - 25265 - 25177 + - type: Fixtures + fixtures: {} - uid: 25402 components: - type: MetaData @@ -11636,6 +11846,8 @@ entities: rot: -1.5707963267948966 rad pos: -111.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25644 components: - type: MetaData @@ -11648,6 +11860,8 @@ entities: - 12271 - 15039 - 10133 + - type: Fixtures + fixtures: {} - uid: 25886 components: - type: MetaData @@ -11664,6 +11878,8 @@ entities: - 20361 - 20362 - 20203 + - type: Fixtures + fixtures: {} - uid: 25887 components: - type: MetaData @@ -11680,6 +11896,8 @@ entities: - 19726 - 24558 - 19789 + - type: Fixtures + fixtures: {} - uid: 26179 components: - type: MetaData @@ -11693,6 +11911,8 @@ entities: - 13210 - 13021 - 11803 + - type: Fixtures + fixtures: {} - proto: AirCanister entities: - uid: 1236 @@ -14467,7 +14687,7 @@ entities: pos: -131.5,-45.5 parent: 2 - type: Door - secondsUntilStateChange: -52604.145 + secondsUntilStateChange: -52623.953 state: Opening - type: DeviceLinkSource lastSignals: @@ -15798,6 +16018,8 @@ entities: - type: Transform pos: -44.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 381 components: - type: MetaData @@ -15806,6 +16028,8 @@ entities: rot: -1.5707963267948966 rad pos: -116.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1957 components: - type: MetaData @@ -15813,6 +16037,8 @@ entities: - type: Transform pos: -122.5,-69.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2083 components: - type: MetaData @@ -15820,6 +16046,8 @@ entities: - type: Transform pos: -108.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3069 components: - type: MetaData @@ -15828,6 +16056,8 @@ entities: rot: 3.141592653589793 rad pos: -52.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3126 components: - type: MetaData @@ -15836,6 +16066,8 @@ entities: rot: -1.5707963267948966 rad pos: -65.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3136 components: - type: MetaData @@ -15844,6 +16076,8 @@ entities: rot: 1.5707963267948966 rad pos: -54.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3322 components: - type: MetaData @@ -15852,6 +16086,8 @@ entities: rot: -1.5707963267948966 rad pos: -56.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3395 components: - type: MetaData @@ -15860,6 +16096,8 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3719 components: - type: MetaData @@ -15868,12 +16106,16 @@ entities: rot: 1.5707963267948966 rad pos: -70.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3812 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4211 components: - type: MetaData @@ -15881,6 +16123,8 @@ entities: - type: Transform pos: -20.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4216 components: - type: MetaData @@ -15889,6 +16133,8 @@ entities: rot: 3.141592653589793 rad pos: -38.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4225 components: - type: MetaData @@ -15897,11 +16143,15 @@ entities: rot: -1.5707963267948966 rad pos: -135.5,1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4341 components: - type: Transform pos: -56.5,-76.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4387 components: - type: MetaData @@ -15910,6 +16160,8 @@ entities: rot: 3.141592653589793 rad pos: -96.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4410 components: - type: MetaData @@ -15918,11 +16170,15 @@ entities: rot: 3.141592653589793 rad pos: -84.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4419 components: - type: Transform pos: -43.5,-72.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4990 components: - type: MetaData @@ -15931,6 +16187,8 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5159 components: - type: MetaData @@ -15939,6 +16197,8 @@ entities: rot: 1.5707963267948966 rad pos: -38.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5836 components: - type: MetaData @@ -15947,6 +16207,8 @@ entities: rot: -1.5707963267948966 rad pos: -135.5,14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6228 components: - type: MetaData @@ -15954,11 +16216,15 @@ entities: - type: Transform pos: -125.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6662 components: - type: Transform pos: -97.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7226 components: - type: MetaData @@ -15966,6 +16232,8 @@ entities: - type: Transform pos: -14.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7956 components: - type: MetaData @@ -15974,6 +16242,8 @@ entities: rot: 3.141592653589793 rad pos: -134.5,-49.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8020 components: - type: MetaData @@ -15982,6 +16252,8 @@ entities: rot: 3.141592653589793 rad pos: -127.5,-49.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8021 components: - type: MetaData @@ -15990,6 +16262,8 @@ entities: rot: 3.141592653589793 rad pos: -117.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8023 components: - type: MetaData @@ -15998,6 +16272,8 @@ entities: rot: 3.141592653589793 rad pos: -129.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8027 components: - type: MetaData @@ -16006,6 +16282,8 @@ entities: rot: 1.5707963267948966 rad pos: -123.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8310 components: - type: MetaData @@ -16014,6 +16292,8 @@ entities: rot: 3.141592653589793 rad pos: -10.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8342 components: - type: MetaData @@ -16022,6 +16302,8 @@ entities: rot: -1.5707963267948966 rad pos: -44.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8354 components: - type: MetaData @@ -16030,6 +16312,8 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8931 components: - type: MetaData @@ -16038,6 +16322,8 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8933 components: - type: MetaData @@ -16045,6 +16331,8 @@ entities: - type: Transform pos: -41.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9076 components: - type: MetaData @@ -16052,6 +16340,8 @@ entities: - type: Transform pos: -31.5,-69.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9157 components: - type: MetaData @@ -16060,6 +16350,8 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9357 components: - type: MetaData @@ -16067,6 +16359,8 @@ entities: - type: Transform pos: -26.5,-61.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9638 components: - type: MetaData @@ -16075,6 +16369,8 @@ entities: rot: -1.5707963267948966 rad pos: -31.5,-65.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9833 components: - type: MetaData @@ -16083,6 +16379,8 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10543 components: - type: MetaData @@ -16091,6 +16389,8 @@ entities: rot: -1.5707963267948966 rad pos: -50.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11326 components: - type: MetaData @@ -16098,6 +16398,8 @@ entities: - type: Transform pos: -23.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13009 components: - type: MetaData @@ -16106,6 +16408,8 @@ entities: rot: 3.141592653589793 rad pos: -40.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13016 components: - type: MetaData @@ -16114,6 +16418,8 @@ entities: rot: 3.141592653589793 rad pos: -27.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13591 components: - type: MetaData @@ -16121,6 +16427,8 @@ entities: - type: Transform pos: -88.5,-59.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13608 components: - type: MetaData @@ -16129,6 +16437,8 @@ entities: rot: 3.141592653589793 rad pos: -134.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13720 components: - type: MetaData @@ -16136,6 +16446,8 @@ entities: - type: Transform pos: -140.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13742 components: - type: MetaData @@ -16144,6 +16456,8 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14167 components: - type: MetaData @@ -16152,6 +16466,8 @@ entities: rot: 1.5707963267948966 rad pos: -123.5,-52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14237 components: - type: MetaData @@ -16160,6 +16476,8 @@ entities: rot: 3.141592653589793 rad pos: -17.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14281 components: - type: MetaData @@ -16168,6 +16486,8 @@ entities: rot: -1.5707963267948966 rad pos: -31.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14753 components: - type: MetaData @@ -16176,6 +16496,8 @@ entities: rot: -1.5707963267948966 rad pos: -72.5,-54.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15262 components: - type: MetaData @@ -16184,6 +16506,8 @@ entities: rot: 1.5707963267948966 rad pos: -73.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15429 components: - type: MetaData @@ -16192,6 +16516,8 @@ entities: rot: 3.141592653589793 rad pos: -55.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16220 components: - type: MetaData @@ -16199,6 +16525,8 @@ entities: - type: Transform pos: -99.5,23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16994 components: - type: MetaData @@ -16207,6 +16535,8 @@ entities: rot: -1.5707963267948966 rad pos: -96.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18201 components: - type: MetaData @@ -16215,6 +16545,8 @@ entities: rot: -1.5707963267948966 rad pos: -85.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18385 components: - type: MetaData @@ -16222,6 +16554,8 @@ entities: - type: Transform pos: -110.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18403 components: - type: MetaData @@ -16230,6 +16564,8 @@ entities: rot: 3.141592653589793 rad pos: -85.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18405 components: - type: MetaData @@ -16238,6 +16574,8 @@ entities: rot: -1.5707963267948966 rad pos: -79.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18406 components: - type: MetaData @@ -16246,17 +16584,23 @@ entities: rot: -1.5707963267948966 rad pos: -89.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18418 components: - type: Transform pos: -93.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18422 components: - type: Transform rot: -1.5707963267948966 rad pos: -97.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18990 components: - type: MetaData @@ -16265,6 +16609,8 @@ entities: rot: 1.5707963267948966 rad pos: -117.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19026 components: - type: MetaData @@ -16272,6 +16618,8 @@ entities: - type: Transform pos: -122.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19028 components: - type: MetaData @@ -16280,6 +16628,8 @@ entities: rot: 1.5707963267948966 rad pos: -117.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19053 components: - type: MetaData @@ -16288,6 +16638,8 @@ entities: rot: -1.5707963267948966 rad pos: -122.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19075 components: - type: MetaData @@ -16296,6 +16648,8 @@ entities: rot: 3.141592653589793 rad pos: -121.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19156 components: - type: MetaData @@ -16303,6 +16657,8 @@ entities: - type: Transform pos: -136.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19157 components: - type: MetaData @@ -16311,6 +16667,8 @@ entities: rot: 3.141592653589793 rad pos: -140.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19764 components: - type: MetaData @@ -16319,6 +16677,8 @@ entities: rot: 3.141592653589793 rad pos: -88.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19812 components: - type: MetaData @@ -16327,6 +16687,8 @@ entities: rot: -1.5707963267948966 rad pos: -86.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19814 components: - type: MetaData @@ -16335,6 +16697,8 @@ entities: rot: -1.5707963267948966 rad pos: -97.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19815 components: - type: MetaData @@ -16343,6 +16707,8 @@ entities: rot: 3.141592653589793 rad pos: -86.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20011 components: - type: MetaData @@ -16350,6 +16716,8 @@ entities: - type: Transform pos: -92.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20851 components: - type: MetaData @@ -16357,6 +16725,8 @@ entities: - type: Transform pos: -35.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21872 components: - type: MetaData @@ -16365,6 +16735,8 @@ entities: rot: 1.5707963267948966 rad pos: -31.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22123 components: - type: MetaData @@ -16373,6 +16745,8 @@ entities: rot: 3.141592653589793 rad pos: -18.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22712 components: - type: MetaData @@ -16381,6 +16755,8 @@ entities: rot: -1.5707963267948966 rad pos: -50.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23178 components: - type: MetaData @@ -16389,11 +16765,15 @@ entities: rot: 3.141592653589793 rad pos: -94.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23212 components: - type: Transform pos: -98.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23671 components: - type: MetaData @@ -16401,6 +16781,8 @@ entities: - type: Transform pos: -57.5,-68.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24078 components: - type: MetaData @@ -16408,6 +16790,8 @@ entities: - type: Transform pos: -17.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25110 components: - type: MetaData @@ -16416,6 +16800,8 @@ entities: rot: 3.141592653589793 rad pos: -120.5,-88.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25136 components: - type: MetaData @@ -16423,6 +16809,8 @@ entities: - type: Transform pos: -119.5,-75.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25880 components: - type: MetaData @@ -16431,6 +16819,8 @@ entities: rot: 3.141592653589793 rad pos: -137.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25910 components: - type: MetaData @@ -16438,6 +16828,8 @@ entities: - type: Transform pos: -117.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25949 components: - type: MetaData @@ -16446,6 +16838,8 @@ entities: rot: -1.5707963267948966 rad pos: -73.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 26346 components: - type: MetaData @@ -16454,6 +16848,8 @@ entities: rot: 3.141592653589793 rad pos: -117.5,-69.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: APCHighCapacity entities: - uid: 2133 @@ -16464,6 +16860,8 @@ entities: rot: 3.141592653589793 rad pos: -64.5,1.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: APCHyperCapacity entities: - uid: 3246 @@ -16474,6 +16872,8 @@ entities: rot: -1.5707963267948966 rad pos: -70.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: AppraisalTool entities: - uid: 23940 @@ -16489,12 +16889,16 @@ entities: rot: 1.5707963267948966 rad pos: -32.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 26177 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ArtifactFragment1 entities: - uid: 5997 @@ -24161,6 +24565,8 @@ entities: - type: Transform pos: -70.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: BarSignEngineChange entities: - uid: 8776 @@ -24168,6 +24574,8 @@ entities: - type: Transform pos: -10.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: BarSignRobustaCafe entities: - uid: 15680 @@ -24175,11 +24583,15 @@ entities: - type: Transform pos: -64.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22381 components: - type: Transform pos: -20.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: BaseBallBat entities: - uid: 9740 @@ -25419,6 +25831,8 @@ entities: - type: Transform pos: -56.5,-68.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: BoxLatexGloves entities: - uid: 4183 @@ -25528,6 +25942,8 @@ entities: - AutoClose - - Start - Close + - type: Fixtures + fixtures: {} - uid: 14643 components: - type: Transform @@ -25543,6 +25959,8 @@ entities: - AutoClose - - Start - Close + - type: Fixtures + fixtures: {} - proto: Brutepack entities: - uid: 20642 @@ -64328,6 +64746,8 @@ entities: - type: Transform pos: -19.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: CleanerGrenade entities: - uid: 3324 @@ -68329,35 +68749,47 @@ entities: - type: Transform pos: -36.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4027 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4028 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4078 components: - type: Transform pos: -21.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4079 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13768 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: DeployableBarrier entities: - uid: 873 @@ -77628,64 +78060,86 @@ entities: - type: Transform pos: -107.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19505 components: - type: Transform rot: -1.5707963267948966 rad pos: -114.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24306 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24307 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24308 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24310 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24311 components: - type: Transform pos: -110.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24313 components: - type: Transform pos: -132.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24315 components: - type: Transform rot: 1.5707963267948966 rad pos: -123.5,-53.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24316 components: - type: Transform rot: -1.5707963267948966 rad pos: -111.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24317 components: - type: Transform rot: -1.5707963267948966 rad pos: -111.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ExtinguisherCabinetFilled entities: - uid: 3936 @@ -77693,47 +78147,63 @@ entities: - type: Transform pos: -36.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11237 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11238 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15346 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20952 components: - type: Transform pos: -116.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23939 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24321 components: - type: Transform rot: -1.5707963267948966 rad pos: -135.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24354 components: - type: Transform rot: -1.5707963267948966 rad pos: -135.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: FaxMachineBase entities: - uid: 3 @@ -77807,7 +78277,7 @@ entities: pos: -51.5,-7.5 parent: 2 - type: FaxMachine - name: Head of Personell + name: Head of Personnel - uid: 17656 components: - type: Transform @@ -78087,6 +78557,8 @@ entities: devices: - 1208 - 1122 + - type: Fixtures + fixtures: {} - uid: 1814 components: - type: Transform @@ -78106,6 +78578,8 @@ entities: - 14360 - 11805 - 24025 + - type: Fixtures + fixtures: {} - uid: 3288 components: - type: MetaData @@ -78137,6 +78611,8 @@ entities: - 2980 - 2987 - 6938 + - type: Fixtures + fixtures: {} - uid: 8155 components: - type: MetaData @@ -78150,6 +78626,8 @@ entities: - 5739 - 6601 - 8333 + - type: Fixtures + fixtures: {} - uid: 9164 components: - type: MetaData @@ -78166,6 +78644,8 @@ entities: - 14590 - 13444 - 13445 + - type: Fixtures + fixtures: {} - uid: 12768 components: - type: Transform @@ -78204,6 +78684,8 @@ entities: - 24779 - 24782 - 24783 + - type: Fixtures + fixtures: {} - uid: 12769 components: - type: Transform @@ -78232,6 +78714,8 @@ entities: - 23680 - 15676 - 23679 + - type: Fixtures + fixtures: {} - uid: 13490 components: - type: MetaData @@ -78243,6 +78727,8 @@ entities: - type: DeviceList devices: - 19610 + - type: Fixtures + fixtures: {} - uid: 13492 components: - type: MetaData @@ -78255,6 +78741,8 @@ entities: - 8955 - 13485 - 19610 + - type: Fixtures + fixtures: {} - uid: 13736 components: - type: Transform @@ -78266,6 +78754,8 @@ entities: - 13788 - 13847 - 17422 + - type: Fixtures + fixtures: {} - uid: 14953 components: - type: MetaData @@ -78285,6 +78775,8 @@ entities: - 14948 - 14354 - 13438 + - type: Fixtures + fixtures: {} - uid: 14954 components: - type: MetaData @@ -78302,6 +78794,8 @@ entities: - 19471 - 14948 - 14354 + - type: Fixtures + fixtures: {} - uid: 15026 components: - type: Transform @@ -78320,6 +78814,8 @@ entities: - 11108 - 9134 - 15358 + - type: Fixtures + fixtures: {} - uid: 15347 components: - type: MetaData @@ -78337,6 +78833,8 @@ entities: - 11816 - 23126 - 11802 + - type: Fixtures + fixtures: {} - uid: 16688 components: - type: Transform @@ -78358,6 +78856,8 @@ entities: - 14597 - 24130 - 24743 + - type: Fixtures + fixtures: {} - uid: 17419 components: - type: Transform @@ -78369,6 +78869,8 @@ entities: - 11936 - 17427 - 17432 + - type: Fixtures + fixtures: {} - uid: 17420 components: - type: Transform @@ -78383,6 +78885,8 @@ entities: - 17436 - 14618 - 20370 + - type: Fixtures + fixtures: {} - uid: 17833 components: - type: Transform @@ -78407,6 +78911,8 @@ entities: - 25593 - 20380 - 20371 + - type: Fixtures + fixtures: {} - uid: 17850 components: - type: Transform @@ -78425,6 +78931,8 @@ entities: - 25643 - 25642 - 15354 + - type: Fixtures + fixtures: {} - uid: 18317 components: - type: MetaData @@ -78438,6 +78946,8 @@ entities: - 25564 - 25565 - 14590 + - type: Fixtures + fixtures: {} - uid: 18819 components: - type: MetaData @@ -78446,6 +78956,8 @@ entities: rot: -1.5707963267948966 rad pos: -142.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19506 components: - type: MetaData @@ -78460,6 +78972,8 @@ entities: - 25565 - 25564 - 19517 + - type: Fixtures + fixtures: {} - uid: 19526 components: - type: MetaData @@ -78478,6 +78992,8 @@ entities: - 13447 - 13445 - 13444 + - type: Fixtures + fixtures: {} - uid: 19747 components: - type: Transform @@ -78492,6 +79008,8 @@ entities: - 9135 - 25638 - 24046 + - type: Fixtures + fixtures: {} - uid: 22327 components: - type: MetaData @@ -78508,6 +79026,8 @@ entities: - 2984 - 2983 - 6939 + - type: Fixtures + fixtures: {} - uid: 23991 components: - type: MetaData @@ -78522,6 +79042,8 @@ entities: - 11230 - 11231 - 14980 + - type: Fixtures + fixtures: {} - uid: 24300 components: - type: Transform @@ -78555,6 +79077,8 @@ entities: - 16404 - 23865 - 15365 + - type: Fixtures + fixtures: {} - uid: 24309 components: - type: Transform @@ -78569,6 +79093,8 @@ entities: - 22802 - 22797 - 15417 + - type: Fixtures + fixtures: {} - uid: 24312 components: - type: Transform @@ -78582,6 +79108,8 @@ entities: - 14162 - 11743 - 25584 + - type: Fixtures + fixtures: {} - uid: 24784 components: - type: Transform @@ -78598,6 +79126,8 @@ entities: - 23895 - 7808 - 7345 + - type: Fixtures + fixtures: {} - uid: 24785 components: - type: Transform @@ -78610,6 +79140,8 @@ entities: - 14877 - 11265 - 22171 + - type: Fixtures + fixtures: {} - uid: 25562 components: - type: MetaData @@ -78621,6 +79153,8 @@ entities: devices: - 25563 - 19520 + - type: Fixtures + fixtures: {} - uid: 25598 components: - type: Transform @@ -78631,6 +79165,8 @@ entities: devices: - 25597 - 8935 + - type: Fixtures + fixtures: {} - uid: 25599 components: - type: Transform @@ -78640,6 +79176,8 @@ entities: - type: DeviceList devices: - 8955 + - type: Fixtures + fixtures: {} - uid: 25600 components: - type: Transform @@ -78649,6 +79187,8 @@ entities: devices: - 7540 - 8996 + - type: Fixtures + fixtures: {} - uid: 25603 components: - type: Transform @@ -78664,6 +79204,8 @@ entities: - 13484 - 25597 - 8935 + - type: Fixtures + fixtures: {} - uid: 25604 components: - type: Transform @@ -78680,6 +79222,8 @@ entities: - 13620 - 13618 - 13765 + - type: Fixtures + fixtures: {} - uid: 25607 components: - type: Transform @@ -78690,6 +79234,8 @@ entities: - 14596 - 13447 - 13446 + - type: Fixtures + fixtures: {} - uid: 25640 components: - type: Transform @@ -78707,6 +79253,8 @@ entities: - 8989 - 8976 - 9069 + - type: Fixtures + fixtures: {} - uid: 25641 components: - type: Transform @@ -78720,6 +79268,8 @@ entities: - 8976 - 9069 - 15039 + - type: Fixtures + fixtures: {} - uid: 25645 components: - type: Transform @@ -78733,6 +79283,8 @@ entities: - 5742 - 11105 - 15357 + - type: Fixtures + fixtures: {} - uid: 25647 components: - type: Transform @@ -78753,6 +79305,8 @@ entities: - 8778 - 8777 - 15355 + - type: Fixtures + fixtures: {} - uid: 25648 components: - type: Transform @@ -78765,6 +79319,8 @@ entities: - 5843 - 5827 - 15360 + - type: Fixtures + fixtures: {} - uid: 25649 components: - type: Transform @@ -78783,6 +79339,8 @@ entities: - 19613 - 14947 - 25653 + - type: Fixtures + fixtures: {} - uid: 26109 components: - type: Transform @@ -78803,6 +79361,8 @@ entities: - 25635 - 25634 - 15353 + - type: Fixtures + fixtures: {} - uid: 26263 components: - type: Transform @@ -78820,6 +79380,8 @@ entities: - 18609 - 26276 - 18829 + - type: Fixtures + fixtures: {} - uid: 26264 components: - type: Transform @@ -78830,6 +79392,8 @@ entities: devices: - 7039 - 26266 + - type: Fixtures + fixtures: {} - uid: 26265 components: - type: Transform @@ -78847,6 +79411,8 @@ entities: - 16009 - 16948 - 16010 + - type: Fixtures + fixtures: {} - proto: FireAxeCabinetFilled entities: - uid: 7884 @@ -78855,11 +79421,15 @@ entities: rot: 3.141592653589793 rad pos: -62.5,1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25990 components: - type: Transform pos: -117.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: FireExtinguisher entities: - uid: 9441 @@ -83253,7 +83823,7 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,-26.5 parent: 2 -- proto: FoodDonutJellySlugcat +- proto: FoodDonutJellyScurret entities: - uid: 18408 components: @@ -83403,6 +83973,8 @@ entities: rot: 3.141592653589793 rad pos: -112.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: GameMasterCircuitBoard entities: - uid: 24943 @@ -126031,42 +126603,56 @@ entities: rot: 3.141592653589793 rad pos: -61.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23352 components: - type: Transform rot: 3.141592653589793 rad pos: -60.5,1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23353 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23354 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25394 components: - type: Transform rot: 1.5707963267948966 rad pos: -121.5,-83.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25395 components: - type: Transform rot: 3.141592653589793 rad pos: -120.5,-84.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25396 components: - type: Transform rot: -1.5707963267948966 rad pos: -119.5,-83.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomCommand entities: - uid: 23355 @@ -126075,6 +126661,8 @@ entities: rot: 1.5707963267948966 rad pos: -65.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomCommon entities: - uid: 1224 @@ -126083,34 +126671,46 @@ entities: rot: -1.5707963267948966 rad pos: -42.5,-66.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16529 components: - type: Transform pos: -62.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16654 components: - type: Transform rot: -1.5707963267948966 rad pos: -81.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23357 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25844 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25925 components: - type: Transform pos: -101.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomEngineering entities: - uid: 4699 @@ -126119,41 +126719,55 @@ entities: rot: 1.5707963267948966 rad pos: -124.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16928 components: - type: Transform rot: 3.141592653589793 rad pos: -112.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23030 components: - type: Transform rot: 3.141592653589793 rad pos: -122.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23342 components: - type: Transform pos: -123.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23343 components: - type: Transform rot: 3.141592653589793 rad pos: -140.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23344 components: - type: Transform rot: -1.5707963267948966 rad pos: -112.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25611 components: - type: Transform rot: 1.5707963267948966 rad pos: -132.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomMedical entities: - uid: 13759 @@ -126162,41 +126776,55 @@ entities: rot: 3.141592653589793 rad pos: -36.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13761 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17025 components: - type: Transform pos: -31.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17745 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25845 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25846 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25847 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomScience entities: - uid: 12734 @@ -126204,12 +126832,16 @@ entities: - type: Transform pos: -122.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25843 components: - type: Transform rot: -1.5707963267948966 rad pos: -132.5,-46.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomSecurity entities: - uid: 2170 @@ -126218,33 +126850,45 @@ entities: rot: -1.5707963267948966 rad pos: -85.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18421 components: - type: Transform pos: -98.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22319 components: - type: Transform rot: 3.141592653589793 rad pos: -97.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23345 components: - type: Transform pos: -91.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23349 components: - type: Transform rot: -1.5707963267948966 rad pos: -81.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 26280 components: - type: Transform pos: -93.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomService entities: - uid: 22320 @@ -126253,12 +126897,16 @@ entities: rot: -1.5707963267948966 rad pos: -56.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25652 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomSupply entities: - uid: 22321 @@ -126266,29 +126914,39 @@ entities: - type: Transform pos: -98.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25606 components: - type: Transform rot: 3.141592653589793 rad pos: -91.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25608 components: - type: Transform pos: -91.5,31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25609 components: - type: Transform rot: 1.5707963267948966 rad pos: -87.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25610 components: - type: Transform rot: 3.141592653589793 rad pos: -89.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: JanitorialTrolley entities: - uid: 7826 @@ -126669,6 +127327,8 @@ entities: currentLabel: Plasma Storage Vent - type: NameModifier baseName: lockable button + - type: Fixtures + fixtures: {} - uid: 5326 components: - type: MetaData @@ -126685,6 +127345,8 @@ entities: currentLabel: Burn Chamber Vent - type: NameModifier baseName: lockable button + - type: Fixtures + fixtures: {} - proto: LockableButtonCommand entities: - uid: 11190 @@ -126698,6 +127360,8 @@ entities: 4662: - - Pressed - Trigger + - type: Fixtures + fixtures: {} - proto: LockableButtonEngineering entities: - uid: 5991 @@ -126723,6 +127387,8 @@ entities: currentLabel: EMERGENCY VENT - type: NameModifier baseName: lockable button + - type: Fixtures + fixtures: {} - uid: 6167 components: - type: MetaData @@ -126745,6 +127411,8 @@ entities: currentLabel: EMERGENCY VENT - type: NameModifier baseName: lockable button + - type: Fixtures + fixtures: {} - proto: LockableButtonMaintenance entities: - uid: 7242 @@ -126758,6 +127426,8 @@ entities: 20188: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 8824 components: - type: Transform @@ -126769,6 +127439,8 @@ entities: 8812: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - proto: LockableButtonMedical entities: - uid: 2458 @@ -126785,6 +127457,8 @@ entities: 5752: - - Pressed - Open + - type: Fixtures + fixtures: {} - uid: 2607 components: - type: MetaData @@ -126804,6 +127478,8 @@ entities: currentLabel: Front Door - type: NameModifier baseName: lockable button + - type: Fixtures + fixtures: {} - uid: 3989 components: - type: Transform @@ -126817,6 +127493,8 @@ entities: 3988: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 4192 components: - type: Transform @@ -126834,6 +127512,8 @@ entities: 4189: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonSecurity entities: - uid: 1099 @@ -126864,6 +127544,8 @@ entities: 20826: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 13487 components: - type: MetaData @@ -126893,6 +127575,8 @@ entities: currentLabel: Entrance Lockdown - type: NameModifier baseName: lockable button + - type: Fixtures + fixtures: {} - proto: LockerAtmosphericsFilled entities: - uid: 5383 @@ -128531,55 +129215,75 @@ entities: rot: 1.5707963267948966 rad pos: -56.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3822 components: - type: Transform rot: -1.5707963267948966 rad pos: -62.5,-59.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3823 components: - type: Transform rot: -1.5707963267948966 rad pos: -62.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4204 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4510 components: - type: Transform rot: 1.5707963267948966 rad pos: -86.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6160 components: - type: Transform pos: -111.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6161 components: - type: Transform pos: -109.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7555 components: - type: Transform pos: -130.5,-49.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7556 components: - type: Transform pos: -128.5,-49.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11241 components: - type: Transform pos: -43.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24671 components: - type: MetaData @@ -128589,6 +129293,8 @@ entities: rot: 3.141592653589793 rad pos: -69.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: MopBucketFull entities: - uid: 15958 @@ -128861,16 +129567,22 @@ entities: - type: Transform pos: -125.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14644 components: - type: Transform pos: -97.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22362 components: - type: Transform pos: -34.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: NTDefaultCircuitBoard entities: - uid: 24944 @@ -129900,6 +130612,8 @@ entities: - type: Transform pos: -23.5,-70.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PirateHandyFlag entities: - uid: 24564 @@ -130505,6 +131219,8 @@ entities: - type: Transform pos: -50.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandClown entities: - uid: 23075 @@ -130512,6 +131228,8 @@ entities: - type: Transform pos: -115.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandEAT entities: - uid: 23058 @@ -130519,6 +131237,8 @@ entities: - type: Transform pos: -51.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandGreyTide entities: - uid: 23070 @@ -130526,6 +131246,8 @@ entities: - type: Transform pos: -24.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandLamarr entities: - uid: 7596 @@ -130533,6 +131255,8 @@ entities: - type: Transform pos: -133.5,-49.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandMissingGloves entities: - uid: 23069 @@ -130542,6 +131266,8 @@ entities: - type: Transform pos: -27.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandMissingSpacepen entities: - uid: 23071 @@ -130549,6 +131275,8 @@ entities: - type: Transform pos: -41.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandNuclearDeviceInformational entities: - uid: 21061 @@ -130557,6 +131285,8 @@ entities: rot: 3.141592653589793 rad pos: -76.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandPunchShit entities: - uid: 23120 @@ -130564,6 +131294,8 @@ entities: - type: Transform pos: -48.5,-69.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandTools entities: - uid: 23023 @@ -130571,6 +131303,8 @@ entities: - type: Transform pos: -113.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandWehWatches entities: - uid: 16594 @@ -130578,81 +131312,113 @@ entities: - type: Transform pos: -134.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16595 components: - type: Transform pos: -134.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16602 components: - type: Transform pos: -133.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16603 components: - type: Transform pos: -132.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17090 components: - type: Transform pos: -131.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22414 components: - type: Transform pos: -134.5,27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22415 components: - type: Transform pos: -134.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22416 components: - type: Transform pos: -134.5,28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22417 components: - type: Transform pos: -133.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22418 components: - type: Transform pos: -131.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22419 components: - type: Transform pos: -130.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22420 components: - type: Transform pos: -132.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22422 components: - type: Transform pos: -130.5,27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22423 components: - type: Transform pos: -130.5,28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22424 components: - type: Transform pos: -130.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22425 components: - type: Transform pos: -130.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegit12Gauge entities: - uid: 26354 @@ -130661,6 +131427,8 @@ entities: rot: -1.5707963267948966 rad pos: -83.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitAnatomyPoster entities: - uid: 12565 @@ -130668,6 +131436,8 @@ entities: - type: Transform pos: -34.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitBlessThisSpess entities: - uid: 25465 @@ -130676,6 +131446,8 @@ entities: rot: 3.141592653589793 rad pos: -63.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitCarpMount entities: - uid: 74 @@ -130683,6 +131455,8 @@ entities: - type: Transform pos: -48.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitDickGumshue entities: - uid: 18364 @@ -130690,6 +131464,8 @@ entities: - type: Transform pos: -96.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitIan entities: - uid: 23057 @@ -130697,6 +131473,8 @@ entities: - type: Transform pos: -47.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitJustAWeekAway entities: - uid: 2468 @@ -130704,6 +131482,8 @@ entities: - type: Transform pos: -20.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitNanotrasenLogo entities: - uid: 19620 @@ -130711,16 +131491,22 @@ entities: - type: Transform pos: -95.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23059 components: - type: Transform pos: -63.5,1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23060 components: - type: Transform pos: -59.5,1.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitNoERP entities: - uid: 14841 @@ -130729,16 +131515,22 @@ entities: rot: 1.5707963267948966 rad pos: -80.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21550 components: - type: Transform pos: -59.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23201 components: - type: Transform pos: -35.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitObey entities: - uid: 10374 @@ -130747,6 +131539,8 @@ entities: rot: 1.5707963267948966 rad pos: -31.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitPeriodicTable entities: - uid: 2486 @@ -130754,6 +131548,8 @@ entities: - type: Transform pos: -41.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitRenault entities: - uid: 23061 @@ -130761,6 +131557,8 @@ entities: - type: Transform pos: -53.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothDelam entities: - uid: 23029 @@ -130768,6 +131566,8 @@ entities: - type: Transform pos: -116.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothEpi entities: - uid: 25639 @@ -130776,6 +131576,8 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothHardhat entities: - uid: 23062 @@ -130783,6 +131585,8 @@ entities: - type: Transform pos: -117.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothMeth entities: - uid: 4270 @@ -130790,6 +131594,8 @@ entities: - type: Transform pos: -35.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothPiping entities: - uid: 16908 @@ -130797,6 +131603,8 @@ entities: - type: Transform pos: -142.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyReport entities: - uid: 23068 @@ -130804,6 +131612,8 @@ entities: - type: Transform pos: -89.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSecWatch entities: - uid: 18598 @@ -130811,11 +131621,15 @@ entities: - type: Transform pos: -91.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23065 components: - type: Transform pos: -98.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSpaceCops entities: - uid: 23067 @@ -130823,6 +131637,8 @@ entities: - type: Transform pos: -85.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitWorkForAFuture entities: - uid: 22504 @@ -130830,6 +131646,8 @@ entities: - type: Transform pos: -93.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PottedPlant27 entities: - uid: 5611 @@ -138068,103 +138886,143 @@ entities: rot: 3.141592653589793 rad pos: -59.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20938 components: - type: Transform pos: -36.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23792 components: - type: Transform pos: -111.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23795 components: - type: Transform pos: -122.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23819 components: - type: Transform pos: -67.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23859 components: - type: Transform pos: -67.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23861 components: - type: Transform pos: -55.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24511 components: - type: Transform pos: -65.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24512 components: - type: Transform pos: -57.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24513 components: - type: Transform pos: -48.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24514 components: - type: Transform pos: -22.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24516 components: - type: Transform pos: -34.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24517 components: - type: Transform pos: -5.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24518 components: - type: Transform pos: -9.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24519 components: - type: Transform pos: -61.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24520 components: - type: Transform pos: -106.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24521 components: - type: Transform pos: -103.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24522 components: - type: Transform pos: -58.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25466 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25467 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: Screwdriver entities: - uid: 6280 @@ -138434,6 +139292,8 @@ entities: rot: -1.5707963267948966 rad pos: -66.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ShelfWood entities: - uid: 2907 @@ -138441,6 +139301,8 @@ entities: - type: Transform pos: -46.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ShellTranquilizer entities: - uid: 11626 @@ -138479,6 +139341,8 @@ entities: - type: Transform pos: -88.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ShotGunCabinetOpen entities: - uid: 23750 @@ -138487,6 +139351,8 @@ entities: rot: 3.141592653589793 rad pos: -24.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: Shovel entities: - uid: 22014 @@ -139168,12 +140034,16 @@ entities: - type: Transform pos: -119.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25372 components: - type: Transform rot: 1.5707963267948966 rad pos: -118.5,-75.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignAiUpload entities: - uid: 25373 @@ -139182,6 +140052,8 @@ entities: rot: 1.5707963267948966 rad pos: -118.5,-69.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignalButton entities: - uid: 5657 @@ -139203,6 +140075,8 @@ entities: currentLabel: Burn Chamber Vent - type: NameModifier baseName: signal button + - type: Fixtures + fixtures: {} - uid: 5989 components: - type: MetaData @@ -139220,6 +140094,8 @@ entities: currentLabel: Vent Chamber - type: NameModifier baseName: signal button + - type: Fixtures + fixtures: {} - uid: 13140 components: - type: Transform @@ -139233,6 +140109,8 @@ entities: 13042: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 13435 components: - type: MetaData @@ -139249,6 +140127,8 @@ entities: 1763: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 17823 components: - type: MetaData @@ -139269,6 +140149,8 @@ entities: currentLabel: Open Doors - type: NameModifier baseName: signal button + - type: Fixtures + fixtures: {} - uid: 20897 components: - type: MetaData @@ -139291,6 +140173,8 @@ entities: 20831: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: SignalButtonDirectional entities: - uid: 1481 @@ -139304,6 +140188,8 @@ entities: 3776: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 1521 components: - type: Transform @@ -139315,6 +140201,8 @@ entities: 3779: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 2591 components: - type: MetaData @@ -139331,6 +140219,8 @@ entities: currentLabel: Space Blast Doors - type: NameModifier baseName: signal button + - type: Fixtures + fixtures: {} - uid: 3619 components: - type: Transform @@ -139342,6 +140232,8 @@ entities: 3780: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 3810 components: - type: Transform @@ -139352,6 +140244,8 @@ entities: 3771: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 3811 components: - type: Transform @@ -139362,6 +140256,8 @@ entities: 3772: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 4222 components: - type: Transform @@ -139373,6 +140269,8 @@ entities: 4096: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 6068 components: - type: MetaData @@ -139389,6 +140287,8 @@ entities: currentLabel: Ignite Chamber - type: NameModifier baseName: signal button + - type: Fixtures + fixtures: {} - uid: 6069 components: - type: MetaData @@ -139405,6 +140305,8 @@ entities: currentLabel: Vent Chamber - type: NameModifier baseName: signal button + - type: Fixtures + fixtures: {} - uid: 6163 components: - type: Transform @@ -139416,6 +140318,8 @@ entities: 6157: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 6164 components: - type: Transform @@ -139427,6 +140331,8 @@ entities: 6156: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 6168 components: - type: MetaData @@ -139443,6 +140349,8 @@ entities: currentLabel: Vent Chamber - type: NameModifier baseName: signal button + - type: Fixtures + fixtures: {} - uid: 6169 components: - type: MetaData @@ -139459,6 +140367,8 @@ entities: currentLabel: Ignite Chamber - type: NameModifier baseName: signal button + - type: Fixtures + fixtures: {} - uid: 10638 components: - type: Transform @@ -139470,6 +140380,8 @@ entities: 4662: - - Pressed - Trigger + - type: Fixtures + fixtures: {} - uid: 19541 components: - type: MetaData @@ -139487,6 +140399,8 @@ entities: currentLabel: Dock Blast Doors - type: NameModifier baseName: signal button + - type: Fixtures + fixtures: {} - uid: 19560 components: - type: MetaData @@ -139504,6 +140418,8 @@ entities: currentLabel: Dock Blast Doors - type: NameModifier baseName: signal button + - type: Fixtures + fixtures: {} - uid: 19735 components: - type: MetaData @@ -139521,6 +140437,8 @@ entities: currentLabel: Salvage Blast Doors - type: NameModifier baseName: signal button + - type: Fixtures + fixtures: {} - uid: 19741 components: - type: MetaData @@ -139538,6 +140456,8 @@ entities: currentLabel: Disposals Blast Doors - type: NameModifier baseName: signal button + - type: Fixtures + fixtures: {} - uid: 21465 components: - type: MetaData @@ -139555,6 +140475,8 @@ entities: currentLabel: Disposals Blast Doors - type: NameModifier baseName: signal button + - type: Fixtures + fixtures: {} - uid: 22347 components: - type: MetaData @@ -139571,6 +140493,8 @@ entities: currentLabel: Space Blast Doors - type: NameModifier baseName: signal button + - type: Fixtures + fixtures: {} - uid: 24029 components: - type: Transform @@ -139582,6 +140506,8 @@ entities: 14940: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 25417 components: - type: Transform @@ -139593,6 +140519,8 @@ entities: 12466: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 25418 components: - type: Transform @@ -139604,6 +140532,8 @@ entities: 12043: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - proto: SignalSwitch entities: - uid: 1217 @@ -139629,6 +140559,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 1220 components: - type: Transform @@ -139652,6 +140584,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 2791 components: - type: MetaData @@ -139694,6 +140628,8 @@ entities: currentLabel: Bridge Entrance Blastdoors - type: NameModifier baseName: signal switch + - type: Fixtures + fixtures: {} - uid: 2792 components: - type: MetaData @@ -139797,6 +140733,8 @@ entities: currentLabel: Bridge Window Blastdoors - type: NameModifier baseName: signal switch + - type: Fixtures + fixtures: {} - uid: 2965 components: - type: MetaData @@ -139824,6 +140762,8 @@ entities: currentLabel: Line Shutters - type: NameModifier baseName: signal switch + - type: Fixtures + fixtures: {} - uid: 2999 components: - type: MetaData @@ -139872,6 +140812,8 @@ entities: currentLabel: Window Shutters - type: NameModifier baseName: signal switch + - type: Fixtures + fixtures: {} - uid: 4618 components: - type: Transform @@ -139884,6 +140826,8 @@ entities: - On - - Off - Off + - type: Fixtures + fixtures: {} - uid: 7079 components: - type: Transform @@ -139897,6 +140841,8 @@ entities: - On - - Off - Off + - type: Fixtures + fixtures: {} - uid: 7335 components: - type: MetaData @@ -139921,6 +140867,8 @@ entities: currentLabel: Warehouse Shutters - type: NameModifier baseName: signal switch + - type: Fixtures + fixtures: {} - uid: 8624 components: - type: Transform @@ -139948,6 +140896,8 @@ entities: - Close lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 11613 components: - type: Transform @@ -139974,6 +140924,8 @@ entities: - Close lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 11614 components: - type: Transform @@ -140001,6 +140953,8 @@ entities: - Close lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 17822 components: - type: MetaData @@ -140034,6 +140988,8 @@ entities: currentLabel: Desk Shutters - type: NameModifier baseName: signal switch + - type: Fixtures + fixtures: {} - uid: 22376 components: - type: Transform @@ -140057,6 +141013,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 25663 components: - type: MetaData @@ -140076,6 +141034,8 @@ entities: currentLabel: Janitor Light - type: NameModifier baseName: signal switch + - type: Fixtures + fixtures: {} - proto: SignalSwitchDirectional entities: - uid: 280 @@ -140101,6 +141061,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 3053 components: - type: Transform @@ -140133,6 +141095,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 3834 components: - type: Transform @@ -140165,6 +141129,8 @@ entities: - Close lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 3974 components: - type: MetaData @@ -140199,6 +141165,8 @@ entities: currentLabel: Paramedic Shutters - type: NameModifier baseName: signal switch + - type: Fixtures + fixtures: {} - uid: 3996 components: - type: Transform @@ -140226,6 +141194,8 @@ entities: - Close lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 8067 components: - type: Transform @@ -140248,6 +141218,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 8073 components: - type: Transform @@ -140271,6 +141243,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 8662 components: - type: MetaData @@ -140299,6 +141273,8 @@ entities: currentLabel: Shutters - type: NameModifier baseName: signal switch + - type: Fixtures + fixtures: {} - uid: 8823 components: - type: Transform @@ -140321,6 +141297,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 12308 components: - type: MetaData @@ -140337,6 +141315,8 @@ entities: currentLabel: Door Bolt - type: NameModifier baseName: signal switch + - type: Fixtures + fixtures: {} - uid: 16924 components: - type: Transform @@ -140365,6 +141345,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 17488 components: - type: Transform @@ -140387,6 +141369,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 19538 components: - type: MetaData @@ -140441,6 +141425,8 @@ entities: currentLabel: Privacy Shutters - type: NameModifier baseName: signal switch + - type: Fixtures + fixtures: {} - uid: 24320 components: - type: MetaData @@ -140474,6 +141460,8 @@ entities: currentLabel: Emergency Lockdown - type: NameModifier baseName: signal switch + - type: Fixtures + fixtures: {} - uid: 24811 components: - type: Transform @@ -140496,6 +141484,8 @@ entities: - Close lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 25393 components: - type: Transform @@ -140568,6 +141558,8 @@ entities: - Close lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 25397 components: - type: Transform @@ -140594,6 +141586,8 @@ entities: - Close lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 25613 components: - type: Transform @@ -140606,6 +141600,8 @@ entities: - On - - Off - Off + - type: Fixtures + fixtures: {} - uid: 25656 components: - type: Transform @@ -140619,6 +141615,8 @@ entities: - On - - Off - Off + - type: Fixtures + fixtures: {} - uid: 25659 components: - type: Transform @@ -140631,6 +141629,8 @@ entities: - On - - Off - Off + - type: Fixtures + fixtures: {} - uid: 25661 components: - type: Transform @@ -140644,6 +141644,8 @@ entities: - On - - Off - Off + - type: Fixtures + fixtures: {} - uid: 25694 components: - type: Transform @@ -140676,6 +141678,8 @@ entities: - Close lastSignals: Status: True + - type: Fixtures + fixtures: {} - proto: SignalTimer entities: - uid: 4662 @@ -140691,6 +141695,8 @@ entities: - Open - - Timer - Close + - type: Fixtures + fixtures: {} - uid: 16763 components: - type: Transform @@ -140704,6 +141710,8 @@ entities: - Open - - Timer - Close + - type: Fixtures + fixtures: {} - proto: SignAnomaly entities: - uid: 8081 @@ -140711,6 +141719,8 @@ entities: - type: Transform pos: -137.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignAnomaly2 entities: - uid: 7372 @@ -140718,6 +141728,8 @@ entities: - type: Transform pos: -131.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignArcade entities: - uid: 16484 @@ -140726,6 +141738,8 @@ entities: rot: 3.141592653589793 rad pos: -22.5,14.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignArmory entities: - uid: 15880 @@ -140734,6 +141748,8 @@ entities: rot: 1.5707963267948966 rad pos: -81.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignAtmos entities: - uid: 25602 @@ -140742,6 +141758,8 @@ entities: rot: 3.141592653589793 rad pos: -117.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBar entities: - uid: 15030 @@ -140749,6 +141767,8 @@ entities: - type: Transform pos: -66.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBath entities: - uid: 16049 @@ -140756,6 +141776,8 @@ entities: - type: Transform pos: -86.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBiohazardMed entities: - uid: 2507 @@ -140763,12 +141785,16 @@ entities: - type: Transform pos: -27.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9210 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-57.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBridge entities: - uid: 19161 @@ -140776,11 +141802,15 @@ entities: - type: Transform pos: -65.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24510 components: - type: Transform pos: -57.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCans entities: - uid: 5805 @@ -140789,6 +141819,8 @@ entities: rot: 1.5707963267948966 rad pos: -114.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCargo entities: - uid: 16508 @@ -140796,6 +141828,8 @@ entities: - type: Transform pos: -97.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignChapel entities: - uid: 1305 @@ -140804,6 +141838,8 @@ entities: rot: 1.5707963267948966 rad pos: -55.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignChem entities: - uid: 2494 @@ -140811,6 +141847,8 @@ entities: - type: Transform pos: -35.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCloning entities: - uid: 4199 @@ -140819,6 +141857,8 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCryo entities: - uid: 2500 @@ -140826,12 +141866,16 @@ entities: - type: Transform pos: -27.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19590 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCryogenicsMed entities: - uid: 4207 @@ -140840,6 +141884,8 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalAtmos entities: - uid: 812 @@ -140848,12 +141894,16 @@ entities: rot: -1.5707963267948966 rad pos: -106.5,-8.4 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24161 components: - type: Transform rot: -1.5707963267948966 rad pos: -97.5,17.8 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalBar entities: - uid: 24507 @@ -140862,6 +141912,8 @@ entities: rot: 3.141592653589793 rad pos: -66.5,-50.4 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalBridge entities: - uid: 15237 @@ -140869,18 +141921,24 @@ entities: - type: Transform pos: -100.5,-0.3 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15867 components: - type: Transform rot: 1.5707963267948966 rad pos: -99.5,-11.4 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19889 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-10.2 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalChapel entities: - uid: 15862 @@ -140888,12 +141946,16 @@ entities: - type: Transform pos: -62.5,-36.6 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24506 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.5,-50.6 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalCryo entities: - uid: 15869 @@ -140902,17 +141964,23 @@ entities: rot: 1.5707963267948966 rad pos: -99.5,-11.2 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19904 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-50.2 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20531 components: - type: Transform pos: -65.5,-13.8 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalDorms entities: - uid: 14096 @@ -140921,11 +141989,15 @@ entities: rot: 1.5707963267948966 rad pos: -75.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24508 components: - type: Transform pos: -66.5,-50.6 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalEng entities: - uid: 6564 @@ -140934,54 +142006,72 @@ entities: rot: 3.141592653589793 rad pos: -106.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14748 components: - type: Transform rot: -1.5707963267948966 rad pos: -101.5,-11.4 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15234 components: - type: Transform rot: -1.5707963267948966 rad pos: -105.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15849 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-13.2 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19897 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-10.4 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23338 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23361 components: - type: Transform rot: 3.141592653589793 rad pos: -106.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24488 components: - type: Transform rot: -1.5707963267948966 rad pos: -106.5,-8.6 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25469 components: - type: Transform rot: -1.5707963267948966 rad pos: -76.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalEvac entities: - uid: 9028 @@ -140990,47 +142080,63 @@ entities: rot: 3.141592653589793 rad pos: -101.5,-21.3 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15858 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,-13.4 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15868 components: - type: Transform rot: 1.5707963267948966 rad pos: -99.5,-11.6 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18780 components: - type: Transform rot: 3.141592653589793 rad pos: -101.5,-36.3 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19756 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-11.7 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19901 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-10.4 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20803 components: - type: Transform pos: -100.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25470 components: - type: Transform rot: 1.5707963267948966 rad pos: -76.5,-11.7 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalFood entities: - uid: 3646 @@ -141039,23 +142145,31 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,-10.6 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15856 components: - type: Transform pos: -57.5,-13.8 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19164 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-50.4 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24503 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-36.4 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalHop entities: - uid: 19721 @@ -141064,6 +142178,8 @@ entities: rot: 3.141592653589793 rad pos: -54.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalHydro entities: - uid: 19162 @@ -141072,12 +142188,16 @@ entities: rot: 3.141592653589793 rad pos: -62.5,-50.2 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24504 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-36.2 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalJanitor entities: - uid: 24493 @@ -141086,6 +142206,8 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalLibrary entities: - uid: 3653 @@ -141094,17 +142216,23 @@ entities: rot: 1.5707963267948966 rad pos: -55.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7554 components: - type: Transform pos: -62.5,-36.8 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24505 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.5,-50.8 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalMed entities: - uid: 6487 @@ -141113,46 +142241,62 @@ entities: rot: 3.141592653589793 rad pos: -101.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11833 components: - type: Transform pos: -27.5,-10.8 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15743 components: - type: Transform pos: -100.5,-0.7 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15857 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,-13.6 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15870 components: - type: Transform rot: 1.5707963267948966 rad pos: -99.5,-11.8 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18942 components: - type: Transform rot: 3.141592653589793 rad pos: -101.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22636 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-15.3 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25471 components: - type: Transform rot: 1.5707963267948966 rad pos: -76.5,-15.3 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSalvage entities: - uid: 4603 @@ -141161,6 +142305,8 @@ entities: rot: -1.5707963267948966 rad pos: -97.5,23.8 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSci entities: - uid: 994 @@ -141168,45 +142314,61 @@ entities: - type: Transform pos: -106.5,-21.7 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3662 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-10.8 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12470 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-15.7 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15236 components: - type: Transform pos: -105.5,-0.7 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15851 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-13.6 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15865 components: - type: Transform pos: -101.5,-11.8 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17092 components: - type: Transform pos: -106.5,-36.7 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25473 components: - type: Transform rot: -1.5707963267948966 rad pos: -76.5,-15.7 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSec entities: - uid: 8985 @@ -141214,42 +142376,56 @@ entities: - type: Transform pos: -101.5,-21.7 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15852 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-13.4 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15871 components: - type: Transform rot: 1.5707963267948966 rad pos: -101.5,-11.6 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16503 components: - type: Transform rot: 3.141592653589793 rad pos: -101.5,-36.7 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19966 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-10.6 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23720 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25472 components: - type: Transform rot: -1.5707963267948966 rad pos: -76.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSolar entities: - uid: 1028 @@ -141258,57 +142434,77 @@ entities: rot: 3.141592653589793 rad pos: -16.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13228 components: - type: Transform pos: -16.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17458 components: - type: Transform rot: -1.5707963267948966 rad pos: -135.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 26113 components: - type: Transform rot: -1.5707963267948966 rad pos: -107.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 26168 components: - type: Transform pos: -135.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 26169 components: - type: Transform rot: 3.141592653589793 rad pos: -135.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 26170 components: - type: Transform rot: -1.5707963267948966 rad pos: -135.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 26172 components: - type: Transform pos: -16.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 26173 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 26174 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSupply entities: - uid: 1933 @@ -141317,60 +142513,80 @@ entities: rot: 3.141592653589793 rad pos: -106.5,-36.3 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4633 components: - type: Transform rot: -1.5707963267948966 rad pos: -97.5,17.2 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4635 components: - type: Transform rot: 1.5707963267948966 rad pos: -106.5,17.8 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9345 components: - type: Transform rot: 3.141592653589793 rad pos: -106.5,-21.3 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15235 components: - type: Transform rot: 3.141592653589793 rad pos: -105.5,-0.3 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15866 components: - type: Transform rot: 3.141592653589793 rad pos: -101.5,-11.2 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19890 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-11.3 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19912 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-10.2 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20570 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-13.2 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25468 components: - type: Transform rot: -1.5707963267948966 rad pos: -76.5,-11.3 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDisposalSpace entities: - uid: 20769 @@ -141378,6 +142594,8 @@ entities: - type: Transform pos: -101.5,25.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignElectricalMed entities: - uid: 18084 @@ -141385,21 +142603,29 @@ entities: - type: Transform pos: -129.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19175 components: - type: Transform pos: -132.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19176 components: - type: Transform pos: -124.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19490 components: - type: Transform pos: -139.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEngine entities: - uid: 15883 @@ -141408,6 +142634,8 @@ entities: rot: 1.5707963267948966 rad pos: -132.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEngineering entities: - uid: 19165 @@ -141416,12 +142644,16 @@ entities: rot: 3.141592653589793 rad pos: -113.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19643 components: - type: Transform rot: 3.141592653589793 rad pos: -117.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEscapePods entities: - uid: 13227 @@ -141430,29 +142662,39 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17539 components: - type: Transform pos: -133.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22995 components: - type: Transform rot: -1.5707963267948966 rad pos: -103.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23006 components: - type: Transform rot: 1.5707963267948966 rad pos: -79.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 26171 components: - type: Transform rot: -1.5707963267948966 rad pos: -135.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEVA entities: - uid: 15900 @@ -141461,11 +142703,15 @@ entities: rot: -1.5707963267948966 rad pos: -31.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24566 components: - type: Transform pos: -34.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignExamroom entities: - uid: 25637 @@ -141473,6 +142719,8 @@ entities: - type: Transform pos: -31.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignFire entities: - uid: 5538 @@ -141481,35 +142729,47 @@ entities: rot: -1.5707963267948966 rad pos: -114.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5662 components: - type: Transform rot: -1.5707963267948966 rad pos: -112.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5663 components: - type: Transform rot: -1.5707963267948966 rad pos: -108.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5664 components: - type: Transform rot: -1.5707963267948966 rad pos: -112.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5665 components: - type: Transform rot: -1.5707963267948966 rad pos: -108.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19492 components: - type: Transform pos: -142.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignFlammableMed entities: - uid: 1519 @@ -141517,35 +142777,47 @@ entities: - type: Transform pos: -92.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8224 components: - type: Transform pos: -90.5,-59.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8290 components: - type: Transform rot: 1.5707963267948966 rad pos: -106.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8293 components: - type: Transform rot: 1.5707963267948966 rad pos: -106.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8295 components: - type: Transform rot: 1.5707963267948966 rad pos: -106.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8298 components: - type: Transform rot: 1.5707963267948966 rad pos: -106.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignGenpop entities: - uid: 9126 @@ -141554,6 +142826,8 @@ entities: rot: 1.5707963267948966 rad pos: -93.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignGravity entities: - uid: 6196 @@ -141561,6 +142835,8 @@ entities: - type: Transform pos: -121.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignHead entities: - uid: 15420 @@ -141568,6 +142844,8 @@ entities: - type: Transform pos: -31.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignHydro1 entities: - uid: 348 @@ -141575,6 +142853,8 @@ entities: - type: Transform pos: -56.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignInterrogation entities: - uid: 15913 @@ -141583,6 +142863,8 @@ entities: rot: 1.5707963267948966 rad pos: -89.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignJanitor entities: - uid: 24812 @@ -141590,6 +142872,8 @@ entities: - type: Transform pos: -20.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignKiddiePlaque entities: - uid: 6892 @@ -141597,6 +142881,8 @@ entities: - type: Transform pos: -97.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignKitchen entities: - uid: 15907 @@ -141605,6 +142891,8 @@ entities: rot: 3.141592653589793 rad pos: -56.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignLibrary entities: - uid: 3841 @@ -141613,6 +142901,8 @@ entities: rot: 1.5707963267948966 rad pos: -52.5,-49.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMaterials entities: - uid: 2534 @@ -141621,6 +142911,8 @@ entities: rot: -1.5707963267948966 rad pos: -107.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMedical entities: - uid: 7561 @@ -141629,6 +142921,8 @@ entities: rot: 3.141592653589793 rad pos: -31.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMorgue entities: - uid: 2007 @@ -141636,11 +142930,15 @@ entities: - type: Transform pos: -44.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2508 components: - type: Transform pos: -40.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignNews entities: - uid: 1970 @@ -141648,6 +142946,8 @@ entities: - type: Transform pos: -100.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignPlaque entities: - uid: 2815 @@ -141659,6 +142959,8 @@ entities: rot: -1.5707963267948966 rad pos: -63.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21071 components: - type: MetaData @@ -141667,6 +142969,8 @@ entities: - type: Transform pos: -108.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignPsychology entities: - uid: 9239 @@ -141674,6 +142978,8 @@ entities: - type: Transform pos: -22.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRadiationMed entities: - uid: 409 @@ -141681,11 +142987,15 @@ entities: - type: Transform pos: -121.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22228 components: - type: Transform pos: -111.5,34.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRedFour entities: - uid: 20951 @@ -141694,6 +143004,8 @@ entities: rot: 3.141592653589793 rad pos: -59.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRedOne entities: - uid: 3778 @@ -141701,6 +143013,8 @@ entities: - type: Transform pos: -69.5,-54.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRedThree entities: - uid: 17548 @@ -141709,6 +143023,8 @@ entities: rot: 3.141592653589793 rad pos: -69.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRedTwo entities: - uid: 16509 @@ -141717,6 +143033,8 @@ entities: rot: 3.141592653589793 rad pos: -59.5,-54.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRestroom entities: - uid: 2199 @@ -141724,11 +143042,15 @@ entities: - type: Transform pos: -38.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3787 components: - type: Transform pos: -65.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRND entities: - uid: 15919 @@ -141737,6 +143059,8 @@ entities: rot: 1.5707963267948966 rad pos: -118.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRobo entities: - uid: 15918 @@ -141745,6 +143069,8 @@ entities: rot: 1.5707963267948966 rad pos: -118.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSalvage entities: - uid: 4672 @@ -141753,6 +143079,8 @@ entities: rot: 3.141592653589793 rad pos: -92.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignScience entities: - uid: 20550 @@ -141761,12 +143089,16 @@ entities: rot: -1.5707963267948966 rad pos: -106.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20551 components: - type: Transform rot: -1.5707963267948966 rad pos: -106.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecureMed entities: - uid: 25361 @@ -141775,60 +143107,80 @@ entities: rot: 1.5707963267948966 rad pos: -112.5,-82.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25362 components: - type: Transform rot: 1.5707963267948966 rad pos: -112.5,-89.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25363 components: - type: Transform rot: 1.5707963267948966 rad pos: -115.5,-92.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25365 components: - type: Transform rot: 1.5707963267948966 rad pos: -125.5,-92.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25366 components: - type: Transform rot: 1.5707963267948966 rad pos: -128.5,-89.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25367 components: - type: Transform rot: 1.5707963267948966 rad pos: -128.5,-82.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25368 components: - type: Transform rot: 1.5707963267948966 rad pos: -128.5,-75.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25369 components: - type: Transform rot: 1.5707963267948966 rad pos: -112.5,-75.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25370 components: - type: Transform rot: 1.5707963267948966 rad pos: -112.5,-69.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25371 components: - type: Transform rot: 1.5707963267948966 rad pos: -128.5,-69.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecureMedRed entities: - uid: 21066 @@ -141836,11 +143188,15 @@ entities: - type: Transform pos: -37.5,-70.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21067 components: - type: Transform pos: -39.5,-70.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecurity entities: - uid: 15911 @@ -141849,6 +143205,8 @@ entities: rot: 3.141592653589793 rad pos: -93.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignShipDock entities: - uid: 16513 @@ -141857,6 +143215,8 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSmoking entities: - uid: 2844 @@ -141864,36 +143224,48 @@ entities: - type: Transform pos: -59.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23436 components: - type: Transform rot: 3.141592653589793 rad pos: -132.5,1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23438 components: - type: Transform rot: 3.141592653589793 rad pos: -116.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23439 components: - type: Transform rot: 3.141592653589793 rad pos: -106.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23440 components: - type: Transform rot: 3.141592653589793 rad pos: -114.5,17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23442 components: - type: Transform rot: 3.141592653589793 rad pos: -124.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSpace entities: - uid: 5983 @@ -141901,22 +143273,30 @@ entities: - type: Transform pos: -152.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9426 components: - type: Transform pos: -101.5,31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19325 components: - type: Transform rot: 3.141592653589793 rad pos: -152.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23004 components: - type: Transform pos: -12.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSurgery entities: - uid: 6691 @@ -141925,6 +143305,8 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignTelecomms entities: - uid: 17026 @@ -141932,6 +143314,8 @@ entities: - type: Transform pos: -84.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignToolStorage entities: - uid: 15898 @@ -141940,12 +143324,16 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15899 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignVault entities: - uid: 1172 @@ -141954,12 +143342,16 @@ entities: rot: -1.5707963267948966 rad pos: -37.5,-68.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15909 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignVirology entities: - uid: 4168 @@ -141967,6 +143359,8 @@ entities: - type: Transform pos: -27.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: Sink entities: - uid: 698 @@ -144332,6 +145726,38 @@ entities: - type: Transform pos: -18.5,-4.5 parent: 2 +- proto: SpawnPointLatejoin + entities: + - uid: 20082 + components: + - type: Transform + pos: -30.5,17.5 + parent: 2 + - uid: 26382 + components: + - type: Transform + pos: -29.5,17.5 + parent: 2 + - uid: 26383 + components: + - type: Transform + pos: -28.5,17.5 + parent: 2 + - uid: 26384 + components: + - type: Transform + pos: -28.5,14.5 + parent: 2 + - uid: 26385 + components: + - type: Transform + pos: -29.5,14.5 + parent: 2 + - uid: 26386 + components: + - type: Transform + pos: -30.5,14.5 + parent: 2 - proto: SpawnPointLawyer entities: - uid: 354 @@ -144893,49 +146319,67 @@ entities: rot: 3.141592653589793 rad pos: -32.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13225 components: - type: Transform pos: -24.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15674 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15902 components: - type: Transform pos: -32.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20033 components: - type: Transform pos: -100.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20222 components: - type: Transform pos: -94.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22142 components: - type: Transform pos: -70.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24489 components: - type: Transform rot: 3.141592653589793 rad pos: -98.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 26149 components: - type: Transform rot: 3.141592653589793 rad pos: -108.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SteelBench entities: - uid: 14239 @@ -147526,6 +148970,8 @@ entities: allowedDepartments: - Security severity: Syndicate + - type: Fixtures + fixtures: {} - proto: SyndieHandyFlag entities: - uid: 18682 @@ -151922,11 +153368,15 @@ entities: - type: Transform pos: -83.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18473 components: - type: Transform pos: -91.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WallmountTelescreenFrame entities: - uid: 6590 @@ -151934,6 +153384,8 @@ entities: - type: Transform pos: -95.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WallmountTelevision entities: - uid: 23944 @@ -151941,6 +153393,8 @@ entities: - type: Transform pos: -61.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WallReinforced entities: - uid: 8 @@ -167802,11 +169256,15 @@ entities: - type: Transform pos: -126.5,14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5646 components: - type: Transform pos: -118.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningCO2 entities: - uid: 10443 @@ -167814,6 +169272,8 @@ entities: - type: Transform pos: -126.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningN2 entities: - uid: 5353 @@ -167821,6 +169281,8 @@ entities: - type: Transform pos: -126.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningN2O entities: - uid: 9938 @@ -167828,6 +169290,8 @@ entities: - type: Transform pos: -126.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningO2 entities: - uid: 9947 @@ -167835,6 +169299,8 @@ entities: - type: Transform pos: -126.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningPlasma entities: - uid: 5386 @@ -167843,24 +169309,32 @@ entities: rot: -1.5707963267948966 rad pos: -114.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5650 components: - type: Transform rot: 3.141592653589793 rad pos: -135.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5651 components: - type: Transform rot: 3.141592653589793 rad pos: -118.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5894 components: - type: Transform rot: 3.141592653589793 rad pos: -132.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningTritium entities: - uid: 9914 @@ -167868,6 +169342,8 @@ entities: - type: Transform pos: -126.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningWaste entities: - uid: 5647 @@ -167875,24 +169351,32 @@ entities: - type: Transform pos: -120.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5648 components: - type: Transform rot: 3.141592653589793 rad pos: -120.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5649 components: - type: Transform rot: 3.141592653589793 rad pos: -135.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5895 components: - type: Transform rot: 3.141592653589793 rad pos: -132.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9935 components: - type: MetaData @@ -167901,6 +169385,8 @@ entities: - type: Transform pos: -126.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WaterCooler entities: - uid: 1329 @@ -168424,7 +169910,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -252710.88 + secondsUntilStateChange: -252730.69 state: Opening - type: Airlock autoClose: False diff --git a/Resources/Maps/relic.yml b/Resources/Maps/relic.yml index da123e3276..250c80a59a 100644 --- a/Resources/Maps/relic.yml +++ b/Resources/Maps/relic.yml @@ -1,15 +1,16 @@ meta: format: 7 category: Map - engineVersion: 262.0.0 + engineVersion: 264.0.0 forkId: "" forkVersion: "" - time: 06/11/2025 22:11:12 - entityCount: 8332 + time: 08/24/2025 21:13:10 + entityCount: 11566 maps: - 1 grids: - 2 +- 3564 orphans: [] nullspace: [] tilemap: @@ -22,6 +23,7 @@ tilemap: 2: FloorDark 6: FloorElevatorShaft 47: FloorFreezer + 20: FloorGreenCircuit 18: FloorHullReinforced 1: FloorHydro 64: FloorKitchen @@ -31,6 +33,7 @@ tilemap: 101: FloorSteelDamaged 11: FloorSteelDirty 4: FloorTechMaint + 19: FloorTechMaint2 3: FloorWhite 126: FloorWood 14: FloorWoodLarge @@ -50,10 +53,12 @@ entities: - type: GridTree - type: Broadphase - type: OccluderTree + - type: Parallax + parallax: RelicStation - uid: 2 components: - type: MetaData - name: grid + name: oldstation - type: Transform pos: -2.6405587,0.6332514 parent: 1 @@ -61,87 +66,87 @@ entities: chunks: 0,0: ind: 0,0 - tiles: YgAAAAADAGIAAAAAAABiAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAACAAcAAAAAAABiAAAAAAIAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAGIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAwAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAEABwAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAAAAAcAAAAAAABiAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAIABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAABAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAEABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAQBiAAAAAAEAYgAAAAACAGIAAAAAAQAHAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAAABwAAAAAAAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAgAAAAACAAIAAAAAAAACAAAAAAMAAgAAAAAAAAIAAAAAAQACAAAAAAMABwAAAAAAAAMAAAAAAwADAAAAAAAAAwAAAAADAAMAAAAAAgADAAAAAAAAAwAAAAAAAAMAAAAAAwADAAAAAAAAAwAAAAABAAIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAADAAAAAAIAAwAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAACAAMAAAAAAgADAAAAAAIAAwAAAAAAAAMAAAAAAwACAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAAAHAAAAAAAAAwAAAAADAAMAAAAAAgADAAAAAAAAAwAAAAAAAAMAAAAAAwADAAAAAAMAAwAAAAABAAMAAAAAAwADAAAAAAIAAgAAAAABAAcAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAIAAwAAAAACAAMAAAAAAgADAAAAAAIAAwAAAAABAAMAAAAAAgADAAAAAAMAAwAAAAACAAMAAAAAAwADAAAAAAEAAwAAAAAAAAIAAAAAAQAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAEAYgAAAAABAAcAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAMAAwAAAAAAAAMAAAAAAgADAAAAAAMAAwAAAAACAAMAAAAAAAACAAAAAAIABwAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAQADAAAAAAMAAwAAAAADAAMAAAAAAgADAAAAAAEAAwAAAAAAAAMAAAAAAwADAAAAAAMAAwAAAAACAAMAAAAAAwADAAAAAAIAAgAAAAABAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAEABwAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAABAAMAAAAAAwADAAAAAAEAAwAAAAADAAMAAAAAAgADAAAAAAEAAwAAAAACAA== + tiles: YgAAAAADAGIAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAQAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAACAAcAAAAAAABiAAAAAAMAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAGIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAIABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAAAAAcAAAAAAABiAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAABAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAgAHAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAwAKAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAADAGIAAAAAAwBiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAgAHAAAAAAAAYgAAAAACAGIAAAAAAwAKAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAgBiAAAAAAAABwAAAAAAAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAgAAAAABAAIAAAAAAgACAAAAAAEAAgAAAAADAAIAAAAAAwACAAAAAAIABwAAAAAAAAMAAAAAAwADAAAAAAAAAwAAAAABAAMAAAAAAwADAAAAAAAAAwAAAAADAAMAAAAAAAADAAAAAAMAAwAAAAAAAAIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAADAAAAAAMAAwAAAAAAAAMAAAAAAQADAAAAAAMAAwAAAAADAAMAAAAAAQADAAAAAAAAAwAAAAABAAMAAAAAAAACAAAAAAEABwAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAAAHAAAAAAAAAwAAAAAAAAMAAAAAAQADAAAAAAMAAwAAAAACAAMAAAAAAQADAAAAAAIAAwAAAAACAAMAAAAAAAADAAAAAAAAAgAAAAADAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAIAAwAAAAAAAAMAAAAAAAADAAAAAAMAAwAAAAABAAMAAAAAAAADAAAAAAEAAwAAAAABAAMAAAAAAwADAAAAAAAAAwAAAAADAAIAAAAAAwAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAACAAcAAAAAAAADAAAAAAIAAwAAAAADAAMAAAAAAQADAAAAAAIAAwAAAAACAAMAAAAAAQADAAAAAAEAAwAAAAABAAMAAAAAAQACAAAAAAIABwAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAgADAAAAAAAAAwAAAAADAAMAAAAAAAADAAAAAAMAAwAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAABAAMAAAAAAwADAAAAAAAAAgAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAMABwAAAAAAAAMAAAAAAAADAAAAAAMAAwAAAAACAAMAAAAAAAADAAAAAAEAAwAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAAAAA== version: 7 0,-1: ind: 0,-1 - tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAACAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAACAGIAAAAAAwBiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAQBiAAAAAAMAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAEABwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAABAAcAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAgAHAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAAABwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAgBiAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAMABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAACAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAMABwAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAEAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAQAHAAAAAAAAYgAAAAAAAA== + tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAgBiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAIABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAEABwAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAADAGIAAAAAAQAHAAAAAAAABwAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAIABwAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAADAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAwBiAAAAAAMABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAgAHAAAAAAAAYgAAAAADAA== version: 7 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAAAAgAAAAABAAIAAAAAAQACAAAAAAAAAgAAAAABAAIAAAAAAAACAAAAAAEAAgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAAAIAAAAAAAACAAAAAAEAAgAAAAACAAIAAAAAAwACAAAAAAEAAgAAAAABAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAABAGIAAAAAAwACAAAAAAIAAgAAAAABAAIAAAAAAwACAAAAAAMAAgAAAAACAAIAAAAAAAACAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAQACAAAAAAAAAgAAAAABAAIAAAAAAAACAAAAAAEAAgAAAAAAAAIAAAAAAwACAAAAAAAAAgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAAAYgAAAAADAAIAAAAAAgACAAAAAAAAAgAAAAACAAIAAAAAAgACAAAAAAEAAgAAAAABAAIAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAwACAAAAAAAAAgAAAAADAAIAAAAAAQACAAAAAAIAAgAAAAABAAIAAAAAAQACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAAAAgAAAAABAAIAAAAAAgACAAAAAAEAAgAAAAADAAIAAAAAAgACAAAAAAEAAgAAAAACAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAwAKAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAEAYgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAABiAAAAAAIACgAAAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAMAAgAAAAAAAAIAAAAAAgACAAAAAAEAAgAAAAACAAIAAAAAAAACAAAAAAMAAgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAAAIAAAAAAgACAAAAAAIAAgAAAAADAAIAAAAAAwACAAAAAAEAAgAAAAAAAAIAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAGIAAAAAAwACAAAAAAIAAgAAAAADAAIAAAAAAAACAAAAAAIAAgAAAAACAAIAAAAAAAACAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAgACAAAAAAEAAgAAAAAAAAIAAAAAAQACAAAAAAEAAgAAAAABAAIAAAAAAgACAAAAAAAAAgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAYgAAAAAAAAIAAAAAAwACAAAAAAEAAgAAAAAAAAIAAAAAAwACAAAAAAIAAgAAAAACAAIAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAAACAAAAAAEAAgAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAABAAIAAAAAAQACAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAAAAgAAAAADAAIAAAAAAwACAAAAAAIAAgAAAAACAAIAAAAAAwACAAAAAAAAAgAAAAABAA== version: 7 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAABAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADAA== version: 7 1,-1: ind: 1,-1 - tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAALwAAAAAAAC8AAAAAAAAvAAAAAAAALwAAAAAAAC8AAAAAAAAHAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAvAAAAAAAALwAAAAAAAC8AAAAAAAAvAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAMAEQAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAAEAAAAAAAABAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAABEAAAAAAwARAAAAAAIAEQAAAAABABEAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAIAYgAAAAADAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAIAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAMAYgAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAA== + tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAIAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAADAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAGIAAAAAAAABAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAgBiAAAAAAIAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAADAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIABwAAAAAAAA== version: 7 1,0: ind: 1,0 - tiles: YgAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAAAAGIAAAAAAgAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAwALAAAAAAAACwAAAAAAAAsAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAwBiAAAAAAIABwAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgAHAAAAAAAADAAAAAABAAwAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAACAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAEABwAAAAAAAAwAAAAAAQAMAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAACAAMAAAAAAwAMAAAAAAEADAAAAAADAAMAAAAAAwADAAAAAAEABwAAAAAAAGIAAAAAAwAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAAADAAAAAAAADAAAAAAAAAwAAAAAAgADAAAAAAAAAwAAAAADAAMAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAwBiAAAAAAMAYgAAAAADAGIAAAAAAwBiAAAAAAAAAwAAAAAAAAwAAAAAAAAMAAAAAAAAAwAAAAABAAMAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAABAAMAAAAAAgAMAAAAAAIADAAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAACAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAAADAAAAAAAADAAAAAAAAAwAAAAAAwADAAAAAAAAAwAAAAADAAMAAAAAAQBiAAAAAAAAYgAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAABiAAAAAAMAAwAAAAACAAwAAAAAAgAMAAAAAAEAAwAAAAADAAMAAAAAAgADAAAAAAIAYgAAAAACAGIAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAAAAA== + tiles: YgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAACAAcAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAEAYgAAAAACAGIAAAAAAgALAAAAAAAACwAAAAABAAsAAAAAAgBiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAQAHAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAADAGIAAAAAAQBiAAAAAAIABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAAAHAAAAAAAAAwAAAAABAAMAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAIABwAAAAAAAAMAAAAAAQADAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAABAAMAAAAAAwADAAAAAAEAAwAAAAACAAMAAAAAAAADAAAAAAIABwAAAAAAAGIAAAAAAgAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAwADAAAAAAEAAwAAAAABAAMAAAAAAQADAAAAAAAAAwAAAAAAAAMAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAABAGIAAAAAAgBiAAAAAAAAAwAAAAADAAMAAAAAAQADAAAAAAEAAwAAAAAAAAMAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAAAAAMAAAAAAgADAAAAAAAAAwAAAAACAAMAAAAAAAADAAAAAAIAAwAAAAACAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAgADAAAAAAIAAwAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAABAAMAAAAAAgBiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAAAAwAAAAACAAMAAAAAAAADAAAAAAAAAwAAAAACAAMAAAAAAAADAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAADAA== version: 7 -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAACAAAAAAMAAgAAAAABAAIAAAAAAgACAAAAAAIAAgAAAAACAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAgAAAAAAAAIAAAAAAwACAAAAAAMAAgAAAAACAAIAAAAAAgACAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAACAAAAAAMAAgAAAAACAAIAAAAAAwACAAAAAAMAAgAAAAADAAIAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAgAAAAABAAIAAAAAAwACAAAAAAEAAgAAAAAAAAIAAAAAAQACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 0,1: ind: 0,1 - tiles: AgAAAAABAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAIABwAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAABAAMAAAAAAwADAAAAAAEAAwAAAAABAAMAAAAAAQADAAAAAAAAAwAAAAADAAIAAAAAAQAHAAAAAAAABwAAAAAAAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAACAAAAAAEAAgAAAAADAAIAAAAAAgACAAAAAAMAAgAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAABAGIAAAAAAgBiAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAQBiAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAACAGIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAEAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAMAYgAAAAADAGIAAAAAAQBiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAACAA== + tiles: AgAAAAABAAcAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAMABwAAAAAAAAMAAAAAAwADAAAAAAEAAwAAAAABAAMAAAAAAgADAAAAAAAAAwAAAAAAAAMAAAAAAgADAAAAAAEAAwAAAAACAAIAAAAAAQAHAAAAAAAABwAAAAAAAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAACAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAABlAAAAAAIAYgAAAAADAGIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAGIAAAAAAwBlAAAAAAEAYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAZQAAAAACAGUAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAYgAAAAADAGIAAAAAAwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGUAAAAAAwBiAAAAAAAAYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAwAHAAAAAAAAYgAAAAAAAGUAAAAAAwBiAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGUAAAAABABiAAAAAAMAZQAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGUAAAAAAQBiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAGUAAAAAAABiAAAAAAAAYgAAAAAAAGUAAAAAAABlAAAAAAAAYgAAAAABAA== version: 7 1,1: ind: 1,1 - tiles: AwAAAAADAAwAAAAAAgAMAAAAAAIAAwAAAAABAAMAAAAAAQAHAAAAAAAAYgAAAAABAGIAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAAAAAcAAAAAAAAMAAAAAAIADAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAACAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAMABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAABAGIAAAAAAgBiAAAAAAMAYgAAAAABAGIAAAAAAgBiAAAAAAEAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAACAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAABAAcAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAgAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAIAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAZQAAAAACAA== + tiles: AwAAAAAAAAMAAAAAAgADAAAAAAEAAwAAAAAAAAMAAAAAAgAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAABAAcAAAAAAAAHAAAAAAAADAAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAwBiAAAAAAAAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAEgAAAAAAABIAAAAAAAAHAAAAAAAABwAAAAAAABIAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAAAZQAAAAACAA== version: 7 2,0: ind: 2,0 - tiles: BwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAADAAcAAAAAAABiAAAAAAEABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAABAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAAAHAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAAcAAAAAAABiAAAAAAAAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAADAAcAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAADAGIAAAAAAABiAAAAAAIAYgAAAAADAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAAAAGIAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAMABwAAAAAAAGIAAAAAAQBiAAAAAAMABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAMABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAIAYgAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAwAHAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAgAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAEABwAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAAALAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAgAHAAAAAAAACwAAAAAAAGIAAAAAAABiAAAAAAAACwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAIABwAAAAAAAAMAAAAAAQADAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAADAAcAAAAAAAADAAAAAAAAAwAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAMABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAACAGIAAAAAAgAHAAAAAAAAAwAAAAADAAMAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAQAHAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAMAAAAAAgADAAAAAAEAYgAAAAAAAGIAAAAAAABiAAAAAAEABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAACAGIAAAAAAwAHAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAA== + tiles: BwAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAADAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAADAAcAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAgAHAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAAcAAAAAAABiAAAAAAEAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAACAGIAAAAAAwAHAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAEABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAACAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAQAHAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAwAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAMABwAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAACAAcAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAQALAAAAAAEABwAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAACAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAgAHAAAAAAAACwAAAAACAGIAAAAAAQBiAAAAAAAACwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAwBiAAAAAAEABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAABAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAACAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAIAYgAAAAADAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAABiAAAAAAMABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAgAHAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAQAHAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAMAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAEABwAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAQAHAAAAAAAACwAAAAACAAsAAAAAAgALAAAAAAIACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAA== version: 7 2,1: ind: 2,1 - tiles: YgAAAAACAGIAAAAAAABiAAAAAAMABwAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAQALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAIABwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAHAAAAAAAACwAAAAAAAAsAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAIAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAADAGIAAAAAAQAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAMABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAgBiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAADAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAADAGIAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAEAYgAAAAACAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAMAYgAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAQAHAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAIABwAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAACAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAEAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAACAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAAAAAcAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAABAA== + tiles: YgAAAAACAGIAAAAAAwBiAAAAAAMABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAgALAAAAAAMACwAAAAABAAsAAAAAAwALAAAAAAAACwAAAAAAAAsAAAAAAQALAAAAAAEACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAIABwAAAAAAAAsAAAAAAgALAAAAAAIACwAAAAACAAsAAAAAAQAHAAAAAAAACwAAAAACAAsAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAEAYgAAAAACAGIAAAAAAgAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAEABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAEAYgAAAAACAGIAAAAAAwBiAAAAAAAAYgAAAAACAAcAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAQAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAEABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAABAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAADAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAEABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAgBiAAAAAAMABwAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAACAAcAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAACAGIAAAAAAQAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAADAAcAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAAAAA== version: 7 0,2: ind: 0,2 - tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAASAAAAAAAAEgAAAAAAABIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAEgAAAAAAABIAAAAAAAASAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAA== + tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAASAAAAAAAAEgAAAAAAABIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAEgAAAAAAABIAAAAAAAASAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAA== version: 7 1,2: ind: 1,2 - tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAIABwAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAADAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAgBiAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAMABwAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAgBiAAAAAAEABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAADAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAA== + tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAABAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAEABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAIABwAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAgBiAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAADAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAEAYgAAAAADAAcAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAQAHAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAA== version: 7 2,2: ind: 2,2 - tiles: YgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAIAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAACAGIAAAAAAwBiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAACAAcAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAABAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAQBiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAwAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAMABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAgBiAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAABAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAwAHAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQAKAAAAAAAAYgAAAAACAAoAAAAAAABiAAAAAAEACgAAAAAAAA== + tiles: YgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAMAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAMAYgAAAAACAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAAcAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAgBiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAQAHAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQAKAAAAAAAAYgAAAAADAAoAAAAAAABiAAAAAAEACgAAAAAAAA== version: 7 3,1: ind: 3,1 - tiles: CwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAABwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAHAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAgAAAAABAAIAAAAAAwACAAAAAAMAAgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAACAAAAAAIAAgAAAAADAAIAAAAAAgACAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAACAAsAAAAAAAALAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAAAgAAAAAAAAIAAAAAAQACAAAAAAEAAgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAgALAAAAAAAACwAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAAAAAIAAAAAAwACAAAAAAMAAgAAAAACAAIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAADAAsAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAQACAAAAAAIAAgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAAALAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAIAAAAAAgAHAAAAAAAAAgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAACAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAACAAIAAAAAAQACAAAAAAIAAgAAAAAAAAIAAAAAAgACAAAAAAMAAgAAAAABAAIAAAAAAgACAAAAAAMAAgAAAAADAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAQACAAAAAAMAAgAAAAAAAAIAAAAAAwACAAAAAAAAAgAAAAACAAIAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAAAAgAAAAABAAIAAAAAAgACAAAAAAEAAgAAAAAAAAIAAAAAAQACAAAAAAMAAgAAAAADAAIAAAAAAwACAAAAAAEABwAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAAAAAIAAAAAAAACAAAAAAMAAgAAAAADAAIAAAAAAQACAAAAAAMAAgAAAAACAAIAAAAAAgACAAAAAAEAAgAAAAACAA== + tiles: CwAAAAABAAsAAAAAAwALAAAAAAMACwAAAAACAAsAAAAAAgALAAAAAAEACwAAAAAAAAsAAAAAAQAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAABwAAAAAAAAsAAAAAAQALAAAAAAMACwAAAAADAAsAAAAAAAALAAAAAAEACwAAAAACAAsAAAAAAAAHAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAAAgAAAAACAAIAAAAAAgACAAAAAAAAAgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAIAAAAAAwACAAAAAAMAAgAAAAACAAIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAACAAAAAAMAAgAAAAAAAAIAAAAAAwACAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAAsAAAAAAwALAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAAAgAAAAAAAAIAAAAAAwACAAAAAAAAAgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAQALAAAAAAMACwAAAAADAAsAAAAAAgAHAAAAAAAABwAAAAAAAAIAAAAAAQACAAAAAAMAAgAAAAAAAAIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAIAYgAAAAABAAsAAAAAAAALAAAAAAEABwAAAAAAAAcAAAAAAAACAAAAAAIAAgAAAAADAAIAAAAAAQACAAAAAAEAAgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAgALAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAIAAAAAAwAHAAAAAAAAAgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAACAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAACAAcAAAAAAABiAAAAAAMAYgAAAAAAAAIAAAAAAAACAAAAAAEAAgAAAAADAAIAAAAAAQACAAAAAAMAAgAAAAADAAIAAAAAAgACAAAAAAMAAgAAAAADAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAAAAGIAAAAAAgACAAAAAAIAAgAAAAADAAIAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAgACAAAAAAAAAgAAAAACAAIAAAAAAgAHAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAEAAgAAAAADAAIAAAAAAQACAAAAAAMAAgAAAAABAAIAAAAAAgACAAAAAAAAAgAAAAADAAIAAAAAAgACAAAAAAEABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAAAAAIAAAAAAQACAAAAAAIAAgAAAAACAAIAAAAAAgACAAAAAAEAAgAAAAAAAAIAAAAAAwACAAAAAAAAAgAAAAADAA== version: 7 3,2: ind: 3,2 - tiles: BwAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAACAAIAAAAAAQACAAAAAAEAAgAAAAABAAIAAAAAAgACAAAAAAMAAgAAAAADAAIAAAAAAQACAAAAAAMAAgAAAAADAAcAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAwACAAAAAAMAAgAAAAACAAIAAAAAAgACAAAAAAEAAgAAAAACAAIAAAAAAQACAAAAAAIAAgAAAAAAAAIAAAAAAQAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAMAYgAAAAADAGIAAAAAAQBiAAAAAAIAAgAAAAACAAIAAAAAAQACAAAAAAIAAgAAAAAAAAIAAAAAAwACAAAAAAIAAgAAAAACAAIAAAAAAgACAAAAAAEABwAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAEACwAAAAAAAGIAAAAAAwBiAAAAAAIABwAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAABiAAAAAAEAYgAAAAADAAcAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAAcAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAwAHAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAAAHAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAMABwAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAAABwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAAAAAcAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAQAHAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAAABwAAAAAAAAgAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAACAAcAAAAAAAAIAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAAAHAAAAAAAACAAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAAABwAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAAAAAcAAAAAAAAIAAAAAAAAYgAAAAACAAoAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAQAHAAAAAAAABwAAAAAAAA== + tiles: BwAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAABAAIAAAAAAQACAAAAAAAAAgAAAAACAAIAAAAAAAACAAAAAAIAAgAAAAABAAIAAAAAAgACAAAAAAMAAgAAAAACAAcAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAwACAAAAAAIAAgAAAAADAAIAAAAAAQACAAAAAAEAAgAAAAAAAAIAAAAAAgACAAAAAAEAAgAAAAADAAIAAAAAAwAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAEAAgAAAAACAAIAAAAAAQACAAAAAAMAAgAAAAAAAAIAAAAAAQACAAAAAAEAAgAAAAABAAIAAAAAAwACAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAMACwAAAAAAAGIAAAAAAABiAAAAAAAABwAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAEACwAAAAAAAAsAAAAAAgALAAAAAAEACwAAAAACAAsAAAAAAQBiAAAAAAAAYgAAAAABAAcAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAAACwAAAAABAAsAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAAAHAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAQAHAAAAAAAACwAAAAACAAsAAAAAAQALAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAAABwAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAAABwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAADAAcAAAAAAABiAAAAAAMAYgAAAAAAAAcAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAMAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAQAHAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAAABwAAAAAAAAgAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAAAAAcAAAAAAAAIAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAAAHAAAAAAAACAAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAIABwAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAAAAAcAAAAAAAAIAAAAAAAAYgAAAAACAAoAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAwAHAAAAAAAABwAAAAAAAA== version: 7 2,-1: ind: 2,-1 - tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAAAHAAAAAAAABAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAABAAcAAAAAAAAEAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAMAAAAAAQAHAAAAAAAAAwAAAAAAAAcAAAAAAAADAAAAAAMABwAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAADAAAAAAIABwAAAAAAAAMAAAAAAgAHAAAAAAAAAwAAAAADAAcAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAMABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAEABwAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAEAYgAAAAAAAAcAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAwAHAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAAAAGIAAAAAAQAHAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAIABwAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAACAGIAAAAAAwBiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAAABwAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAEAYgAAAAACAGIAAAAAAAAHAAAAAAAAYgAAAAACAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAIABwAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAACAAcAAAAAAABiAAAAAAAABwAAAAAAAA== + tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAEAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAAAHAAAAAAAABAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAACAAcAAAAAAABiAAAAAAEAYgAAAAAAAAcAAAAAAAAEAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAQAHAAAAAAAAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAIABwAAAAAAAAsAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAABAAcAAAAAAAALAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAwBiAAAAAAEABwAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAADAAcAAAAAAAALAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAQAHAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAIABwAAAAAAAAsAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAIABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAAAHAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAIABwAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAABAAcAAAAAAABiAAAAAAEABwAAAAAAAA== version: 7 2,-2: ind: 2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAEACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAAALAAAAAAAAYgAAAAADAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAQBiAAAAAAEACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAgALAAAAAAEAYgAAAAABAA== version: 7 3,-1: ind: 3,-1 - tiles: YgAAAAABAAsAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAAALAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAGIAAAAAAgAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAAAYgAAAAADAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAABiAAAAAAEACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAACAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAYgAAAAACAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAwAHAAAAAAAAYgAAAAADAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAIAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAQAHAAAAAAAABwAAAAAAAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAMAAwAAAAABAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAQBiAAAAAAEAYgAAAAACAA== + tiles: YgAAAAAAAAsAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACwAAAAACAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAwALAAAAAAMABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAGIAAAAAAgAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAMAYgAAAAABAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAABiAAAAAAEACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAYgAAAAADAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAgBiAAAAAAMAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAABAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAABAGIAAAAAAgBiAAAAAAAAYgAAAAAAAA== version: 7 3,-2: ind: 3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAAAIAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADAGIAAAAAAgALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAALAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACwAAAAADAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAsAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAABAAcAAAAAAAAIAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAALAAAAAAMACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAAGIAAAAAAgALAAAAAAMACwAAAAADAAsAAAAAAQALAAAAAAIACwAAAAADAAsAAAAAAQALAAAAAAAACwAAAAABAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 3,0: ind: 3,0 - tiles: AwAAAAADAGIAAAAAAQBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAgALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAGIAAAAAAwBiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAAsAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAADAAsAAAAAAAADAAAAAAMAYgAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAgBiAAAAAAIABwAAAAAAAGIAAAAAAwBiAAAAAAAACwAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAAAAAsAAAAAAAALAAAAAAAAAwAAAAACAGIAAAAAAQADAAAAAAIAAwAAAAABAAMAAAAAAAADAAAAAAMAAwAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAMAAAAAAABiAAAAAAIAAwAAAAADAAMAAAAAAgADAAAAAAEAAwAAAAADAAMAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAADAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAMAAAAAAgBiAAAAAAAAYgAAAAADAAcAAAAAAAADAAAAAAIAAwAAAAABAAMAAAAAAgADAAAAAAIABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAAAHAAAAAAAAAwAAAAABAAMAAAAAAQADAAAAAAIAAwAAAAADAAcAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAwAAAAACAAMAAAAAAABiAAAAAAEABwAAAAAAAAMAAAAAAwADAAAAAAEAAwAAAAADAAMAAAAAAQAHAAAAAAAAYgAAAAAAAGIAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAADAAAAAAAAYgAAAAACAGIAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAwAAAAADAAcAAAAAAABiAAAAAAMABwAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAABAAcAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAABwAAAAAAAAMAAAAAAgAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAACAGIAAAAAAwAHAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAcAAAAAAAADAAAAAAIABwAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAABiAAAAAAEABwAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAABwAAAAAAAA== + tiles: YgAAAAACAGIAAAAAAwBiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAgALAAAAAAIACwAAAAADAAsAAAAAAgALAAAAAAEACwAAAAACAGIAAAAAAQBiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAAsAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAEAYgAAAAACAAsAAAAAAQBiAAAAAAMAYgAAAAADAAcAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAIABwAAAAAAAGIAAAAAAwBiAAAAAAAACwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAADAAsAAAAAAwALAAAAAAAAYgAAAAADAGIAAAAAAAADAAAAAAAABwAAAAAAAAcAAAAAAAADAAAAAAAAAwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAsAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAIAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAIABwAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAACAAcAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAADAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAwAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAgBiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAMABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAAATAAAAAAAAEwAAAAAAABMAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAADAAcAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAAAEwAAAAAAABMAAAAAAAATAAAAAAAAYgAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAwAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAAAABMAAAAAAAATAAAAAAAAEwAAAAAAAGIAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAAALAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAACAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAEABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAACAAcAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAAAAGIAAAAAAgAHAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAIABwAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAABwAAAAAAAA== version: 7 -1,-2: ind: -1,-2 @@ -157,23 +162,23 @@ entities: version: 7 0,3: ind: 0,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 1,3: ind: 1,3 - tiles: BwAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAAsAAAAAAAAHAAAAAAAACwAAAAAAAAcAAAAAAAAAAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAAsAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAMABwAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAAAAAsAAAAAAAALAAAAAAAABwAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAABAAcAAAAAAAALAAAAAAAABwAAAAAAAGIAAAAAAQAHAAAAAAAAYgAAAAABAAcAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAALAAAAAAAACwAAAAAAAAcAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAQAHAAAAAAAACwAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAGIAAAAAAgAHAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAACwAAAAAAAAsAAAAAAAAHAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAGIAAAAAAgAHAAAAAAAAYgAAAAACAAcAAAAAAABiAAAAAAIABwAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAAAAAsAAAAAAAALAAAAAAAABwAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAAAAAcAAAAAAAALAAAAAAAABwAAAAAAAGIAAAAAAgAHAAAAAAAAYgAAAAAAAAcAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAAACwAAAAAAAAcAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAQAHAAAAAAAAYgAAAAABAAcAAAAAAABiAAAAAAMABwAAAAAAAGIAAAAAAQAHAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAGIAAAAAAwALAAAAAAAACwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAABAGIAAAAAAQBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAACAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: BwAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAEABwAAAAAAAAcAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAAsAAAAAAgAHAAAAAAAACwAAAAADAAcAAAAAAAAAAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAAAAAsAAAAAAgAHAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAMABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAABAAsAAAAAAQALAAAAAAEABwAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAAALAAAAAAEABwAAAAAAAGIAAAAAAgAHAAAAAAAAYgAAAAAAAAcAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAALAAAAAAIACwAAAAAAAAcAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAwAHAAAAAAAACwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAGIAAAAAAQAHAAAAAAAACwAAAAADAAcAAAAAAAAHAAAAAAAACwAAAAACAAsAAAAAAQAHAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAAAHAAAAAAAAYgAAAAACAAcAAAAAAABiAAAAAAAABwAAAAAAAAsAAAAAAwAHAAAAAAAABwAAAAAAAAsAAAAAAgALAAAAAAIABwAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAAALAAAAAAIABwAAAAAAAGIAAAAAAQAHAAAAAAAAYgAAAAAAAAcAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAMACwAAAAADAAcAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAAAHAAAAAAAAYgAAAAACAAcAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAAAHAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAGIAAAAAAAALAAAAAAEACwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAACAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 4,0: ind: 4,0 - tiles: CwAAAAAAAAsAAAAAAAALAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAADAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: CwAAAAABAAsAAAAAAQALAAAAAAMABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAACAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 4,-1: ind: 4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAwAIAAAAAAAAYgAAAAACAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAABiAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAGIAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAYgAAAAADAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAACwAAAAAAAAsAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAAALAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAgAIAAAAAAAAYgAAAAADAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAABiAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAGIAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAYgAAAAABAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAACwAAAAABAAsAAAAAAQAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAwALAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 4,1: ind: 4,1 - tiles: CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: CAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 4,2: ind: 4,2 @@ -181,7 +186,7 @@ entities: version: 7 3,3: ind: 3,3 - tiles: YgAAAAAAAAoAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAEABwAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAIABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAABAAoAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAEAYgAAAAAAAAcAAAAAAAAIAAAAAAAAYgAAAAABAGIAAAAAAQAKAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAQAHAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAgBiAAAAAAAABwAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAACAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAwAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAcAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAA== + tiles: YgAAAAABAAoAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAADAAoAAAAAAAAKAAAAAAAACgAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAABAAoAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAABAAcAAAAAAAAIAAAAAAAAYgAAAAAAAGIAAAAAAAAKAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAwAHAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAwBiAAAAAAMABwAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAMAYgAAAAABAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAQAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAcAAAAAAAALAAAAAAIACwAAAAACAAsAAAAAAAALAAAAAAAACwAAAAABAAsAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAA== version: 7 4,3: ind: 4,3 @@ -189,7 +194,7 @@ entities: version: 7 3,4: ind: 3,4 - tiles: AAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 4,4: ind: 4,4 @@ -197,12 +202,16 @@ entities: version: 7 2,3: ind: 2,3 - tiles: YgAAAAADAGIAAAAAAwBiAAAAAAIABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwAKAAAAAAAAYgAAAAAAAAoAAAAAAABiAAAAAAMACgAAAAAAAAcAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAAACgAAAAAAAGIAAAAAAgBiAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAADAAoAAAAAAABiAAAAAAEAYgAAAAACAAsAAAAAAAALAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwAHAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAMABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAcAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: YgAAAAAAAGIAAAAAAwBiAAAAAAMABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwAKAAAAAAAAYgAAAAAAAAoAAAAAAABiAAAAAAAACgAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAALAAAAAAEACwAAAAAAAAsAAAAAAQAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAIACgAAAAAAAGIAAAAAAwBiAAAAAAAACwAAAAACAAsAAAAAAQALAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAAAAAoAAAAAAABiAAAAAAIAYgAAAAACAAsAAAAAAwALAAAAAAEACwAAAAADAAcAAAAAAAAHAAAAAAAAYgAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAEACwAAAAADAAsAAAAAAQAHAAAAAAAABwAAAAAAAGIAAAAAAQAHAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACwAAAAADAAsAAAAAAQALAAAAAAMAYgAAAAAAAGIAAAAAAwBiAAAAAAIABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAsAAAAAAgALAAAAAAIACwAAAAABAAsAAAAAAAALAAAAAAMACwAAAAABAAcAAAAAAAALAAAAAAIACwAAAAADAAsAAAAAAQALAAAAAAEACwAAAAADAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -1,2: ind: -1,2 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 + 4,-2: + ind: 4,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAYgAAAAADAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAABiAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAGIAAAAAAQAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAgAIAAAAAAAAYgAAAAABAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -226,39 +235,12 @@ entities: chunkCollection: version: 2 nodes: - - node: - angle: 1.5707963267948966 rad - color: '#FFFF00FF' - id: Arrows - decals: - 606: 23,2 - - node: - angle: 3.141592653589793 rad - color: '#FFFF00FF' - id: Arrows - decals: - 607: 31,2 - node: color: '#FFFFFFFF' - id: Arrows + id: Box decals: - 605: 30,2 - - node: - color: '#FFFFFFFF' - id: Bot - decals: - 608: 24,2 - 609: 25,2 - 610: 26,2 - 611: 27,2 - 612: 28,2 - 613: 29,2 - 668: 27,40 - 669: 27,41 - 670: 28,41 - 671: 30,41 - 672: 31,41 - 673: 31,40 + 725: 48,3 + 726: 48,4 - node: color: '#D4D4D428' id: BrickCornerOverlayNE @@ -286,22 +268,6 @@ entities: decals: 385: 36,10 450: 37,12 - - node: - color: '#FFFFFFFF' - id: Delivery - decals: - 678: 12,23 - 679: 13,23 - 680: 14,23 - 681: 12,26 - 682: 13,26 - 683: 14,26 - 691: 14,25 - 692: 13,25 - 693: 12,25 - 694: 12,22 - 695: 13,22 - 696: 14,22 - node: color: '#FFFFFFFF' id: Dirt @@ -324,93 +290,56 @@ entities: 348: 58,13 349: 58,12 350: 57,15 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 689: 11,23 - 698: 11,22 - - node: - angle: 4.71238898038469 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 688: 11,26 - 697: 11,25 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNE - decals: - 665: 21,25 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 666: 26,25 + 710: 29,-8 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 721: 23,-9 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 655: 21,32 - 656: 21,31 - 657: 21,30 - 658: 21,29 - 659: 21,28 - 660: 21,27 - 661: 21,26 + 722: 23,-10 + 723: 23,-11 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 644: 25,33 - 645: 24,33 - 646: 23,33 - 647: 22,33 - 648: 19,33 - 649: 18,33 - 650: 17,33 + 713: 24,-9 + 714: 25,-9 + 715: 26,-9 + 716: 27,-9 + 717: 28,-9 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 631: 26,26 - 632: 26,27 - 633: 26,28 - 634: 26,29 - 635: 26,30 - 636: 26,31 - 637: 26,32 - 638: 20,27 - 639: 20,28 - 640: 20,29 - 641: 20,30 - 642: 20,31 - 643: 20,32 + 707: 29,-7 + 708: 29,-6 + 709: 29,-5 + 718: 29,-10 + 719: 29,-11 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 651: 22,25 - 652: 23,25 - 653: 24,25 - 654: 25,25 - - node: - color: '#FFFFFFFF' - id: WarningLineCorner - decals: - 662: 21,33 + 700: 22,-8 + 701: 23,-8 + 702: 24,-8 + 703: 25,-8 + 704: 26,-8 + 705: 27,-8 + 724: 28,-8 - node: color: '#FFFFFFFF' id: WarningLineCornerFlipped decals: - 663: 20,33 - 664: 26,33 - - node: - color: '#FFFFFFFF' - id: body - decals: - 699: 42,13 + 720: 29,-9 - type: GridAtmosphere version: 2 data: @@ -438,7 +367,7 @@ entities: 1,1: 0: 65523 1,2: - 0: 47280 + 0: 47282 1,3: 0: 49087 1,-1: @@ -446,9 +375,9 @@ entities: 1,4: 0: 267 2,0: - 0: 47919 + 0: 47887 2,1: - 0: 65520 + 0: 65522 2,2: 0: 65520 2,3: @@ -458,9 +387,9 @@ entities: 2,4: 0: 15 3,0: - 0: 15275 + 0: 15243 3,1: - 0: 48120 + 0: 48122 3,2: 0: 65520 3,3: @@ -482,7 +411,7 @@ entities: 0,-5: 1: 61440 0,-3: - 0: 63094 + 0: 63351 -1,-3: 0: 192 1: 13107 @@ -497,9 +426,9 @@ entities: 1,-5: 1: 61440 2,-4: - 0: 24816 + 0: 61680 2,-3: - 0: 28775 + 0: 28927 2,-2: 0: 1911 2,-5: @@ -517,19 +446,25 @@ entities: 4,-3: 0: 62207 4,-2: - 0: 57343 + 0: 20479 4,-1: 0: 65535 + -3,2: + 1: 32768 + -3,3: + 1: 128 -2,3: 0: 61167 - -2,1: - 0: 51360 -2,2: - 0: 61152 + 0: 61153 + -2,4: + 0: 3265 -2,0: 1: 8738 -2,-1: 1: 11818 + -2,1: + 0: 52416 -2,-4: 1: 43562 -2,-5: @@ -550,51 +485,58 @@ entities: 4,-5: 1: 61440 5,-4: - 0: 39408 + 0: 55792 5,-3: - 0: 64721 + 0: 56529 5,-2: - 0: 52701 + 0: 285 + 2: 52224 5,-1: - 0: 56669 + 0: 4561 + 3: 49152 5,-5: 1: 61440 5,0: - 0: 52509 + 0: 52497 + 3: 12 6,-4: 0: 240 2: 57344 6,-3: - 0: 65424 - 2: 12 + 0: 65520 6,-2: - 0: 65535 + 0: 61167 6,-1: - 0: 65263 + 0: 8958 + 4: 32768 6,-5: 1: 61440 6,0: - 0: 65294 + 0: 65282 + 4: 8 7,-4: 0: 240 2: 12288 7,-3: - 2: 3 - 0: 65408 + 0: 65520 7,-2: 0: 65535 7,-1: - 0: 23893 + 0: 19541 + 4: 4096 7,-5: 1: 61440 7,0: - 0: 65357 + 4: 1 + 0: 65356 8,-4: 0: 240 8,-3: - 0: 20208 + 0: 65520 + 8,-2: + 0: 65535 4,4: - 0: 61295 + 0: 12079 5,1: 0: 56799 5,2: @@ -602,15 +544,15 @@ entities: 5,3: 0: 56785 5,4: - 0: 65293 + 0: 3853 6,1: 0: 30719 6,2: 0: 65520 6,3: - 0: 61182 + 0: 65534 6,4: - 0: 65294 + 0: 3855 7,1: 0: 2303 7,2: @@ -618,15 +560,13 @@ entities: 7,3: 0: 65535 7,4: - 0: 65295 + 0: 3855 8,1: 0: 8191 8,2: 0: 30583 8,3: 0: 30583 - -2,4: - 0: 3264 -1,4: 0: 4080 0,7: @@ -638,71 +578,60 @@ entities: 1,8: 0: 15167 2,5: - 0: 64136 + 0: 2060 2,6: - 0: 35576 + 0: 2060 2,7: - 0: 34824 + 0: 19652 3,5: - 0: 65535 + 0: 59239 3,6: - 0: 65535 + 0: 10087 3,7: - 0: 65327 - 2,8: - 0: 35624 - 3,8: - 0: 65295 + 0: 30583 4,5: - 0: 61438 + 0: 30591 4,6: - 0: 254 - 3: 24576 + 0: 7 + 2: 57344 4,7: - 3: 6 - 4: 26112 - 5,6: - 0: 13038 - 5: 32768 - 5,7: - 0: 13107 - 5: 8 - 6: 34816 + 2: 61166 5,5: - 0: 61152 - 5,8: - 0: 36851 + 0: 15 + 1: 60928 + 5,6: + 2: 61440 + 1: 238 + 5,7: + 2: 65535 6,5: - 0: 65520 + 0: 52239 + 1: 4352 6,6: - 0: 52479 - 5: 4096 + 1: 17 + 2: 12288 + 0: 51404 6,7: - 5: 1 - 6: 4352 - 0: 52428 - 6,8: - 0: 65532 + 2: 13107 + 0: 36044 7,5: - 0: 65262 + 0: 30479 7,6: - 0: 30576 + 0: 30583 7,7: - 0: 32759 - 7,8: - 0: 65521 + 0: 32631 8,4: - 0: 65287 + 0: 3847 8,5: - 0: 30310 + 0: 30711 8,6: - 0: 30582 + 0: 30583 8,7: 0: 63351 8,0: 0: 3822 8,-1: - 0: 61156 + 0: 61152 9,0: 0: 20479 9,1: @@ -714,7 +643,7 @@ entities: 9,-1: 0: 65520 9,4: - 0: 65519 + 0: 61423 10,0: 0: 12765 10,2: @@ -740,45 +669,45 @@ entities: 11,4: 0: 61663 12,0: - 0: 62399 + 0: 62383 12,1: - 0: 32767 - 12,2: - 0: 29815 - 12,3: - 0: 3541 - 8,8: 0: 65535 + 12,2: + 0: 62719 + 12,3: + 0: 4095 + 8,8: + 0: 65527 + 9,5: + 0: 61182 9,6: 0: 30464 9,7: - 0: 29303 - 9,5: - 0: 61166 + 0: 30578 9,8: - 0: 65527 + 0: 65522 10,5: - 0: 65422 + 0: 63726 10,6: 0: 58606 10,7: 0: 49390 10,8: - 0: 18252 + 0: 53196 11,5: 0: 61679 11,6: - 0: 62207 + 0: 61695 11,7: 0: 61695 11,8: - 0: 4095 + 0: 61678 12,4: - 0: 47359 + 0: 61695 12,5: - 0: 59583 + 0: 57599 12,6: - 0: 52991 + 0: 36606 0,9: 0: 1 -1,9: @@ -789,6 +718,8 @@ entities: 1: 136 1,9: 0: 3822 + 2,8: + 0: 35616 2,9: 0: 35775 2,10: @@ -798,6 +729,8 @@ entities: 1: 61134 2,12: 1: 238 + 3,8: + 0: 65280 3,9: 0: 65535 3,10: @@ -809,7 +742,7 @@ entities: 4,8: 0: 65504 4,9: - 0: 62463 + 0: 65535 4,10: 0: 3808 4,11: @@ -817,21 +750,26 @@ entities: 4,12: 1: 8738 0: 34944 + 5,8: + 0: 40912 5,9: - 0: 39048 - 5: 8738 + 0: 48059 5,10: 0: 4088 5,11: 1: 240 + 6,8: + 0: 65520 6,9: - 0: 15283 + 0: 48051 6,10: 0: 955 6,11: 1: 240 + 7,8: + 0: 65520 7,9: - 0: 12272 + 0: 65520 7,10: 0: 255 7,11: @@ -839,22 +777,22 @@ entities: 7,12: 0: 53076 8,9: - 0: 61426 + 0: 65522 + 8,10: + 0: 255 8,11: 1: 240 - 8,10: - 0: 238 8,12: 0: 30503 9,9: 0: 65520 9,10: - 0: 238 + 0: 255 1: 57344 9,11: 1: 61166 9,12: - 1: 16462 + 1: 49358 0: 11808 10,10: 1: 61440 @@ -880,7 +818,7 @@ entities: 0: 28672 1: 238 12,7: - 0: 61164 + 0: 61160 12,8: 0: 61166 13,4: @@ -923,6 +861,7 @@ entities: 1: 4369 16,6: 1: 273 + 0: 4096 12,9: 0: 57582 12,10: @@ -931,7 +870,7 @@ entities: 12,12: 0: 30583 13,9: - 0: 29439 + 0: 29247 13,10: 0: 119 1: 61440 @@ -951,10 +890,10 @@ entities: 1: 4369 0: 52428 15,9: - 0: 13107 + 0: 12851 1: 34952 15,10: - 0: 13107 + 0: 13106 1: 34952 15,11: 0: 13107 @@ -966,20 +905,18 @@ entities: 1: 1 8,-5: 1: 61440 - 8,-2: - 0: 61166 9,-4: - 0: 59632 + 0: 57584 9,-3: - 0: 1918 + 0: 4078 9,-2: 0: 61182 9,-5: 1: 12288 10,-4: - 0: 61936 + 0: 61680 10,-3: - 0: 1375 + 0: 4095 10,-2: 0: 65535 11,-4: @@ -993,11 +930,11 @@ entities: 12,-4: 0: 4915 1: 8 - 12,-1: - 0: 47886 12,-5: 0: 61440 1: 2048 + 12,-1: + 0: 36366 13,-4: 1: 15 13,-1: @@ -1013,8 +950,8 @@ entities: 14,-1: 0: 65322 14,-5: - 0: 12288 - 1: 18176 + 0: 12834 + 1: 17749 14,-2: 0: 8192 14,0: @@ -1023,6 +960,13 @@ entities: 0: 65287 15,0: 0: 4095 + 14,-6: + 1: 20480 + 0: 8192 + 15,-8: + 1: 3840 + 16,-8: + 1: 3840 13,1: 0: 65535 13,2: @@ -1030,9 +974,9 @@ entities: 13,3: 0: 1911 14,1: - 0: 18244 + 0: 53188 14,2: - 0: 26214 + 0: 26350 15,1: 0: 30583 15,2: @@ -1085,6 +1029,7 @@ entities: 1: 15 16,-1: 0: 26112 + 1: 4 17,0: 1: 4369 17,-1: @@ -1095,14 +1040,16 @@ entities: 0: 1029 1: 8738 16,-2: - 1: 546 + 1: 16930 0: 1028 17,-4: - 1: 4096 + 1: 4369 17,-3: 1: 4369 17,-2: 1: 4369 + 17,-5: + 1: 4369 16,12: 0: 1 12,13: @@ -1127,8 +1074,8 @@ entities: 1: 15 0: 1792 13,15: - 1: 28673 - 0: 14 + 1: 28679 + 0: 8 14,13: 1: 12561 0: 2252 @@ -1144,7 +1091,7 @@ entities: 0: 9011 1: 34952 15,14: - 0: 13091 + 0: 29475 1: 2184 15,15: 0: 273 @@ -1170,14 +1117,14 @@ entities: 1: 3979 8,14: 0: 2048 - 9,13: - 0: 802 - 1: 34956 9,14: 0: 3840 1: 14 9,15: 1: 15 + 9,13: + 0: 546 + 1: 34956 10,13: 1: 65280 10,14: @@ -1187,6 +1134,20 @@ entities: 1: 15 -1,10: 1: 34952 + 16,-6: + 0: 1284 + 1: 12834 + 16,-5: + 1: 1 + 16,-7: + 1: 8738 + 0: 1028 + 17,-8: + 1: 4352 + 17,-7: + 1: 4369 + 17,-6: + 1: 4369 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -1218,26 +1179,11 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 235 - moles: - - 27.225372 - - 102.419266 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: - 0 - - 6666.982 + - 0 - 0 - 0 - 0 @@ -1267,23 +1213,6 @@ entities: temperature: 293.15 moles: - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - 6666.982 - 0 - 0 @@ -1293,13 +1222,513 @@ entities: - 0 - 0 - 0 + - 0 + - 0 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance - type: NavMap - type: ImplicitRoof + - uid: 3564 + components: + - type: MetaData + name: Prison Station + - type: Transform + pos: 150.92255,68.575584 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: CAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: CAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 0,-2: + ind: 0,-2 + tiles: CAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAACAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAGIAAAAAAABiAAAAAAEACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABiAAAAAAMAYgAAAAADAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAQAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAEAYgAAAAACAGIAAAAAAwBiAAAAAAIACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAACAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAYgAAAAAAAGIAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAGIAAAAAAgBiAAAAAAIACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAABiAAAAAAAAYgAAAAACAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAYgAAAAADAGIAAAAAAQAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAGIAAAAAAwBiAAAAAAIACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 0,-3: + ind: 0,-3 + tiles: CAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAQAHAAAAAAAAYgAAAAABAGIAAAAAAwAHAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAgBiAAAAAAEABwAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAEACAAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAADAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAMAYgAAAAAAAGIAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAMABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAAcAAAAAAABiAAAAAAAAYgAAAAACAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAIACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAACAA== + version: 7 + 0,-4: + ind: 0,-4 + tiles: CAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAABAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAwAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAAAYgAAAAADAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAQAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAEAYgAAAAABAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAA== + version: 7 + 0,-5: + ind: 0,-5 + tiles: CAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAABAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAQAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAIACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAA== + version: 7 + 0,-6: + ind: 0,-6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 1,-3: + ind: 1,-3 + tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAAABwAAAAAAAAAAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAwBiAAAAAAMAYgAAAAABAAcAAAAAAAAAAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAwAHAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAADAAcAAAAAAAAAAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAAAHAAAAAAAAAAAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAMABwAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAwAHAAAAAAAAAAAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAMABwAAAAAAAAAAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAACAAcAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAgBiAAAAAAIABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAwAHAAAAAAAAYgAAAAACAA== + version: 7 + 1,-4: + ind: 1,-4 + tiles: YgAAAAACAGIAAAAAAwAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAIABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAQAHAAAAAAAABwAAAAAAAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAQAHAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAEABwAAAAAAAGIAAAAAAwBiAAAAAAEABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAQAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAAAAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAwBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAQAHAAAAAAAAAAAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAAABwAAAAAAAAAAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAEAYgAAAAACAGIAAAAAAwBiAAAAAAIAYgAAAAAAAAcAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAwBiAAAAAAIAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAEABwAAAAAAAAAAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAADAAcAAAAAAAAAAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAACAGIAAAAAAgAHAAAAAAAAAAAAAAAAAA== + version: 7 + 1,-2: + ind: 1,-2 + tiles: YgAAAAADAGIAAAAAAQBiAAAAAAMABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAACAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAMABwAAAAAAAGIAAAAAAgBiAAAAAAMAEQAAAAADABEAAAAAAgARAAAAAAMAEQAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAgAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAACAAcAAAAAAABiAAAAAAMAYgAAAAADABEAAAAAAQADAAAAAAEAAwAAAAAAABEAAAAAAgBiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAEABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAAAHAAAAAAAAEQAAAAABABEAAAAAAQARAAAAAAMAAwAAAAABAAMAAAAAAQARAAAAAAEAEQAAAAABABEAAAAAAwBiAAAAAAEAYgAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAIABwAAAAAAABEAAAAAAgADAAAAAAEAAwAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAABAAMAAAAAAwARAAAAAAAAYgAAAAADAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAARAAAAAAMAAwAAAAADAAMAAAAAAAADAAAAAAEAAwAAAAAAAAMAAAAAAQADAAAAAAMAEQAAAAABAGIAAAAAAwBiAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAIAAwAAAAAAAAMAAAAAAwARAAAAAAMAEQAAAAAAABEAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAIAEQAAAAABAAMAAAAAAQADAAAAAAMAEQAAAAADAGIAAAAAAwBiAAAAAAMAYgAAAAADAGIAAAAAAQBiAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAACABEAAAAAAQARAAAAAAAAEQAAAAABABEAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAABiAAAAAAIABwAAAAAAAA== + version: 7 + 2,-3: + ind: 2,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAADAGIAAAAAAQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 2,-2: + ind: 2,-2 + tiles: BwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAQAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAACAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAACAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAIABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAMAYgAAAAACAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAABAGIAAAAAAgAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAgBiAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAMAYgAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAABAGIAAAAAAwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAABiAAAAAAIABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAAAYgAAAAACAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 1,-1: + ind: 1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 2,-4: + ind: 2,-4 + tiles: YgAAAAACAGIAAAAAAQBiAAAAAAIABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAACAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAEABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAgAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 1,-5: + ind: 1,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAgAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAACAGIAAAAAAgBiAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAwBiAAAAAAMAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAABiAAAAAAMABwAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAwBiAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAABAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAACAA== + version: 7 + 2,-5: + ind: 2,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAADAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAIABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAACAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAgAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAMABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: ImplicitRoof + - 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: 15 + 0,-1: + 0: 40413 + 1,0: + 0: 7 + 1,-1: + 0: 17749 + 0,-4: + 0: 40413 + 0,-5: + 0: 39389 + 0,-3: + 0: 40413 + 0,-2: + 0: 40413 + 1,-4: + 0: 17749 + 1,-3: + 0: 17749 + 1,-2: + 0: 18261 + 1,-5: + 0: 17493 + 0,-8: + 0: 55773 + 0,-9: + 0: 55773 + 0,-7: + 0: 55773 + 0,-6: + 0: 55773 + 1,-8: + 0: 21589 + 1,-7: + 0: 21589 + 1,-6: + 0: 21621 + 1,-9: + 0: 21521 + 2,-8: + 1: 60928 + 2,-7: + 1: 61166 + 2,-6: + 1: 61166 + 3,-8: + 1: 65294 + 3,-7: + 1: 65535 + 3,-6: + 1: 65535 + 3,-9: + 1: 61152 + 4,-8: + 1: 65287 + 4,-7: + 1: 65535 + 4,-6: + 1: 65535 + 0,-12: + 0: 55773 + 0,-13: + 0: 55709 + 0,-11: + 0: 55805 + 1: 1536 + 0,-10: + 0: 55773 + 1,-12: + 0: 4125 + 1: 34816 + 1,-11: + 0: 4881 + 1: 35976 + 1,-10: + 0: 4145 + 1: 8 + 1,-13: + 0: 21573 + 2,-12: + 0: 7 + 1: 56576 + 2,-11: + 1: 57301 + 2,-10: + 1: 3269 + 3,-11: + 1: 65522 + 3,-12: + 1: 26112 + 3,-10: + 1: 1634 + 4,-12: + 1: 30704 + 4,-11: + 1: 65520 + 4,-10: + 1: 30704 + 4,-9: + 1: 63344 + 0,-16: + 0: 56733 + 0,-17: + 0: 56729 + 0,-15: + 0: 56733 + 0,-14: + 0: 56733 + 1,-16: + 0: 21829 + 1,-15: + 0: 21829 + 1,-14: + 0: 21831 + 1,-17: + 0: 21828 + 2,-16: + 1: 34952 + 2,-15: + 2: 2176 + 3,-16: + 1: 65331 + 3: 8 + 3,-15: + 4: 544 + 1: 2184 + 3,-17: + 1: 12014 + 4,-16: + 3: 3 + 1: 62216 + 4,-15: + 1: 819 + 4,-14: + 1: 30704 + 4,-13: + 1: 30704 + 0,-20: + 0: 56793 + 0,-21: + 0: 56793 + 0,-19: + 0: 56793 + 0,-18: + 0: 56793 + 1,-20: + 0: 21844 + 1,-19: + 0: 30036 + 1,-18: + 0: 21844 + 1,-21: + 0: 30036 + 4,-17: + 1: 35775 + 0,-24: + 0: 61440 + 0,-23: + 0: 56793 + 0,-22: + 0: 56793 + 1,-24: + 0: 28672 + 1,-23: + 0: 21844 + 1,-22: + 0: 21844 + 5,-12: + 1: 65535 + 5,-11: + 1: 65535 + 5,-10: + 1: 65535 + 5,-9: + 1: 65535 + 5,-13: + 1: 65535 + 5,-8: + 1: 61166 + 6,-12: + 1: 48115 + 6,-11: + 1: 48115 + 6,-10: + 1: 48115 + 6,-9: + 1: 48115 + 6,-13: + 1: 48115 + 6,-8: + 1: 64435 + 7,-12: + 1: 13104 + 7,-11: + 1: 13104 + 7,-10: + 1: 13104 + 7,-9: + 1: 47920 + 7,-13: + 1: 13104 + 8,-9: + 1: 65280 + 5,-16: + 1: 65487 + 5,-15: + 1: 53247 + 5,-14: + 1: 65535 + 5,-17: + 1: 65535 + 6,-16: + 1: 48907 + 6,-15: + 1: 3071 + 6,-14: + 1: 48115 + 6,-17: + 1: 48123 + 7,-16: + 1: 30495 + 7,-15: + 1: 1911 + 7,-14: + 1: 13104 + 7,-17: + 1: 65535 + 8,-16: + 1: 65287 + 8,-15: + 1: 4095 + 5,-7: + 1: 36607 + 5,-6: + 1: 61166 + 5,-5: + 1: 61166 + 6,-7: + 1: 7099 + 6,-6: + 1: 65535 + 6,-5: + 1: 65535 + 7,-8: + 1: 65520 + 7,-7: + 1: 4095 + 7,-6: + 1: 30583 + 7,-5: + 1: 32631 + 8,-8: + 1: 65532 + 8,-7: + 1: 4095 + 8,-6: + 1: 13107 + 8,-5: + 1: 819 + 9,-9: + 1: 13056 + 9,-8: + 1: 13105 + 9,-7: + 1: 819 + 8,-17: + 1: 30583 + 9,-16: + 1: 4352 + 9,-15: + 1: 273 + 4,-18: + 1: 34816 + 5,-18: + 1: 65348 + 5,-19: + 1: 16384 + 6,-18: + 1: 47872 + 7,-18: + 1: 65280 + 8,-18: + 1: 30464 + uniqueMixes: + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 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: + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance - proto: AirAlarm entities: + - uid: 56 + components: + - type: Transform + pos: 24.5,8.5 + parent: 2 + - type: DeviceList + devices: + - 2937 + - 2938 + - 2939 + - 2940 + - 2928 + - 2918 + - 2919 + - 2925 + - 4214 + - 4211 + - 4213 + - 4215 + - 4207 + - 3323 + - 3322 + - 3315 + - 3242 + - uid: 1602 + components: + - type: Transform + pos: 28.5,32.5 + parent: 2 + - type: DeviceList + devices: + - 2901 + - 2694 + - 1758 + - 2760 + - 1752 + - 2790 + - 2757 - uid: 2968 components: - type: Transform @@ -1312,10 +1741,66 @@ entities: - 4187 - 3981 - 3980 - - 2977 - 2978 - - 2980 - 2979 + - uid: 3162 + components: + - type: Transform + pos: 22.5,17.5 + parent: 2 + - type: DeviceList + devices: + - 4212 + - 4215 + - 4211 + - 3146 + - 3098 + - 3099 + - 3145 + - 3130 + - 2921 + - 3246 + - 11451 + - 11454 + - 11450 + - uid: 5210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,36.5 + parent: 2 + - type: DeviceList + devices: + - 2904 + - 8511 + - 2826 + - 8510 + - 2827 + - 8512 + - 2828 + - 2071 + - 8530 + - uid: 5864 + components: + - type: Transform + pos: 31.5,-3.5 + parent: 2 + - type: DeviceList + devices: + - 6714 + - 6713 + - 6751 + - 6752 + - 6736 + - 6735 + - 6727 + - 1579 + - 1462 + - 4215 + - 2935 + - 2936 + - 11482 + - 11500 - uid: 6165 components: - type: Transform @@ -1357,6 +1842,7 @@ entities: - 8245 - 8244 - 4181 + - 2464 - uid: 6524 components: - type: Transform @@ -1370,6 +1856,8 @@ entities: - 4144 - 4145 - 4154 + - 1477 + - 7733 - uid: 6526 components: - type: Transform @@ -1381,6 +1869,7 @@ entities: - 4186 - 4051 - 8221 + - 2073 - uid: 6527 components: - type: Transform @@ -1389,23 +1878,23 @@ entities: parent: 2 - type: DeviceList devices: - - 3953 - - 3949 - - 3963 + - 4188 - 4189 - - 3772 - - 3773 + - 4191 + - 2974 + - 2978 + - 3801 - 3810 - 3788 - - 3801 + - 3772 + - 3963 + - 3773 + - 3949 + - 3953 - 3820 - 3800 - - 4191 - - 4188 - - 2974 - - 2973 - - 2978 - - 2977 + - 8549 + - 8559 - uid: 6529 components: - type: Transform @@ -1413,28 +1902,26 @@ entities: parent: 2 - type: DeviceList devices: - - 4191 - - 4190 - - 4189 - - 4192 + - 3729 + - 3757 + - 3730 + - 3999 + - 3727 + - 3726 + - 2974 + - 2972 + - 2970 + - 2962 + - 2963 + - 2964 + - 8527 + - 2790 - 4218 - 4217 - - 2973 - - 2974 - - 2970 - - 2964 - - 2963 - - 2962 - - 2897 - - 2896 - - 2971 - - 2972 - - 3726 - - 3727 - - 3731 - - 3730 - - 3757 - - 3729 + - 4189 + - 4190 + - 4191 + - 4192 - uid: 6530 components: - type: Transform @@ -1443,12 +1930,11 @@ entities: parent: 2 - type: DeviceList devices: - - 2972 - - 2971 - - 4191 - - 4190 - - 3705 - 3721 + - 3705 + - 4190 + - 4191 + - 2972 - uid: 6531 components: - type: Transform @@ -1556,21 +2042,21 @@ entities: - uid: 6537 components: - type: Transform - pos: 49.5,10.5 + pos: 48.5,10.5 parent: 2 - type: DeviceList devices: - - 2956 - - 2957 - - 4197 - - 4196 - - 4195 - - 3929 - - 3924 - - 3912 - - 3894 - - 3902 + - 3922 + - 3927 - 3901 + - 3902 + - 3894 + - 3912 + - 4195 + - 4196 + - 4197 + - 2957 + - 2956 - uid: 6538 components: - type: Transform @@ -1594,12 +2080,12 @@ entities: - 6540 - 2949 - 2950 - - 4204 - 4200 - 4199 - 4198 - 3611 - 3609 + - 3349 - uid: 6542 components: - type: Transform @@ -1607,23 +2093,16 @@ entities: parent: 2 - type: DeviceList devices: - - 8224 - - 8226 - - 6540 + - 3390 + - 3526 + - 3525 + - 3349 + - 4205 + - 4200 + - 8227 - 8225 - 2947 - - 3525 - - 3390 - - 3389 - - 3526 - - 3564 - - 3563 - - 4204 - - 4202 - - 4203 - - 4205 - - 8227 - - 4200 + - 6540 - uid: 6543 components: - type: Transform @@ -1636,8 +2115,8 @@ entities: - 2947 - 8227 - 4207 - - 4204 - 3518 + - 3349 - uid: 6545 components: - type: Transform @@ -1666,7 +2145,6 @@ entities: - uid: 6547 components: - type: Transform - rot: -1.5707963267948966 rad pos: 1.5,10.5 parent: 2 - type: DeviceList @@ -1680,112 +2158,6 @@ entities: - 3316 - 3419 - 3418 - - uid: 6548 - components: - - type: Transform - pos: 26.5,17.5 - parent: 2 - - type: DeviceList - devices: - - 2921 - - 3246 - - 4212 - - 4215 - - 4211 - - 3130 - - 3145 - - 3099 - - 3146 - - 3098 - - uid: 6550 - components: - - type: Transform - pos: 11.5,29.5 - parent: 2 - - type: DeviceList - devices: - - 2915 - - 2914 - - 2913 - - 4219 - - 4226 - - 4227 - - 4245 - - 4242 - - 4231 - - 4228 - - uid: 6551 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,22.5 - parent: 2 - - type: DeviceList - devices: - - 4219 - - 4218 - - 4211 - - 4226 - - 2913 - - 2914 - - 2915 - - 2894 - - 2895 - - 2917 - - 2916 - - 3007 - - 3072 - - uid: 6552 - components: - - type: Transform - pos: 27.5,20.5 - parent: 2 - - type: DeviceList - devices: - - 4218 - - 2067 - - 2071 - - 2898 - - 2899 - - 2903 - - 2902 - - 2896 - - 2897 - - 2894 - - 2895 - - 2891 - - 2893 - - 2983 - - 2984 - - 4191 - - uid: 6553 - components: - - type: Transform - pos: 29.5,32.5 - parent: 2 - - type: DeviceList - devices: - - 4218 - - 2071 - - 2067 - - 4272 - - 4221 - - 2909 - - 2910 - - 2911 - - 2905 - - 2906 - - 2908 - - 2907 - - 2901 - - 2900 - - 2898 - - 4275 - - 4223 - - 2738 - - 2728 - - 2741 - - 2729 - uid: 6554 components: - type: Transform @@ -1802,21 +2174,18 @@ entities: - uid: 6555 components: - type: Transform - pos: 16.5,40.5 + pos: 17.5,40.5 parent: 2 - type: DeviceList devices: - - 2067 - - 4272 - - 2908 - - 2907 - - 2906 - - 2905 - 396 - - 925 - - 1554 - - 3965 + - 8475 - 2725 + - 3965 + - 1554 + - 1624 + - 8534 + - 4272 - 4222 - uid: 6556 components: @@ -1825,28 +2194,13 @@ entities: parent: 2 - type: DeviceList devices: - - 2067 - - 4221 - - 2909 - - 2910 - - 2911 - - 1309 + - 2406 + - 1741 + - 1735 - 3038 - - 1280 - - 1278 - - uid: 6557 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,36.5 - parent: 2 - - type: DeviceList - devices: - - 2904 - - 2172 - - 2828 - - 2826 - - 2827 + - 1309 + - 4221 + - 8534 - uid: 6558 components: - type: Transform @@ -1854,12 +2208,14 @@ entities: parent: 2 - type: DeviceList devices: + - 8395 + - 2912 + - 2850 + - 8498 + - 2849 - 2071 - 4225 - - 2849 - - 2850 - 2867 - - 2912 - uid: 6559 components: - type: Transform @@ -1868,65 +2224,23 @@ entities: - type: DeviceList devices: - 2904 - - 2901 - - 2900 + - 8472 + - 8473 + - 8474 + - 8471 + - 7657 + - 1831 + - 8477 - 2912 - - 2899 - - 2902 - - 2903 - - 2172 - - 4225 - - 2067 - - 2071 - - 4218 - - 2876 - - 2874 - - 2869 - 3931 - - 3932 - - uid: 6561 - components: - - type: Transform - pos: 23.5,8.5 - parent: 2 - - type: DeviceList - devices: - - 2937 - - 2938 - - 2939 - - 2940 - - 2928 - - 2918 - - 2919 - - 2925 - - 4214 - - 4211 - - 4213 - - 4215 - - 4207 - - 3323 - - 3322 - - 3315 - - 3242 - - uid: 6562 - components: - - type: Transform - pos: 24.5,-2.5 - parent: 2 - - type: DeviceList - devices: - - 8229 - - 8226 - - 2935 - - 4203 - - 4205 - - 4204 - - 4215 - - 3263 - - 3266 - - 3285 - - 3282 - - 3281 + - 2869 + - 7658 + - 1934 + - 2071 + - 8530 + - 2790 + - 4225 + - 8534 - uid: 6563 components: - type: Transform @@ -1935,15 +2249,14 @@ entities: parent: 2 - type: DeviceList devices: - - 2944 - - 4216 - - 4202 - - 4204 - - 3092 - - 3128 - - 3082 - 3097 - - 8224 + - 11536 + - 10339 + - 3094 + - 11530 + - 2628 + - 4216 + - 2944 - uid: 6564 components: - type: Transform @@ -1951,21 +2264,23 @@ entities: parent: 2 - type: DeviceList devices: - - 2936 - - 2940 - - 2939 - - 2938 - - 2937 - 2941 - 2942 - 2943 + - 2937 + - 2938 + - 2939 + - 2940 + - 2936 + - 2935 - 3246 + - 3244 + - 3243 - 4215 - - 4212 - 4216 - 4214 - - 3243 - - 3244 + - 4212 + - 1462 - uid: 6572 components: - type: Transform @@ -1986,6 +2301,18 @@ entities: - 2964 - 2963 - 2962 + - uid: 6614 + components: + - type: Transform + pos: 13.5,32.5 + parent: 2 + - type: DeviceList + devices: + - 6682 + - 6681 + - 8539 + - 6659 + - 6671 - uid: 7434 components: - type: Transform @@ -1994,39 +2321,30 @@ entities: parent: 2 - type: DeviceList devices: - - 2920 + - 4212 + - 4211 + - 8233 + - 4218 + - 4214 + - 2897 - 2919 - 2918 - - 2917 - 2916 - 2922 - - 4211 - - 4219 - - 4214 - - 8233 - - 4212 - 3118 - 3119 - 3185 - 3184 + - 2802 + - 8545 + - 8546 + - 11449 - uid: 8220 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,47.5 parent: 2 - - type: DeviceList - devices: - - 4188 - - 4187 - - 4186 - - 4010 - - 4015 - - 4043 - - 4035 - - 2980 - - 2979 - - 8221 - uid: 8222 components: - type: Transform @@ -2036,7 +2354,6 @@ entities: - type: DeviceList devices: - 4216 - - 4202 - 4197 - 4215 - 4217 @@ -2070,19 +2387,15 @@ entities: parent: 2 - type: DeviceList devices: - - 8225 - - 8229 - - 2931 - - 2932 - - 2930 + - 3349 - 4205 - - 4203 - - 4204 - 4213 - - 3370 - 3360 - - 3379 + - 3370 - 3378 + - 3379 + - 2931 + - 8225 - uid: 8236 components: - type: Transform @@ -2096,6 +2409,7 @@ entities: - 4210 - 4211 - 3200 + - 11438 - uid: 8240 components: - type: Transform @@ -2117,118 +2431,374 @@ entities: parent: 2 - type: DeviceList devices: - - 2932 - - 2931 - - 2930 - - 2929 - - 2928 - - 4214 - - 4213 - - 4207 - - 4205 - - 3348 - - 3351 + - 6463 - 3380 - - 3350 -- proto: AirAlarmElectronics + - 3351 + - 3348 + - 4205 + - 4207 + - 4213 + - 4214 + - 2928 + - 2929 + - 2931 + - uid: 8509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,39.5 + parent: 2 + - type: DeviceList + devices: + - 8474 + - 8473 + - 8472 + - 2406 + - 1741 + - 1735 + - 8475 + - 4223 + - 1589 + - 1278 + - 1280 + - 4221 + - 8534 + - 2071 + - 4272 + - uid: 8532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 1606 + - 8527 + - 2901 + - 8471 + - 7657 + - 1831 + - 8477 + - 3932 + - 8484 + - 8507 + - 8508 + - 2876 + - 2874 + - 2757 + - 2790 + - 2071 + - 6688 + - 4191 + - uid: 8538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,25.5 + parent: 2 + - type: DeviceList + devices: + - 6682 + - 6681 + - 6675 + - 8539 + - 8543 + - 6656 + - 6654 + - 6650 + - 6651 + - uid: 8540 + components: + - type: Transform + pos: 23.5,21.5 + parent: 2 + - type: DeviceList + devices: + - 6675 + - 6688 + - 2790 + - uid: 8542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,23.5 + parent: 2 + - type: DeviceList + devices: + - 6681 + - 6675 + - 4218 + - 6688 + - 8543 + - 6644 + - 6643 + - uid: 8544 + components: + - type: Transform + pos: 25.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 4218 + - 6675 + - 4211 + - 4191 + - 2916 + - uid: 10232 + components: + - type: Transform + pos: 16.5,-39.5 + parent: 3564 + - type: DeviceList + devices: + - 9636 + - 9638 + - 9637 + - 9639 + - 10225 + - 10226 + - 10228 + - 10231 + - 10030 + - 10057 + - 10056 + - 10029 + - 10031 + - uid: 10233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-31.5 + parent: 3564 + - type: DeviceList + devices: + - 9631 + - 9632 + - 9633 + - 9634 + - 9635 + - 9636 + - 9638 + - 9637 + - 9640 + - 9641 + - 10222 + - 10225 + - 10226 + - 10228 + - 10231 + - 10229 + - 10227 + - 10230 + - 10114 + - 10113 + - 10116 + - 10115 + - 10014 + - 10017 + - 10079 + - 10080 + - 10013 + - 10016 + - 10015 + - 10012 + - 9926 + - uid: 10234 + components: + - type: Transform + pos: 34.5,-24.5 + parent: 3564 + - type: DeviceList + devices: + - 9635 + - 10225 + - 10226 + - 10228 + - 10227 + - 10176 + - 10180 + - 10181 + - 10178 + - 10177 + - 10182 + - uid: 10235 + components: + - type: Transform + pos: 31.5,-16.5 + parent: 3564 + - type: DeviceList + devices: + - 9631 + - 9632 + - 10225 + - 10226 + - 10228 + - 10230 + - 10198 + - 10200 + - 10199 + - 10197 + - uid: 10236 + components: + - type: Transform + pos: 19.5,-19.5 + parent: 3564 + - type: DeviceList + devices: + - 9634 + - 9633 + - 10225 + - 10226 + - 10228 + - 10229 + - 10129 + - 10132 + - 10133 + - 10130 + - 10131 + - 10134 + - uid: 10237 + components: + - type: Transform + pos: 16.5,-64.5 + parent: 3564 + - type: DeviceList + devices: + - 9647 + - 9646 + - 10222 + - 10220 + - 10221 + - 9808 + - uid: 10238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-62.5 + parent: 3564 + - type: DeviceList + devices: + - 9645 + - 9646 + - 10220 + - 10221 + - 10222 + - 9809 + - 9807 + - uid: 10239 + components: + - type: Transform + pos: 19.5,-62.5 + parent: 3564 + - type: DeviceList + devices: + - 9641 + - 9640 + - 9645 + - 9642 + - 9643 + - 9644 + - 9649 + - 9647 + - 9650 + - 10220 + - 10221 + - 10222 + - 10223 + - 10224 + - 10225 + - 10226 + - 10228 + - 9838 + - 9818 + - 9827 + - 9828 + - 9871 + - 9853 + - 9854 + - 9872 + - uid: 10240 + components: + - type: Transform + pos: 31.5,-62.5 + parent: 3564 + - type: DeviceList + devices: + - 9648 + - 9649 + - 10222 + - 10223 + - 10224 + - 9835 + - 9837 + - 9836 + - 9834 + - uid: 10241 + components: + - type: Transform + pos: 31.5,-57.5 + parent: 3564 + - type: DeviceList + devices: + - 9642 + - 9643 + - 9644 + - 9648 + - 10224 + - 10222 + - 10223 + - 9878 + - 9880 + - 9881 + - 9879 + - uid: 11566 + components: + - type: Transform + pos: 21.5,32.5 + parent: 2 + - type: DeviceList + devices: + - 7749 +- proto: AirCanister entities: - - uid: 765 + - uid: 53 components: - type: Transform - pos: 9.5,-12.5 + pos: 38.5,-7.5 parent: 2 - - uid: 1932 + - uid: 1941 components: - type: Transform - pos: 9.5,-12.5 + pos: 38.5,-6.5 parent: 2 -- proto: Airlock +- proto: AirlockAtmosphericsLocked entities: - - uid: 28 + - uid: 17 components: - type: Transform - pos: 9.5,1.5 + pos: 30.5,-0.5 parent: 2 - - uid: 29 + - uid: 223 components: - type: Transform - pos: 13.5,1.5 + pos: 30.5,-2.5 parent: 2 - - uid: 3230 - components: - - type: Transform - pos: 30.5,1.5 - parent: 2 - - uid: 4054 - components: - - type: Transform - pos: 44.5,-10.5 - parent: 2 - - uid: 4055 - components: - - type: Transform - pos: 42.5,-10.5 - parent: 2 - - uid: 4056 - components: - - type: Transform - pos: 40.5,-10.5 - parent: 2 -- proto: AirlockArmoryLocked - entities: - - uid: 1010 + - uid: 2056 components: - type: Transform pos: 36.5,-6.5 parent: 2 -- proto: AirlockAtmosphericsLocked - entities: - - uid: 1731 + - type: Door + secondsUntilStateChange: -12907.095 + state: Opening + - type: DeviceLinkSource + lastSignals: + DoorStatus: True + - uid: 6838 components: - type: Transform - pos: 28.5,23.5 - parent: 2 - - uid: 1788 - components: - - type: Transform - pos: 31.5,29.5 - parent: 2 - - uid: 3239 - components: - - type: Transform - pos: 31.5,30.5 - parent: 2 -- proto: AirlockBarKitchenLocked - entities: - - uid: 1080 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-2.5 - parent: 2 -- proto: AirlockBarLocked - entities: - - uid: 1518 - components: - - type: Transform - pos: 24.5,-0.5 - parent: 2 -- proto: AirlockCargoLocked - entities: - - uid: 88 - components: - - type: Transform - pos: 16.5,21.5 - parent: 2 - - uid: 205 - components: - - type: Transform - pos: 16.5,22.5 - parent: 2 - - uid: 759 - components: - - type: Transform - pos: 16.5,25.5 + pos: 30.5,1.5 parent: 2 - proto: AirlockChapelLocked entities: @@ -2237,21 +2807,6 @@ entities: - type: Transform pos: 0.5,16.5 parent: 2 -- proto: AirlockChiefEngineerLocked - entities: - - uid: 1601 - components: - - type: Transform - pos: 42.5,33.5 - parent: 2 -- proto: AirlockChiefMedicalOfficerGlassLocked - entities: - - uid: 551 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,13.5 - parent: 2 - proto: AirlockCommandLocked entities: - uid: 971 @@ -2259,6 +2814,11 @@ entities: - type: Transform pos: 16.5,57.5 parent: 2 + - uid: 6120 + components: + - type: Transform + pos: 18.5,57.5 + parent: 2 - proto: AirlockEngineering entities: - uid: 4564 @@ -2266,20 +2826,28 @@ entities: - type: Transform pos: 33.5,49.5 parent: 2 +- proto: AirlockEngineeringGlassLocked + entities: + - uid: 621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,36.5 + parent: 2 + - uid: 8535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,34.5 + parent: 2 + - uid: 8536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,34.5 + parent: 2 - proto: AirlockEngineeringLocked entities: - - uid: 666 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,20.5 - parent: 2 - - uid: 686 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-11.5 - parent: 2 - uid: 760 components: - type: Transform @@ -2300,29 +2868,27 @@ entities: - type: Transform pos: 53.5,20.5 parent: 2 - - uid: 1744 + - uid: 2903 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,20.5 + pos: 35.5,21.5 parent: 2 - - uid: 1760 + - uid: 3113 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,23.5 - parent: 2 - - uid: 2757 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,36.5 - parent: 2 - - uid: 7603 - components: - - type: Transform - pos: 37.5,30.5 + pos: 2.5,6.5 parent: 2 + - type: AccessReader + access: + - - Borg + - - Captain + - - CentralCommand + - - ChiefEngineer + - - Engineering + - - Research + - - ResearchDirector + - - StationAi - proto: AirlockEVALocked entities: - uid: 1928 @@ -2331,218 +2897,101 @@ entities: rot: 3.141592653589793 rad pos: 53.5,38.5 parent: 2 -- proto: AirlockExternalAtmosphericsLocked +- proto: AirlockExternalCommandLocked entities: - - uid: 1438 + - uid: 140 components: - type: Transform - pos: 20.5,39.5 + pos: 15.5,58.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 1512: + 657: - - DoorStatus - DoorBolt - - uid: 1512 + - uid: 376 components: - type: Transform - pos: 18.5,39.5 + pos: 55.5,60.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 657 + components: + - type: Transform + pos: 16.5,60.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 1438: - - - DoorStatus - - DoorBolt - - uid: 1831 - components: - - type: Transform - pos: 11.5,38.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 1934: - - - DoorStatus - - DoorBolt - - uid: 1934 - components: - - type: Transform - pos: 11.5,40.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 1831: + 140: - - DoorStatus - DoorBolt - proto: AirlockExternalEngineeringLocked entities: - uid: 843 - components: - - type: Transform - pos: -1.5,-10.5 - parent: 2 - - type: Door - secondsUntilStateChange: -6325.9316 - state: Opening - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 6731: - - - DoorStatus - - DoorBolt - lastSignals: - DoorStatus: True - - uid: 2744 components: - type: Transform pos: 58.5,63.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 2745: - - - DoorStatus - - DoorBolt - - uid: 2745 + - uid: 7389 components: - type: Transform - pos: 58.5,65.5 + pos: -0.5,-10.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 2744: - - - DoorStatus - - DoorBolt - - uid: 4265 - components: - - type: Transform - pos: 16.5,60.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 4506: - - - DoorStatus - - DoorBolt - - uid: 4499 - components: - - type: Transform - pos: 55.5,60.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 4500: - - - DoorStatus - - DoorBolt - - uid: 4500 - components: - - type: Transform - pos: 53.5,60.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 4499: - - - DoorStatus - - DoorBolt - - uid: 4506 - components: - - type: Transform - pos: 15.5,58.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 4265: - - - DoorStatus - - DoorBolt - - uid: 4558 - components: - - type: Transform - pos: 39.5,50.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 4724: - - - DoorStatus - - DoorBolt - - uid: 4724 - components: - - type: Transform - pos: 41.5,50.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 4558: - - - DoorStatus - - DoorBolt - - uid: 4725 - components: - - type: Transform - pos: 37.5,53.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 4726: - - - DoorStatus - - DoorBolt - - uid: 4726 - components: - - type: Transform - pos: 36.5,54.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 4725: - - - DoorStatus - - DoorBolt - - uid: 6731 - components: - - type: Transform - pos: 0.5,-10.5 - parent: 2 - - type: Door - secondsUntilStateChange: -6328.9985 - state: Opening - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 843: - - - DoorStatus - - DoorBolt - lastSignals: - DoorStatus: True -- proto: AirlockExternalGlassAtmosphericsLocked +- proto: AirlockExternalGlass entities: - - uid: 621 + - uid: 454 components: - type: Transform - pos: 0.5,36.5 + rot: -1.5707963267948966 rad + pos: 11.5,30.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 6692: + - - DoorStatus + - InputA + - uid: 504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,29.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 6692: + - - DoorStatus + - InputB + - uid: 2984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,27.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 504: + - - DoorStatus + - DoorBolt + 454: + - - DoorStatus + - DoorBolt +- proto: AirlockExternalGlassEngineeringLocked + entities: + - uid: 707 + components: + - type: Transform + pos: 11.5,40.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 @@ -2552,6 +3001,30 @@ entities: - - DoorStatus - DoorBolt - uid: 721 + components: + - type: Transform + pos: 11.5,38.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 707: + - - DoorStatus + - DoorBolt + - uid: 1528 + components: + - type: Transform + pos: 0.5,36.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 1587: + - - DoorStatus + - DoorBolt + - uid: 1587 components: - type: Transform pos: 0.5,34.5 @@ -2560,21 +3033,9 @@ entities: invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 621: + 1528: - - DoorStatus - DoorBolt -- proto: AirlockExternalGlassCargoLocked - entities: - - uid: 631 - components: - - type: Transform - pos: 10.5,23.5 - parent: 2 - - uid: 1954 - components: - - type: Transform - pos: 10.5,25.5 - parent: 2 - proto: AirlockExternalGlassLocked entities: - uid: 1829 @@ -2601,18 +3062,13 @@ entities: 1847: - - DoorStatus - DoorBolt - - uid: 2502 + - uid: 3232 components: - type: Transform - pos: 62.5,48.5 + pos: 57.5,-18.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 2515: - - - DoorStatus - - DoorBolt - proto: AirlockExternalGlassShuttleArrivals entities: - uid: 2515 @@ -2621,13 +3077,6 @@ entities: rot: 1.5707963267948966 rad pos: 64.5,48.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 6658: - - - DoorStatus - - InputA - - - DockStatus - - InputB - type: DeviceLinkSink invokeCounter: 1 - proto: AirlockExternalGlassShuttleEmergencyLocked @@ -2661,117 +3110,54 @@ entities: - InputB - type: DeviceLinkSink invokeCounter: 1 -- proto: AirlockExternalGlassShuttleLocked + - uid: 3266 + components: + - type: Transform + pos: 57.5,-20.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3235: + - - DoorStatus + - InputA + - - DockStatus + - InputB +- proto: AirlockExternalGlassShuttleEscape entities: - - uid: 729 + - uid: 674 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,23.5 + pos: 10.5,20.5 parent: 2 - - uid: 1795 + - uid: 1952 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,25.5 + pos: 10.5,24.5 parent: 2 -- proto: AirlockFreezerLocked +- proto: AirlockExternalLocked entities: - - uid: 1517 + - uid: 2795 components: - type: Transform - pos: 27.5,-10.5 + pos: 62.5,59.5 parent: 2 - proto: AirlockGlass entities: - - uid: 381 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,3.5 - parent: 2 - - uid: 2779 + - uid: 4740 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,-9.5 + pos: 55.5,36.5 parent: 2 - - uid: 3228 +- proto: AirlockGlassShuttle + entities: + - uid: 10382 components: - type: Transform - pos: 30.5,-0.5 - parent: 2 - - uid: 4064 - components: - - type: Transform - pos: 30.5,-2.5 - parent: 2 - - uid: 5900 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,28.5 - parent: 2 - - uid: 8278 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,5.5 - parent: 2 - - uid: 8279 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,6.5 - parent: 2 - - uid: 8280 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,5.5 - parent: 2 - - uid: 8281 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,4.5 - parent: 2 - - uid: 8282 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,19.5 - parent: 2 - - uid: 8283 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,18.5 - parent: 2 - - uid: 8284 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,28.5 - parent: 2 - - uid: 8285 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-11.5 - parent: 2 - - uid: 8287 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,38.5 - parent: 2 - - uid: 8288 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,38.5 - parent: 2 + pos: 22.5,-72.5 + parent: 3564 - proto: AirlockHeadOfPersonnelLocked entities: - uid: 7177 @@ -2779,14 +3165,6 @@ entities: - type: Transform pos: 42.5,26.5 parent: 2 -- proto: AirlockHydroponicsLocked - entities: - - uid: 1570 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-4.5 - parent: 2 - proto: AirlockMaintCommandLocked entities: - uid: 2366 @@ -2794,6 +3172,13 @@ entities: - type: Transform pos: 62.5,27.5 parent: 2 +- proto: AirlockMaintEngiLocked + entities: + - uid: 51 + components: + - type: Transform + pos: 20.5,20.5 + parent: 2 - proto: AirlockMaintHydroLocked entities: - uid: 3587 @@ -2804,59 +3189,48 @@ entities: parent: 2 - proto: AirlockMaintLocked entities: - - uid: 182 + - uid: 686 components: - type: Transform - pos: 2.5,6.5 - parent: 2 - - uid: 1578 - components: - - type: Transform - pos: 50.5,20.5 - parent: 2 - - uid: 2122 - components: - - type: Transform - pos: 51.5,22.5 - parent: 2 - - type: Door - secondsUntilStateChange: -56215.523 - state: Opening - - type: DeviceLinkSource - lastSignals: - DoorStatus: True - - uid: 2123 - components: - - type: Transform - pos: 51.5,18.5 + pos: 6.5,-9.5 parent: 2 - uid: 2672 components: - type: Transform pos: 3.5,-8.5 parent: 2 - - uid: 3588 + - uid: 3711 components: - type: Transform - pos: 32.5,-10.5 + pos: 19.5,20.5 parent: 2 - uid: 5219 components: - type: Transform pos: 43.5,-14.5 parent: 2 + - uid: 5971 + components: + - type: Transform + pos: 17.5,19.5 + parent: 2 - uid: 7181 components: - type: Transform pos: 61.5,55.5 parent: 2 -- proto: AirlockMaintSecLocked - entities: - - uid: 1519 + - uid: 8548 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-8.5 + pos: 36.5,18.5 + parent: 2 +- proto: AirlockMedicalLocked + entities: + - uid: 8547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,17.5 parent: 2 - proto: AirlockMedicalMorgueLocked entities: @@ -2872,20 +3246,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,14.5 parent: 2 -- proto: AirlockQuartermasterGlassLocked - entities: - - uid: 1921 - components: - - type: Transform - pos: 13.5,29.5 - parent: 2 -- proto: AirlockResearchDirectorLocked - entities: - - uid: 1505 - components: - - type: Transform - pos: 50.5,12.5 - parent: 2 - proto: AirlockScienceLocked entities: - uid: 260 @@ -2898,45 +3258,165 @@ entities: - type: Transform pos: 50.5,0.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3928: + - - DoorStatus + - DoorBolt + - uid: 3928 + components: + - type: Transform + pos: 49.5,1.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 1259: + - - DoorStatus + - DoorBolt + - uid: 4941 + components: + - type: Transform + pos: 50.5,10.5 + parent: 2 - uid: 6995 components: - type: Transform pos: 57.5,6.5 parent: 2 -- proto: AirSensor +- proto: AirlockSecurityLocked entities: - - uid: 2067 + - uid: 10378 components: - type: Transform - pos: 28.5,28.5 + rot: -1.5707963267948966 rad + pos: 18.5,-60.5 + parent: 3564 + - uid: 10379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-67.5 + parent: 3564 + - uid: 10380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-64.5 + parent: 3564 + - uid: 10381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-70.5 + parent: 3564 + - uid: 10383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-41.5 + parent: 3564 + - uid: 10384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-41.5 + parent: 3564 + - uid: 10385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-43.5 + parent: 3564 + - uid: 10386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-43.5 + parent: 3564 + - uid: 10387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-39.5 + parent: 3564 + - uid: 10388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-39.5 + parent: 3564 +- proto: AirSensor + entities: + - uid: 1462 + components: + - type: Transform + pos: 28.5,-6.5 parent: 2 - type: DeviceNetwork deviceLists: - - 6559 - - 6553 - - 6555 - - 6556 - - 6552 + - 5864 + - 6564 - uid: 2071 components: - type: Transform - pos: 34.5,32.5 + pos: 34.5,34.5 parent: 2 - type: DeviceNetwork deviceLists: + - 8509 + - 5210 - 6559 - 6558 - - 6553 - - 6552 + - 8532 - uid: 2172 components: - type: Transform pos: 35.5,39.5 parent: 2 + - uid: 2628 + components: + - type: Transform + pos: 37.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6563 + - uid: 2757 + components: + - type: Transform + pos: 28.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8532 + - 1602 + - uid: 2790 + components: + - type: Transform + pos: 33.5,26.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 6557 - 6559 + - 8532 + - 1602 + - 8540 + - 6529 + - uid: 3349 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6543 + - 6539 + - 8231 + - 6542 - uid: 4186 components: - type: Transform @@ -2944,7 +3424,6 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 8220 - 6526 - uid: 4187 components: @@ -2954,7 +3433,6 @@ entities: - type: DeviceNetwork deviceLists: - 2968 - - 8220 - 6526 - uid: 4188 components: @@ -2963,19 +3441,18 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6527 - 2968 - - 8220 + - 6527 - uid: 4189 components: - type: Transform - pos: 52.5,33.5 + pos: 55.5,33.5 parent: 2 - type: DeviceNetwork deviceLists: - - 6529 - - 6527 - 2968 + - 6527 + - 6529 - uid: 4190 components: - type: Transform @@ -2983,8 +3460,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6529 - 6530 + - 6529 - uid: 4191 components: - type: Transform @@ -2992,12 +3469,13 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6552 - - 6529 - 6530 - 6532 - 6572 + - 8532 + - 8544 - 6527 + - 6529 - uid: 4192 components: - type: Transform @@ -3005,9 +3483,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6529 - 6532 - 6531 + - 6529 - uid: 4193 components: - type: Transform @@ -3085,14 +3563,14 @@ entities: - uid: 4200 components: - type: Transform - pos: 46.5,-16.5 + pos: 45.5,-16.5 parent: 2 - type: DeviceNetwork deviceLists: - - 6542 - 6539 - 8228 - 6538 + - 6542 - uid: 4201 components: - type: Transform @@ -3102,39 +3580,6 @@ entities: deviceLists: - 6535 - 6536 - - uid: 4202 - components: - - type: Transform - pos: 34.5,-3.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 8222 - - 6563 - - 6542 - - uid: 4203 - components: - - type: Transform - pos: 29.5,-7.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6542 - - 6562 - - 8231 - - uid: 4204 - components: - - type: Transform - pos: 38.5,-12.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6563 - - 6542 - - 6539 - - 6562 - - 8231 - - 6543 - uid: 4205 components: - type: Transform @@ -3142,10 +3587,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6542 - - 6562 - - 8231 - 8241 + - 8231 + - 6542 - uid: 4206 components: - type: Transform @@ -3158,11 +3602,13 @@ entities: - uid: 4207 components: - type: Transform + anchored: False pos: 5.5,2.5 parent: 2 + - type: Physics + bodyType: Dynamic - type: DeviceNetwork deviceLists: - - 6561 - 6547 - 6546 - 6165 @@ -3170,6 +3616,7 @@ entities: - 8241 - 8240 - 6543 + - 56 - uid: 4208 components: - type: Transform @@ -3205,11 +3652,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6551 - - 6561 - - 7434 - - 6548 + - 56 - 8236 + - 8544 + - 3162 + - 7434 - uid: 4212 components: - type: Transform @@ -3218,8 +3665,8 @@ entities: - type: DeviceNetwork deviceLists: - 6564 + - 3162 - 7434 - - 6548 - uid: 4213 components: - type: Transform @@ -3227,10 +3674,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 8231 - - 6561 - 6165 - 8241 + - 56 + - 8231 - uid: 4214 components: - type: Transform @@ -3238,11 +3685,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6564 - - 6561 - - 7434 + - 56 - 6165 - 8241 + - 6564 + - 7434 - uid: 4215 components: - type: Transform @@ -3251,10 +3698,10 @@ entities: - type: DeviceNetwork deviceLists: - 8222 + - 56 + - 5864 - 6564 - - 6562 - - 6561 - - 6548 + - 3162 - uid: 4216 components: - type: Transform @@ -3265,8 +3712,8 @@ entities: - 6572 - 8222 - 6533 - - 6563 - 6564 + - 6563 - uid: 4217 components: - type: Transform @@ -3274,10 +3721,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6529 - 6572 - 6531 - 8222 + - 6529 - uid: 4218 components: - type: Transform @@ -3285,21 +3732,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6559 - - 6553 - - 6552 - - 6551 - - 6529 - - uid: 4219 - components: - - type: Transform - pos: 18.5,21.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6551 - - 6550 + - 8542 + - 8544 - 7434 + - 6529 - uid: 4221 components: - type: Transform @@ -3307,8 +3743,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6553 - 6556 + - 8509 - uid: 4222 components: - type: Transform @@ -3316,8 +3752,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6555 - 6554 + - 6555 - uid: 4225 components: - type: Transform @@ -3327,15 +3763,6 @@ entities: deviceLists: - 6559 - 6558 - - uid: 4226 - components: - - type: Transform - pos: 13.5,24.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6551 - - 6550 - uid: 4272 components: - type: Transform @@ -3343,9 +3770,57 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6553 - - 6555 - 6554 + - 8509 + - 6555 + - uid: 6675 + components: + - type: Transform + pos: 17.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8538 + - 8542 + - 8540 + - 8544 + - uid: 6681 + components: + - type: Transform + pos: 13.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6614 + - 8538 + - 8542 + - uid: 6682 + components: + - type: Transform + pos: 13.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6614 + - 8538 + - uid: 6688 + components: + - type: Transform + pos: 27.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8532 + - 8542 + - 8540 + - uid: 7749 + components: + - type: Transform + pos: 21.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11566 - uid: 8227 components: - type: Transform @@ -3353,9 +3828,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6542 - 6165 - 6543 + - 6542 - uid: 8233 components: - type: Transform @@ -3363,9 +3838,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 7434 - 8236 - 6547 + - 7434 - uid: 8243 components: - type: Transform @@ -3382,12 +3857,160 @@ entities: - type: DeviceNetwork deviceLists: - 6523 -- proto: AltarSpawner - entities: - - uid: 317 + - uid: 8530 components: - type: Transform - pos: -5.5,14.5 + pos: 33.5,38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5210 + - 6559 + - uid: 8534 + components: + - type: Transform + pos: 24.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6556 + - 8509 + - 6555 + - 6559 + - uid: 10220 + components: + - type: Transform + pos: 15.5,-60.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10238 + - 10237 + - 10239 + - uid: 10221 + components: + - type: Transform + pos: 17.5,-65.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10238 + - 10237 + - 10239 + - uid: 10222 + components: + - type: Transform + pos: 22.5,-62.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10238 + - 10237 + - 10239 + - 10241 + - 10240 + - 10233 + - uid: 10223 + components: + - type: Transform + pos: 30.5,-59.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10239 + - 10241 + - 10240 + - uid: 10224 + components: + - type: Transform + pos: 31.5,-65.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10239 + - 10241 + - 10240 + - uid: 10225 + components: + - type: Transform + pos: 22.5,-52.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10239 + - 10233 + - 10232 + - 10236 + - 10234 + - 10235 + - uid: 10226 + components: + - type: Transform + pos: 22.5,-40.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10239 + - 10233 + - 10232 + - 10236 + - 10234 + - 10235 + - uid: 10227 + components: + - type: Transform + pos: 32.5,-28.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - 10234 + - uid: 10228 + components: + - type: Transform + pos: 22.5,-28.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10239 + - 10233 + - 10232 + - 10236 + - 10234 + - 10235 + - uid: 10229 + components: + - type: Transform + pos: 14.5,-26.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - 10236 + - uid: 10230 + components: + - type: Transform + pos: 28.5,-20.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - 10235 + - uid: 10231 + components: + - type: Transform + pos: 14.5,-41.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - 10232 +- proto: AltarSpawner + entities: + - uid: 11349 + components: + - type: Transform + pos: -4.5,14.5 parent: 2 - proto: AlwaysPoweredLightExterior entities: @@ -3426,6 +4049,18 @@ entities: - type: Transform pos: -0.5,-16.5 parent: 2 + - uid: 4420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,63.5 + parent: 2 + - uid: 4558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,63.5 + parent: 2 - uid: 5753 components: - type: Transform @@ -3442,15 +4077,46 @@ entities: - type: Transform pos: 55.5,-3.5 parent: 2 -- proto: AmmoTechFab - entities: - - uid: 1370 + - uid: 7114 components: - type: Transform - pos: 40.5,-4.5 + rot: -1.5707963267948966 rad + pos: 66.5,-11.5 parent: 2 + - uid: 11207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-21.5 + parent: 2 +- proto: AmeController + entities: + - uid: 7798 + components: + - type: Transform + pos: 45.5,41.5 + parent: 2 +- proto: AmmoTechFab + entities: + - uid: 9796 + components: + - type: Transform + pos: 30.5,-69.5 + parent: 3564 - proto: APCBasic entities: + - uid: 3024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,22.5 + parent: 2 + - uid: 4235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,28.5 + parent: 2 - uid: 4916 components: - type: Transform @@ -3503,17 +4169,6 @@ entities: - type: Transform pos: 44.5,21.5 parent: 2 - - uid: 4930 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,20.5 - parent: 2 - - uid: 4931 - components: - - type: Transform - pos: 15.5,29.5 - parent: 2 - uid: 4932 components: - type: Transform @@ -3522,7 +4177,7 @@ entities: - uid: 4933 components: - type: Transform - rot: 1.5707963267948966 rad + rot: -1.5707963267948966 rad pos: 22.5,39.5 parent: 2 - uid: 4934 @@ -3531,12 +4186,6 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,31.5 parent: 2 - - uid: 4935 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,34.5 - parent: 2 - uid: 4936 components: - type: Transform @@ -3549,21 +4198,10 @@ entities: rot: 1.5707963267948966 rad pos: 40.5,12.5 parent: 2 - - uid: 4939 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,11.5 - parent: 2 - - uid: 4941 - components: - - type: Transform - pos: 51.5,7.5 - parent: 2 - uid: 4942 components: - type: Transform - rot: -1.5707963267948966 rad + rot: -3.141592653589793 rad pos: 59.5,4.5 parent: 2 - uid: 4943 @@ -3583,17 +4221,11 @@ entities: - type: Transform pos: 35.5,3.5 parent: 2 - - uid: 4946 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-3.5 - parent: 2 - uid: 4948 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-11.5 + pos: 4.5,-10.5 parent: 2 - uid: 4949 components: @@ -3647,18 +4279,120 @@ entities: - type: Transform pos: 25.5,-13.5 parent: 2 -- proto: APCElectronics + - uid: 6164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,6.5 + parent: 2 + - uid: 6660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,30.5 + parent: 2 + - uid: 7012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-6.5 + parent: 2 + - uid: 7571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-2.5 + parent: 2 + - uid: 8274 + components: + - type: Transform + pos: 50.5,15.5 + parent: 2 + - uid: 8290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,24.5 + parent: 2 +- proto: APCHighCapacity entities: - - uid: 2181 + - uid: 9462 components: - type: Transform - pos: 10.5,-12.5 - parent: 2 - - uid: 2183 + pos: 15.5,-39.5 + parent: 3564 + - uid: 9463 components: - type: Transform - pos: 10.5,-12.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: 19.5,-39.5 + parent: 3564 + - uid: 9464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-31.5 + parent: 3564 + - uid: 9465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-31.5 + parent: 3564 + - uid: 9466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-30.5 + parent: 3564 + - uid: 9467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-20.5 + parent: 3564 + - uid: 9468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-59.5 + parent: 3564 + - uid: 9469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-60.5 + parent: 3564 + - uid: 9470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-64.5 + parent: 3564 + - uid: 9471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-60.5 + parent: 3564 + - uid: 9472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-70.5 + parent: 3564 + - uid: 9473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-68.5 + parent: 3564 + - uid: 9651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-46.5 + parent: 3564 - proto: ArrivalsShuttleTimer entities: - uid: 6152 @@ -3680,10 +4414,40 @@ entities: parent: 2 - proto: AtmosDeviceFanDirectional entities: - - uid: 1009 + - uid: 102 components: - type: Transform - pos: 27.5,-10.5 + rot: -1.5707963267948966 rad + pos: 26.5,31.5 + parent: 2 + - uid: 133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-10.5 + parent: 2 + - uid: 291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,60.5 + parent: 2 + - uid: 1711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,63.5 + parent: 2 + - uid: 2057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,50.5 + parent: 2 + - uid: 2502 + components: + - type: Transform + pos: 37.5,53.5 parent: 2 - uid: 2611 components: @@ -3691,256 +4455,467 @@ entities: rot: 1.5707963267948966 rad pos: 64.5,48.5 parent: 2 + - uid: 2758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-11.5 + parent: 2 + - uid: 2779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,59.5 + parent: 2 + - uid: 3920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,20.5 + parent: 2 + - uid: 3921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,24.5 + parent: 2 + - uid: 6190 + components: + - type: Transform + pos: 57.5,-20.5 + parent: 2 - uid: 8276 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,60.5 parent: 2 - - uid: 8297 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,65.5 - parent: 2 - - uid: 8298 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,60.5 - parent: 2 - uid: 8299 components: - type: Transform pos: 57.5,-4.5 parent: 2 - - uid: 8300 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,40.5 - parent: 2 - - uid: 8301 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,36.5 - parent: 2 - - uid: 8302 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,25.5 - parent: 2 - - uid: 8303 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,23.5 - parent: 2 - - uid: 8304 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,26.5 - parent: 2 - - uid: 8305 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,22.5 - parent: 2 - uid: 8306 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,12.5 parent: 2 - - uid: 8307 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,5.5 - parent: 2 - - uid: 8308 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-10.5 - parent: 2 - uid: 8309 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-12.5 parent: 2 + - uid: 10389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-41.5 + parent: 3564 + - uid: 11565 + components: + - type: Transform + pos: 22.5,-72.5 + parent: 3564 - proto: AtmosFixBlockerMarker entities: - - uid: 1620 + - uid: 1713 components: - type: Transform - pos: 23.5,28.5 + pos: 23.5,-4.5 parent: 2 - - uid: 1621 + - uid: 1720 components: - type: Transform - pos: 23.5,27.5 + pos: 22.5,-4.5 parent: 2 - - uid: 1679 + - uid: 2858 components: - type: Transform - pos: 24.5,28.5 + pos: 23.5,-5.5 parent: 2 - - uid: 1680 + - uid: 3110 components: - type: Transform - pos: 24.5,27.5 + pos: 22.5,-5.5 parent: 2 - - uid: 1793 - components: - - type: Transform - pos: 21.5,39.5 - parent: 2 - - uid: 1794 - components: - - type: Transform - pos: 21.5,38.5 - parent: 2 - - uid: 1797 - components: - - type: Transform - pos: 21.5,37.5 - parent: 2 - - uid: 1798 - components: - - type: Transform - pos: 21.5,36.5 - parent: 2 -- proto: AtmosFixFreezerMarker - entities: - - uid: 1520 + - uid: 4025 components: - type: Transform pos: 29.5,-12.5 parent: 2 - - uid: 1529 + - uid: 4033 components: - type: Transform pos: 28.5,-12.5 parent: 2 - - uid: 1530 + - uid: 4054 components: - type: Transform pos: 27.5,-12.5 parent: 2 - - uid: 1531 + - uid: 4055 components: - type: Transform pos: 26.5,-12.5 parent: 2 - - uid: 1532 + - uid: 4056 components: - type: Transform pos: 25.5,-12.5 parent: 2 - - uid: 2009 - components: - - type: Transform - pos: 29.5,-11.5 - parent: 2 - - uid: 2013 - components: - - type: Transform - pos: 28.5,-11.5 - parent: 2 - - uid: 2056 - components: - - type: Transform - pos: 26.5,-11.5 - parent: 2 - - uid: 2331 - components: - - type: Transform - pos: 27.5,-11.5 - parent: 2 -- proto: AtmosFixNitrogenMarker - entities: - - uid: 1389 - components: - - type: Transform - pos: 18.5,27.5 - parent: 2 - - uid: 1455 - components: - - type: Transform - pos: 17.5,28.5 - parent: 2 - - uid: 1456 - components: - - type: Transform - pos: 17.5,27.5 - parent: 2 - - uid: 1457 - components: - - type: Transform - pos: 18.5,28.5 - parent: 2 -- proto: AtmosFixOxygenMarker - entities: - - uid: 1461 - components: - - type: Transform - pos: 17.5,31.5 - parent: 2 - - uid: 1676 + - uid: 7166 components: - type: Transform pos: 17.5,30.5 parent: 2 - - uid: 1677 + - uid: 7167 components: - type: Transform - pos: 18.5,30.5 + pos: 17.5,31.5 parent: 2 - - uid: 1678 + - uid: 7196 + components: + - type: Transform + pos: 17.5,29.5 + parent: 2 + - uid: 7197 + components: + - type: Transform + pos: 17.5,28.5 + parent: 2 + - uid: 7198 + components: + - type: Transform + pos: 17.5,27.5 + parent: 2 + - uid: 7200 components: - type: Transform pos: 18.5,31.5 parent: 2 -- proto: AtmosFixPlasmaMarker - entities: - - uid: 17 + - uid: 7203 components: - type: Transform - pos: 24.5,31.5 + pos: 18.5,30.5 parent: 2 - - uid: 1395 + - uid: 7207 components: - type: Transform - pos: 23.5,30.5 + pos: 18.5,29.5 parent: 2 - - uid: 1483 + - uid: 7211 + components: + - type: Transform + pos: 18.5,27.5 + parent: 2 + - uid: 7213 + components: + - type: Transform + pos: 19.5,31.5 + parent: 2 + - uid: 7214 + components: + - type: Transform + pos: 19.5,30.5 + parent: 2 + - uid: 7215 + components: + - type: Transform + pos: 19.5,29.5 + parent: 2 + - uid: 7216 + components: + - type: Transform + pos: 19.5,28.5 + parent: 2 + - uid: 7224 + components: + - type: Transform + pos: 19.5,27.5 + parent: 2 + - uid: 7225 + components: + - type: Transform + pos: 20.5,31.5 + parent: 2 + - uid: 7251 + components: + - type: Transform + pos: 20.5,30.5 + parent: 2 + - uid: 7256 + components: + - type: Transform + pos: 20.5,29.5 + parent: 2 + - uid: 7257 + components: + - type: Transform + pos: 20.5,28.5 + parent: 2 + - uid: 7258 + components: + - type: Transform + pos: 20.5,27.5 + parent: 2 + - uid: 7259 + components: + - type: Transform + pos: 21.5,31.5 + parent: 2 + - uid: 7260 + components: + - type: Transform + pos: 21.5,30.5 + parent: 2 + - uid: 7261 + components: + - type: Transform + pos: 21.5,29.5 + parent: 2 + - uid: 7262 + components: + - type: Transform + pos: 21.5,28.5 + parent: 2 + - uid: 7263 + components: + - type: Transform + pos: 21.5,27.5 + parent: 2 + - uid: 7264 + components: + - type: Transform + pos: 22.5,31.5 + parent: 2 + - uid: 7265 + components: + - type: Transform + pos: 22.5,30.5 + parent: 2 + - uid: 7266 + components: + - type: Transform + pos: 22.5,29.5 + parent: 2 + - uid: 7268 + components: + - type: Transform + pos: 22.5,28.5 + parent: 2 + - uid: 7290 + components: + - type: Transform + pos: 22.5,27.5 + parent: 2 + - uid: 7291 components: - type: Transform pos: 23.5,31.5 parent: 2 - - uid: 1661 + - uid: 7292 + components: + - type: Transform + pos: 23.5,30.5 + parent: 2 + - uid: 7293 + components: + - type: Transform + pos: 23.5,29.5 + parent: 2 + - uid: 7294 + components: + - type: Transform + pos: 23.5,28.5 + parent: 2 + - uid: 7295 + components: + - type: Transform + pos: 23.5,27.5 + parent: 2 + - uid: 7296 + components: + - type: Transform + pos: 24.5,31.5 + parent: 2 + - uid: 7297 components: - type: Transform pos: 24.5,30.5 parent: 2 + - uid: 7356 + components: + - type: Transform + pos: 24.5,29.5 + parent: 2 + - uid: 7358 + components: + - type: Transform + pos: 24.5,28.5 + parent: 2 + - uid: 7380 + components: + - type: Transform + pos: 24.5,27.5 + parent: 2 + - uid: 7381 + components: + - type: Transform + pos: 25.5,31.5 + parent: 2 + - uid: 7418 + components: + - type: Transform + pos: 25.5,30.5 + parent: 2 + - uid: 7419 + components: + - type: Transform + pos: 25.5,29.5 + parent: 2 + - uid: 7420 + components: + - type: Transform + pos: 25.5,28.5 + parent: 2 + - uid: 7421 + components: + - type: Transform + pos: 18.5,28.5 + parent: 2 + - uid: 7422 + components: + - type: Transform + pos: 25.5,27.5 + parent: 2 + - uid: 9684 + components: + - type: Transform + pos: 15.5,-63.5 + parent: 3564 + - uid: 9685 + components: + - type: Transform + pos: 16.5,-63.5 + parent: 3564 + - uid: 9686 + components: + - type: Transform + pos: 17.5,-63.5 + parent: 3564 +- proto: AtmosFixNitrogenMarker + entities: + - uid: 533 + components: + - type: Transform + pos: 28.5,-0.5 + parent: 2 + - uid: 633 + components: + - type: Transform + pos: 27.5,0.5 + parent: 2 + - uid: 634 + components: + - type: Transform + pos: 27.5,-0.5 + parent: 2 + - uid: 1491 + components: + - type: Transform + pos: 28.5,0.5 + parent: 2 + - uid: 9682 + components: + - type: Transform + pos: 13.5,-57.5 + parent: 3564 + - uid: 9683 + components: + - type: Transform + pos: 13.5,-58.5 + parent: 3564 +- proto: AtmosFixOxygenMarker + entities: + - uid: 216 + components: + - type: Transform + pos: 23.5,-0.5 + parent: 2 + - uid: 217 + components: + - type: Transform + pos: 23.5,0.5 + parent: 2 + - uid: 359 + components: + - type: Transform + pos: 22.5,-0.5 + parent: 2 + - uid: 764 + components: + - type: Transform + pos: 22.5,0.5 + parent: 2 + - uid: 9675 + components: + - type: Transform + pos: 11.5,-57.5 + parent: 3564 + - uid: 9681 + components: + - type: Transform + pos: 11.5,-58.5 + parent: 3564 - proto: Autolathe entities: - - uid: 1536 + - uid: 848 components: - type: Transform - pos: 48.5,5.5 + pos: 54.5,21.5 parent: 2 - - uid: 2191 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices + - uid: 7795 components: - type: Transform - pos: 38.5,35.5 + pos: 52.5,7.5 parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices + - uid: 8478 + components: + - type: Transform + pos: 35.5,33.5 + parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices +- proto: BackgammonBoard + entities: + - uid: 10306 + components: + - type: Transform + pos: 16.5,-50.5 + parent: 3564 + - uid: 10311 + components: + - type: Transform + pos: 29.5,-38.5 + parent: 3564 - proto: BagpipeInstrument entities: - uid: 1275 @@ -3953,12 +4928,19 @@ entities: - type: Transform pos: 37.848846,32.127415 parent: 1 -- proto: BarSign +- proto: BaseGasCondenser entities: - uid: 791 components: - type: Transform - pos: 27.5,1.5 + rot: -1.5707963267948966 rad + pos: 34.5,8.5 + parent: 2 + - uid: 6342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-4.5 parent: 2 - proto: Bed entities: @@ -3992,26 +4974,11 @@ entities: - type: Transform pos: 44.5,-0.5 parent: 2 - - uid: 1547 - components: - - type: Transform - pos: 54.5,11.5 - parent: 2 - - uid: 2403 - components: - - type: Transform - pos: 59.5,20.5 - parent: 2 - uid: 4924 components: - type: Transform pos: 6.5,-3.5 parent: 2 - - uid: 7642 - components: - - type: Transform - pos: 11.5,30.5 - parent: 2 - uid: 8250 components: - type: Transform @@ -4062,12 +5029,132 @@ entities: - type: Transform pos: 10.5,-1.5 parent: 2 -- proto: BedsheetCaptain - entities: - - uid: 2405 + - uid: 8319 components: - type: Transform - pos: 59.5,20.5 + pos: 59.5,25.5 + parent: 2 + - uid: 9911 + components: + - type: Transform + pos: 16.5,-52.5 + parent: 3564 + - uid: 9912 + components: + - type: Transform + pos: 16.5,-53.5 + parent: 3564 + - uid: 10270 + components: + - type: Transform + pos: 16.5,-49.5 + parent: 3564 + - uid: 10271 + components: + - type: Transform + pos: 16.5,-48.5 + parent: 3564 + - uid: 10272 + components: + - type: Transform + pos: 16.5,-44.5 + parent: 3564 + - uid: 10273 + components: + - type: Transform + pos: 16.5,-45.5 + parent: 3564 + - uid: 10274 + components: + - type: Transform + pos: 16.5,-36.5 + parent: 3564 + - uid: 10275 + components: + - type: Transform + pos: 16.5,-37.5 + parent: 3564 + - uid: 10276 + components: + - type: Transform + pos: 29.5,-32.5 + parent: 3564 + - uid: 10277 + components: + - type: Transform + pos: 29.5,-33.5 + parent: 3564 + - uid: 10278 + components: + - type: Transform + pos: 29.5,-36.5 + parent: 3564 + - uid: 10279 + components: + - type: Transform + pos: 29.5,-37.5 + parent: 3564 + - uid: 10280 + components: + - type: Transform + pos: 29.5,-40.5 + parent: 3564 + - uid: 10281 + components: + - type: Transform + pos: 29.5,-41.5 + parent: 3564 + - uid: 10282 + components: + - type: Transform + pos: 29.5,-44.5 + parent: 3564 + - uid: 10283 + components: + - type: Transform + pos: 29.5,-45.5 + parent: 3564 + - uid: 10284 + components: + - type: Transform + pos: 29.5,-48.5 + parent: 3564 + - uid: 10285 + components: + - type: Transform + pos: 29.5,-49.5 + parent: 3564 + - uid: 10286 + components: + - type: Transform + pos: 29.5,-52.5 + parent: 3564 + - uid: 10287 + components: + - type: Transform + pos: 29.5,-53.5 + parent: 3564 + - uid: 10390 + components: + - type: Transform + pos: 11.5,-37.5 + parent: 3564 + - uid: 10391 + components: + - type: Transform + pos: 14.5,-37.5 + parent: 3564 + - uid: 10392 + components: + - type: Transform + pos: 14.5,-45.5 + parent: 3564 +- proto: BedsheetCaptain + entities: + - uid: 3272 + components: + - type: Transform + pos: 59.5,25.5 parent: 2 - proto: BedsheetMedical entities: @@ -4077,12 +5164,6 @@ entities: rot: 3.141592653589793 rad pos: 14.5,9.5 parent: 2 - - uid: 705 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,9.5 - parent: 2 - uid: 1279 components: - type: Transform @@ -4095,6 +5176,16 @@ entities: rot: 3.141592653589793 rad pos: 13.5,9.5 parent: 2 + - uid: 9732 + components: + - type: Transform + pos: 21.5,-23.5 + parent: 3564 + - uid: 9733 + components: + - type: Transform + pos: 22.5,-23.5 + parent: 3564 - proto: BedsheetOrange entities: - uid: 827 @@ -4115,21 +5206,144 @@ entities: rot: 1.5707963267948966 rad pos: 44.5,-0.5 parent: 2 -- proto: BedsheetQM - entities: - - uid: 7641 + - uid: 9913 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,30.5 - parent: 2 -- proto: BedsheetRD - entities: - - uid: 1552 + pos: 16.5,-52.5 + parent: 3564 + - uid: 9914 components: - type: Transform - pos: 54.5,11.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: 16.5,-53.5 + parent: 3564 + - uid: 10288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-49.5 + parent: 3564 + - uid: 10289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-48.5 + parent: 3564 + - uid: 10290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-45.5 + parent: 3564 + - uid: 10291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-44.5 + parent: 3564 + - uid: 10292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-37.5 + parent: 3564 + - uid: 10293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-36.5 + parent: 3564 + - uid: 10294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-32.5 + parent: 3564 + - uid: 10295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-33.5 + parent: 3564 + - uid: 10296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-36.5 + parent: 3564 + - uid: 10297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-37.5 + parent: 3564 + - uid: 10298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-40.5 + parent: 3564 + - uid: 10299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-41.5 + parent: 3564 + - uid: 10300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-44.5 + parent: 3564 + - uid: 10301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-45.5 + parent: 3564 + - uid: 10302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-48.5 + parent: 3564 + - uid: 10303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-49.5 + parent: 3564 + - uid: 10304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-52.5 + parent: 3564 + - uid: 10305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-53.5 + parent: 3564 + - uid: 10393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-37.5 + parent: 3564 + - uid: 10394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-37.5 + parent: 3564 + - uid: 10395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-45.5 + parent: 3564 - proto: BedsheetSpawner entities: - uid: 5 @@ -4142,18 +5356,6 @@ entities: - type: Transform pos: 7.5,3.5 parent: 2 -- proto: BenchBlueComfy - entities: - - uid: 5732 - components: - - type: Transform - pos: 26.5,7.5 - parent: 2 - - uid: 5734 - components: - - type: Transform - pos: 25.5,7.5 - parent: 2 - proto: BikeHorn entities: - uid: 7683 @@ -4175,25 +5377,15 @@ entities: - type: Transform pos: -8.5,12.5 parent: 2 - - uid: 357 + - uid: 465 components: - type: Transform - pos: -7.5,5.5 + pos: 24.5,26.5 parent: 2 - - uid: 382 + - uid: 635 components: - type: Transform - pos: -5.5,5.5 - parent: 2 - - uid: 454 - components: - - type: Transform - pos: 8.5,26.5 - parent: 2 - - uid: 504 - components: - - type: Transform - pos: 10.5,26.5 + pos: 10.5,22.5 parent: 2 - uid: 1254 components: @@ -4215,30 +5407,34 @@ entities: - type: Transform pos: 54.5,-2.5 parent: 2 - - uid: 1581 + - uid: 1601 components: - type: Transform - pos: 10.5,22.5 + pos: 26.5,31.5 parent: 2 - - uid: 1909 + - uid: 1956 components: - type: Transform - pos: 8.5,22.5 + pos: 10.5,26.5 + parent: 2 + - uid: 3324 + components: + - type: Transform + pos: 30.5,-12.5 + parent: 2 + - uid: 4060 + components: + - type: Transform + pos: 26.5,-11.5 parent: 2 - proto: BlockGameArcade entities: - - uid: 7006 + - uid: 10572 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,49.5 - parent: 2 - - uid: 7007 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,48.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 19.5,-22.5 + parent: 3564 - proto: BookAtmosAirAlarms entities: - uid: 7525 @@ -4253,11 +5449,16 @@ entities: parent: 2 - proto: BookAtmosDistro entities: - - uid: 7170 + - uid: 1504 components: - type: Transform - pos: 56.330864,29.44333 + pos: 56.5,29.5 parent: 2 + - uid: 10424 + components: + - type: Transform + pos: 17.5,-59.5 + parent: 3564 - proto: BookAtmosVentsMore entities: - uid: 7171 @@ -4272,6 +5473,11 @@ entities: - type: Transform pos: 17.5,0.5 parent: 2 + - uid: 10425 + components: + - type: Transform + pos: 17.5,-59.5 + parent: 3564 - proto: BookChemicalCompendium entities: - uid: 7125 @@ -4301,10 +5507,10 @@ entities: parent: 2 - proto: BookEngineersHandbook entities: - - uid: 7124 + - uid: 2280 components: - type: Transform - pos: 56.580864,29.656294 + pos: 56.5,29.5 parent: 2 - uid: 7526 components: @@ -4316,6 +5522,11 @@ entities: - type: Transform pos: 17.5,-0.5 parent: 2 + - uid: 10423 + components: + - type: Transform + pos: 17.5,-59.5 + parent: 3564 - proto: BookHowToCookForFortySpaceman entities: - uid: 7534 @@ -4358,11 +5569,16 @@ entities: parent: 2 - proto: BookSecurity entities: - - uid: 7187 + - uid: 306 components: - type: Transform - pos: 34.231915,2.6751459 + pos: 34.5,2.5 parent: 2 + - uid: 10430 + components: + - type: Transform + pos: 33.5,-66.5 + parent: 3564 - proto: BookSpaceEncyclopedia entities: - uid: 2368 @@ -4382,10 +5598,10 @@ entities: parent: 2 - proto: BookSpaceLaw entities: - - uid: 6665 + - uid: 3164 components: - type: Transform - pos: 34.52879,2.3938959 + pos: 34.5,2.5 parent: 2 - uid: 7126 components: @@ -4397,11 +5613,6 @@ entities: - type: Transform pos: 17.5,0.5 parent: 2 - - uid: 7588 - components: - - type: Transform - pos: 57.5,17.5 - parent: 2 - proto: BookTheBookOfControl entities: - uid: 7529 @@ -4409,29 +5620,12 @@ entities: - type: Transform pos: 17.5,-0.5 parent: 2 -- proto: BoozeDispenser - entities: - - uid: 2863 - components: - - type: Transform - pos: 26.5,0.5 - parent: 2 - proto: BorgCharger entities: - - uid: 1815 + - uid: 5442 components: - type: Transform - pos: 10.5,0.5 - parent: 2 - - uid: 2367 - components: - - type: Transform - pos: 54.5,9.5 - parent: 2 - - uid: 4007 - components: - - type: Transform - pos: 40.5,-9.5 + pos: 4.5,-3.5 parent: 2 - uid: 7624 components: @@ -4443,20 +5637,55 @@ entities: - type: Transform pos: 46.5,51.5 parent: 2 + - uid: 11208 + components: + - type: Transform + pos: 55.5,9.5 + parent: 2 - proto: BoxBeaker entities: - - uid: 2506 + - uid: 807 components: - type: Transform - pos: 48.5,0.05 + pos: 29.5,8.5 parent: 2 - - uid: 7420 + - uid: 7815 components: - type: Transform - pos: 32.5,10.5 + pos: 53.5,9.5 parent: 2 - proto: BoxFolderClipboard entities: + - uid: 1698 + components: + - type: Transform + pos: 33.5,-9.5 + parent: 2 + - uid: 2286 + components: + - type: Transform + pos: 48.5,21.5 + parent: 2 + - uid: 2430 + components: + - type: Transform + pos: 48.5,21.5 + parent: 2 + - uid: 3741 + components: + - type: Transform + pos: 48.5,21.5 + parent: 2 + - uid: 3742 + components: + - type: Transform + pos: 48.5,21.5 + parent: 2 + - uid: 6583 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 2 - uid: 7199 components: - type: Transform @@ -4467,6 +5696,11 @@ entities: - type: Transform pos: 63.5,30.5 parent: 2 + - uid: 7218 + components: + - type: Transform + pos: 52.5,8.5 + parent: 2 - uid: 7248 components: - type: Transform @@ -4492,13 +5726,67 @@ entities: - type: Transform pos: 17.5,-0.5 parent: 2 + - uid: 8234 + components: + - type: Transform + pos: 27.5,26.5 + parent: 2 + - uid: 8414 + components: + - type: Transform + pos: 38.5,29.5 + parent: 2 + - uid: 10428 + components: + - type: Transform + pos: 32.5,-66.5 + parent: 3564 + - uid: 10536 + components: + - type: Transform + pos: 34.5,-29.5 + parent: 3564 + - uid: 10579 + components: + - type: Transform + pos: 9.5,-27.5 + parent: 3564 + - uid: 10607 + components: + - type: Transform + pos: 30.5,-19.5 + parent: 3564 + - uid: 11513 + components: + - type: Transform + pos: 12.5,34.5 + parent: 2 +- proto: BoxHandcuff + entities: + - uid: 6053 + components: + - type: Transform + pos: 59.5,21.5 + parent: 2 - proto: BoxID entities: + - uid: 1930 + components: + - type: Transform + pos: 59.5,28.5 + parent: 2 - uid: 7205 components: - type: Transform pos: 58.5,31.5 parent: 2 +- proto: BoxLatexGloves + entities: + - uid: 10610 + components: + - type: Transform + pos: 30.5,-23.5 + parent: 3564 - proto: BoxMesonScanners entities: - uid: 6832 @@ -4506,56 +5794,159 @@ entities: - type: Transform pos: 35.5,2.5 parent: 2 +- proto: BoxNitrileGloves + entities: + - uid: 10611 + components: + - type: Transform + pos: 30.5,-23.5 + parent: 3564 - proto: BoxPillCanister entities: - - uid: 7418 + - uid: 118 components: - type: Transform - pos: 33.5,10.5 + pos: 30.5,8.5 parent: 2 +- proto: BoxSterileMask + entities: + - uid: 10609 + components: + - type: Transform + pos: 30.5,-22.5 + parent: 3564 - proto: BoxSyringe entities: - - uid: 7419 + - uid: 1525 components: - type: Transform - pos: 33.5,10.5 + pos: 30.5,8.5 parent: 2 + - uid: 10343 + components: + - type: Transform + pos: 30.5,-16.5 + parent: 3564 - proto: BoxTrashbag entities: - - uid: 7660 + - uid: 2404 components: - type: Transform - pos: -0.5,7.5 + pos: 42.5,21.5 + parent: 2 +- proto: BrigmedicIDCard + entities: + - uid: 11116 + components: + - type: Transform + pos: 30.5,-21.5 + parent: 3564 +- proto: Brutepack1 + entities: + - uid: 3227 + components: + - type: Transform + pos: 20.5,15.5 parent: 2 - proto: Bucket entities: - - uid: 131 + - uid: 2400 components: - type: Transform - pos: 12.5,-7.5 + pos: 42.5,21.5 parent: 2 - - uid: 133 + - uid: 10554 components: - type: Transform - pos: 12.5,-7.5 - parent: 2 - - uid: 2182 - components: - - type: Transform - pos: 12.5,-7.5 - parent: 2 - - uid: 7655 - components: - - type: Transform - pos: -4.5,6.5 - parent: 2 + pos: 11.5,-20.5 + parent: 3564 - proto: CableApcExtension entities: + - uid: 318 + components: + - type: Transform + pos: 62.5,13.5 + parent: 2 + - uid: 1440 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 2 + - uid: 1506 + components: + - type: Transform + pos: 49.5,11.5 + parent: 2 + - uid: 1507 + components: + - type: Transform + pos: 52.5,6.5 + parent: 2 + - uid: 1530 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 2 + - uid: 1543 + components: + - type: Transform + pos: 47.5,6.5 + parent: 2 - uid: 1883 components: - type: Transform pos: 39.5,52.5 parent: 2 + - uid: 1932 + components: + - type: Transform + pos: 19.5,-5.5 + parent: 2 + - uid: 1938 + components: + - type: Transform + pos: 31.5,20.5 + parent: 2 + - uid: 2085 + components: + - type: Transform + pos: 48.5,25.5 + parent: 2 + - uid: 2109 + components: + - type: Transform + pos: 17.5,22.5 + parent: 2 + - uid: 2110 + components: + - type: Transform + pos: 17.5,20.5 + parent: 2 + - uid: 2115 + components: + - type: Transform + pos: 17.5,19.5 + parent: 2 + - uid: 2116 + components: + - type: Transform + pos: 17.5,18.5 + parent: 2 + - uid: 2117 + components: + - type: Transform + pos: 20.5,20.5 + parent: 2 + - uid: 2118 + components: + - type: Transform + pos: 21.5,20.5 + parent: 2 + - uid: 2138 + components: + - type: Transform + pos: 22.5,20.5 + parent: 2 - uid: 2176 components: - type: Transform @@ -4566,11 +5957,116 @@ entities: - type: Transform pos: 1.5,-10.5 parent: 2 + - uid: 2180 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 2 + - uid: 2181 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 2 + - uid: 2204 + components: + - type: Transform + pos: 61.5,8.5 + parent: 2 + - uid: 2208 + components: + - type: Transform + pos: 49.5,25.5 + parent: 2 + - uid: 2341 + components: + - type: Transform + pos: 47.5,12.5 + parent: 2 + - uid: 2427 + components: + - type: Transform + pos: 50.5,20.5 + parent: 2 + - uid: 2470 + components: + - type: Transform + pos: 33.5,22.5 + parent: 2 + - uid: 2471 + components: + - type: Transform + pos: 33.5,21.5 + parent: 2 + - uid: 2472 + components: + - type: Transform + pos: 19.5,22.5 + parent: 2 + - uid: 2473 + components: + - type: Transform + pos: 17.5,23.5 + parent: 2 + - uid: 2579 + components: + - type: Transform + pos: 27.5,-3.5 + parent: 2 + - uid: 2737 + components: + - type: Transform + pos: 29.5,-2.5 + parent: 2 + - uid: 2741 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 2 + - uid: 2879 + components: + - type: Transform + pos: 14.5,28.5 + parent: 2 + - uid: 2881 + components: + - type: Transform + pos: 15.5,28.5 + parent: 2 + - uid: 2883 + components: + - type: Transform + pos: 32.5,20.5 + parent: 2 + - uid: 2884 + components: + - type: Transform + pos: 30.5,20.5 + parent: 2 + - uid: 2973 + components: + - type: Transform + pos: 47.5,25.5 + parent: 2 + - uid: 3025 + components: + - type: Transform + pos: 33.5,20.5 + parent: 2 + - uid: 3147 + components: + - type: Transform + pos: 19.5,-1.5 + parent: 2 - uid: 4954 components: - type: Transform pos: 5.5,14.5 parent: 2 + - uid: 5010 + components: + - type: Transform + pos: 62.5,14.5 + parent: 2 - uid: 5432 components: - type: Transform @@ -4626,11 +6122,6 @@ entities: - type: Transform pos: 50.5,11.5 parent: 2 - - uid: 5454 - components: - - type: Transform - pos: 49.5,11.5 - parent: 2 - uid: 5455 components: - type: Transform @@ -4641,11 +6132,6 @@ entities: - type: Transform pos: 51.5,6.5 parent: 2 - - uid: 5457 - components: - - type: Transform - pos: 51.5,7.5 - parent: 2 - uid: 5459 components: - type: Transform @@ -5689,7 +7175,7 @@ entities: - uid: 5695 components: - type: Transform - pos: 51.5,34.5 + pos: 45.5,38.5 parent: 2 - uid: 5696 components: @@ -5731,11 +7217,6 @@ entities: - type: Transform pos: 49.5,24.5 parent: 2 - - uid: 5704 - components: - - type: Transform - pos: 48.5,24.5 - parent: 2 - uid: 5705 components: - type: Transform @@ -6161,36 +7642,6 @@ entities: - type: Transform pos: 20.5,33.5 parent: 2 - - uid: 5847 - components: - - type: Transform - pos: 20.5,32.5 - parent: 2 - - uid: 5848 - components: - - type: Transform - pos: 20.5,31.5 - parent: 2 - - uid: 5849 - components: - - type: Transform - pos: 20.5,30.5 - parent: 2 - - uid: 5850 - components: - - type: Transform - pos: 20.5,29.5 - parent: 2 - - uid: 5851 - components: - - type: Transform - pos: 20.5,28.5 - parent: 2 - - uid: 5852 - components: - - type: Transform - pos: 20.5,27.5 - parent: 2 - uid: 5853 components: - type: Transform @@ -6206,70 +7657,25 @@ entities: - type: Transform pos: 26.5,33.5 parent: 2 - - uid: 5856 - components: - - type: Transform - pos: 26.5,32.5 - parent: 2 - - uid: 5857 - components: - - type: Transform - pos: 26.5,31.5 - parent: 2 - - uid: 5858 - components: - - type: Transform - pos: 26.5,30.5 - parent: 2 - - uid: 5859 - components: - - type: Transform - pos: 26.5,29.5 - parent: 2 - - uid: 5860 - components: - - type: Transform - pos: 26.5,28.5 - parent: 2 - - uid: 5861 - components: - - type: Transform - pos: 26.5,27.5 - parent: 2 - - uid: 5862 - components: - - type: Transform - pos: 26.5,26.5 - parent: 2 - - uid: 5864 - components: - - type: Transform - pos: 26.5,25.5 - parent: 2 - - uid: 5865 - components: - - type: Transform - pos: 26.5,23.5 - parent: 2 - uid: 5866 components: - type: Transform - pos: 26.5,22.5 + pos: 26.5,-3.5 parent: 2 - uid: 5867 components: - type: Transform - pos: 26.5,24.5 + pos: 25.5,-3.5 parent: 2 - uid: 5868 components: - type: Transform - pos: 25.5,22.5 + pos: 25.5,-2.5 parent: 2 - uid: 5869 components: - type: Transform - pos: 24.5,22.5 + pos: 25.5,-1.5 parent: 2 - uid: 5878 components: @@ -6296,16 +7702,6 @@ entities: - type: Transform pos: 43.5,32.5 parent: 2 - - uid: 5883 - components: - - type: Transform - pos: 44.5,32.5 - parent: 2 - - uid: 5884 - components: - - type: Transform - pos: 45.5,32.5 - parent: 2 - uid: 5885 components: - type: Transform @@ -6531,26 +7927,6 @@ entities: - type: Transform pos: 34.5,22.5 parent: 2 - - uid: 5933 - components: - - type: Transform - pos: 15.5,29.5 - parent: 2 - - uid: 5934 - components: - - type: Transform - pos: 15.5,28.5 - parent: 2 - - uid: 5935 - components: - - type: Transform - pos: 15.5,27.5 - parent: 2 - - uid: 5936 - components: - - type: Transform - pos: 15.5,26.5 - parent: 2 - uid: 5937 components: - type: Transform @@ -6581,11 +7957,6 @@ entities: - type: Transform pos: 18.5,20.5 parent: 2 - - uid: 5943 - components: - - type: Transform - pos: 20.5,20.5 - parent: 2 - uid: 5944 components: - type: Transform @@ -6676,11 +8047,6 @@ entities: - type: Transform pos: 18.5,22.5 parent: 2 - - uid: 5962 - components: - - type: Transform - pos: 18.5,19.5 - parent: 2 - uid: 5963 components: - type: Transform @@ -6706,71 +8072,6 @@ entities: - type: Transform pos: 22.5,18.5 parent: 2 - - uid: 5968 - components: - - type: Transform - pos: 22.5,19.5 - parent: 2 - - uid: 5969 - components: - - type: Transform - pos: 23.5,19.5 - parent: 2 - - uid: 5970 - components: - - type: Transform - pos: 24.5,19.5 - parent: 2 - - uid: 5971 - components: - - type: Transform - pos: 25.5,19.5 - parent: 2 - - uid: 5972 - components: - - type: Transform - pos: 26.5,19.5 - parent: 2 - - uid: 5973 - components: - - type: Transform - pos: 27.5,19.5 - parent: 2 - - uid: 5974 - components: - - type: Transform - pos: 28.5,19.5 - parent: 2 - - uid: 5975 - components: - - type: Transform - pos: 29.5,19.5 - parent: 2 - - uid: 5976 - components: - - type: Transform - pos: 30.5,19.5 - parent: 2 - - uid: 5977 - components: - - type: Transform - pos: 31.5,19.5 - parent: 2 - - uid: 5978 - components: - - type: Transform - pos: 32.5,19.5 - parent: 2 - - uid: 5979 - components: - - type: Transform - pos: 33.5,19.5 - parent: 2 - - uid: 5980 - components: - - type: Transform - pos: 34.5,19.5 - parent: 2 - uid: 5981 components: - type: Transform @@ -7441,6 +8742,11 @@ entities: - type: Transform pos: -2.5,17.5 parent: 2 + - uid: 6149 + components: + - type: Transform + pos: 25.5,-0.5 + parent: 2 - uid: 6150 components: - type: Transform @@ -7486,6 +8792,11 @@ entities: - type: Transform pos: 3.5,15.5 parent: 2 + - uid: 6166 + components: + - type: Transform + pos: 25.5,0.5 + parent: 2 - uid: 6167 components: - type: Transform @@ -7496,11 +8807,21 @@ entities: - type: Transform pos: 3.5,14.5 parent: 2 + - uid: 6169 + components: + - type: Transform + pos: 24.5,-2.5 + parent: 2 - uid: 6171 components: - type: Transform pos: 3.5,17.5 parent: 2 + - uid: 6172 + components: + - type: Transform + pos: 23.5,-2.5 + parent: 2 - uid: 6178 components: - type: Transform @@ -7556,26 +8877,6 @@ entities: - type: Transform pos: 20.5,-2.5 parent: 2 - - uid: 6190 - components: - - type: Transform - pos: 19.5,-2.5 - parent: 2 - - uid: 6191 - components: - - type: Transform - pos: 19.5,-3.5 - parent: 2 - - uid: 6192 - components: - - type: Transform - pos: 19.5,-4.5 - parent: 2 - - uid: 6193 - components: - - type: Transform - pos: 19.5,-5.5 - parent: 2 - uid: 6194 components: - type: Transform @@ -7616,11 +8917,6 @@ entities: - type: Transform pos: 13.5,-7.5 parent: 2 - - uid: 6202 - components: - - type: Transform - pos: 4.5,-11.5 - parent: 2 - uid: 6203 components: - type: Transform @@ -7766,11 +9062,6 @@ entities: - type: Transform pos: 9.5,0.5 parent: 2 - - uid: 6233 - components: - - type: Transform - pos: 9.5,1.5 - parent: 2 - uid: 6234 components: - type: Transform @@ -7781,11 +9072,6 @@ entities: - type: Transform pos: 13.5,0.5 parent: 2 - - uid: 6236 - components: - - type: Transform - pos: 13.5,1.5 - parent: 2 - uid: 6237 components: - type: Transform @@ -8271,60 +9557,10 @@ entities: - type: Transform pos: 57.5,-15.5 parent: 2 - - uid: 6338 + - uid: 6339 components: - type: Transform - pos: 40.5,-13.5 - parent: 2 - - uid: 6340 - components: - - type: Transform - pos: 40.5,-12.5 - parent: 2 - - uid: 6341 - components: - - type: Transform - pos: 41.5,-12.5 - parent: 2 - - uid: 6342 - components: - - type: Transform - pos: 42.5,-12.5 - parent: 2 - - uid: 6382 - components: - - type: Transform - pos: 39.5,-12.5 - parent: 2 - - uid: 6415 - components: - - type: Transform - pos: 38.5,-12.5 - parent: 2 - - uid: 6419 - components: - - type: Transform - pos: 38.5,-11.5 - parent: 2 - - uid: 6420 - components: - - type: Transform - pos: 38.5,-10.5 - parent: 2 - - uid: 6421 - components: - - type: Transform - pos: 37.5,-10.5 - parent: 2 - - uid: 6422 - components: - - type: Transform - pos: 36.5,-10.5 - parent: 2 - - uid: 6423 - components: - - type: Transform - pos: 35.5,-10.5 + pos: 25.5,-4.5 parent: 2 - uid: 6424 components: @@ -8396,66 +9632,6 @@ entities: - type: Transform pos: 34.5,0.5 parent: 2 - - uid: 6438 - components: - - type: Transform - pos: 34.5,-3.5 - parent: 2 - - uid: 6439 - components: - - type: Transform - pos: 34.5,-4.5 - parent: 2 - - uid: 6440 - components: - - type: Transform - pos: 34.5,-5.5 - parent: 2 - - uid: 6441 - components: - - type: Transform - pos: 34.5,-6.5 - parent: 2 - - uid: 6442 - components: - - type: Transform - pos: 35.5,-6.5 - parent: 2 - - uid: 6443 - components: - - type: Transform - pos: 36.5,-6.5 - parent: 2 - - uid: 6444 - components: - - type: Transform - pos: 37.5,-6.5 - parent: 2 - - uid: 6445 - components: - - type: Transform - pos: 38.5,-6.5 - parent: 2 - - uid: 6446 - components: - - type: Transform - pos: 39.5,-6.5 - parent: 2 - - uid: 6447 - components: - - type: Transform - pos: 40.5,-6.5 - parent: 2 - - uid: 6448 - components: - - type: Transform - pos: 41.5,-6.5 - parent: 2 - - uid: 6449 - components: - - type: Transform - pos: 42.5,-6.5 - parent: 2 - uid: 6450 components: - type: Transform @@ -8486,121 +9662,11 @@ entities: - type: Transform pos: 41.5,-2.5 parent: 2 - - uid: 6456 - components: - - type: Transform - pos: 29.5,-3.5 - parent: 2 - uid: 6457 components: - type: Transform pos: 28.5,-3.5 parent: 2 - - uid: 6458 - components: - - type: Transform - pos: 28.5,-4.5 - parent: 2 - - uid: 6459 - components: - - type: Transform - pos: 28.5,-5.5 - parent: 2 - - uid: 6460 - components: - - type: Transform - pos: 28.5,-6.5 - parent: 2 - - uid: 6461 - components: - - type: Transform - pos: 28.5,-7.5 - parent: 2 - - uid: 6462 - components: - - type: Transform - pos: 28.5,-8.5 - parent: 2 - - uid: 6463 - components: - - type: Transform - pos: 28.5,-9.5 - parent: 2 - - uid: 6464 - components: - - type: Transform - pos: 27.5,-9.5 - parent: 2 - - uid: 6465 - components: - - type: Transform - pos: 27.5,-10.5 - parent: 2 - - uid: 6466 - components: - - type: Transform - pos: 29.5,-9.5 - parent: 2 - - uid: 6467 - components: - - type: Transform - pos: 30.5,-9.5 - parent: 2 - - uid: 6468 - components: - - type: Transform - pos: 29.5,-5.5 - parent: 2 - - uid: 6469 - components: - - type: Transform - pos: 27.5,-3.5 - parent: 2 - - uid: 6470 - components: - - type: Transform - pos: 25.5,-3.5 - parent: 2 - - uid: 6471 - components: - - type: Transform - pos: 24.5,-3.5 - parent: 2 - - uid: 6472 - components: - - type: Transform - pos: 23.5,-3.5 - parent: 2 - - uid: 6473 - components: - - type: Transform - pos: 26.5,-3.5 - parent: 2 - - uid: 6474 - components: - - type: Transform - pos: 26.5,-2.5 - parent: 2 - - uid: 6475 - components: - - type: Transform - pos: 26.5,-1.5 - parent: 2 - - uid: 6476 - components: - - type: Transform - pos: 26.5,-9.5 - parent: 2 - - uid: 6477 - components: - - type: Transform - pos: 25.5,-9.5 - parent: 2 - - uid: 6478 - components: - - type: Transform - pos: 24.5,-9.5 - parent: 2 - uid: 6479 components: - type: Transform @@ -8821,75 +9887,2370 @@ entities: - type: Transform pos: 38.5,44.5 parent: 2 + - uid: 6571 + components: + - type: Transform + pos: 25.5,-5.5 + parent: 2 + - uid: 6576 + components: + - type: Transform + pos: 25.5,-6.5 + parent: 2 - uid: 6597 components: - type: Transform - pos: 23.5,22.5 + pos: 25.5,-7.5 parent: 2 - - uid: 7290 + - uid: 6599 components: - type: Transform - pos: 26.5,-0.5 + pos: 24.5,-7.5 parent: 2 - - uid: 7291 + - uid: 6600 components: - type: Transform - pos: 25.5,-0.5 + pos: 23.5,-7.5 parent: 2 - - uid: 7292 + - uid: 6601 components: - type: Transform - pos: 24.5,-0.5 + pos: 25.5,-8.5 parent: 2 - - uid: 7293 + - uid: 6602 components: - type: Transform - pos: 27.5,-0.5 + pos: 25.5,-9.5 parent: 2 - - uid: 7294 + - uid: 6603 components: - type: Transform - pos: 28.5,-0.5 + pos: 27.5,-7.5 + parent: 2 + - uid: 6604 + components: + - type: Transform + pos: 26.5,-7.5 + parent: 2 + - uid: 6605 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 2 + - uid: 6606 + components: + - type: Transform + pos: 29.5,-7.5 + parent: 2 + - uid: 6607 + components: + - type: Transform + pos: 30.5,-7.5 + parent: 2 + - uid: 6609 + components: + - type: Transform + pos: 30.5,-6.5 + parent: 2 + - uid: 6610 + components: + - type: Transform + pos: 31.5,-6.5 + parent: 2 + - uid: 6611 + components: + - type: Transform + pos: 32.5,-6.5 + parent: 2 + - uid: 6799 + components: + - type: Transform + pos: 33.5,-6.5 + parent: 2 + - uid: 6800 + components: + - type: Transform + pos: 34.5,-6.5 + parent: 2 + - uid: 6801 + components: + - type: Transform + pos: 35.5,-6.5 + parent: 2 + - uid: 6802 + components: + - type: Transform + pos: 36.5,-6.5 + parent: 2 + - uid: 6803 + components: + - type: Transform + pos: 37.5,-6.5 + parent: 2 + - uid: 6804 + components: + - type: Transform + pos: 38.5,-6.5 + parent: 2 + - uid: 6805 + components: + - type: Transform + pos: 39.5,-6.5 + parent: 2 + - uid: 6806 + components: + - type: Transform + pos: 40.5,-6.5 + parent: 2 + - uid: 6807 + components: + - type: Transform + pos: 41.5,-6.5 + parent: 2 + - uid: 6808 + components: + - type: Transform + pos: 42.5,-6.5 + parent: 2 + - uid: 6809 + components: + - type: Transform + pos: 43.5,-6.5 + parent: 2 + - uid: 6810 + components: + - type: Transform + pos: 23.5,-8.5 + parent: 2 + - uid: 6811 + components: + - type: Transform + pos: 30.5,-8.5 + parent: 2 + - uid: 6812 + components: + - type: Transform + pos: 30.5,-9.5 + parent: 2 + - uid: 6813 + components: + - type: Transform + pos: 31.5,-9.5 + parent: 2 + - uid: 6816 + components: + - type: Transform + pos: 28.5,-8.5 + parent: 2 + - uid: 6817 + components: + - type: Transform + pos: 28.5,-9.5 + parent: 2 + - uid: 6818 + components: + - type: Transform + pos: 32.5,-9.5 + parent: 2 + - uid: 6819 + components: + - type: Transform + pos: 33.5,-9.5 + parent: 2 + - uid: 6820 + components: + - type: Transform + pos: 34.5,-9.5 + parent: 2 + - uid: 6821 + components: + - type: Transform + pos: 35.5,-9.5 + parent: 2 + - uid: 6822 + components: + - type: Transform + pos: 36.5,-9.5 + parent: 2 + - uid: 6823 + components: + - type: Transform + pos: 37.5,-9.5 + parent: 2 + - uid: 6824 + components: + - type: Transform + pos: 37.5,-10.5 + parent: 2 + - uid: 6825 + components: + - type: Transform + pos: 38.5,-10.5 + parent: 2 + - uid: 6826 + components: + - type: Transform + pos: 39.5,-10.5 + parent: 2 + - uid: 6827 + components: + - type: Transform + pos: 40.5,-10.5 + parent: 2 + - uid: 6833 + components: + - type: Transform + pos: 41.5,-10.5 + parent: 2 + - uid: 6834 + components: + - type: Transform + pos: 42.5,-10.5 + parent: 2 + - uid: 6835 + components: + - type: Transform + pos: 43.5,-10.5 + parent: 2 + - uid: 6836 + components: + - type: Transform + pos: 44.5,-10.5 + parent: 2 + - uid: 6837 + components: + - type: Transform + pos: 41.5,-11.5 + parent: 2 + - uid: 7006 + components: + - type: Transform + pos: 21.5,-6.5 + parent: 2 + - uid: 7007 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 2 + - uid: 7173 + components: + - type: Transform + pos: 48.5,6.5 + parent: 2 + - uid: 7412 + components: + - type: Transform + pos: 47.5,11.5 + parent: 2 + - uid: 7595 + components: + - type: Transform + pos: 49.5,1.5 + parent: 2 + - uid: 7605 + components: + - type: Transform + pos: 43.5,31.5 + parent: 2 + - uid: 7631 + components: + - type: Transform + pos: 49.5,0.5 parent: 2 - uid: 7678 components: - type: Transform pos: 10.5,26.5 parent: 2 + - uid: 7729 + components: + - type: Transform + pos: 51.5,20.5 + parent: 2 + - uid: 7730 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 7758 + components: + - type: Transform + pos: 43.5,30.5 + parent: 2 + - uid: 7805 + components: + - type: Transform + pos: 44.5,31.5 + parent: 2 + - uid: 7806 + components: + - type: Transform + pos: 45.5,31.5 + parent: 2 + - uid: 7811 + components: + - type: Transform + pos: 46.5,31.5 + parent: 2 + - uid: 7812 + components: + - type: Transform + pos: 47.5,31.5 + parent: 2 + - uid: 7825 + components: + - type: Transform + pos: 24.5,5.5 + parent: 2 - uid: 7827 components: - type: Transform pos: 1.5,34.5 parent: 2 - - uid: 8261 + - uid: 8262 components: - type: Transform - pos: 30.5,20.5 + pos: 57.5,-17.5 parent: 2 - - uid: 8265 + - uid: 8263 components: - type: Transform - pos: 42.5,-11.5 + pos: 66.5,1.5 parent: 2 - - uid: 8266 + - uid: 8271 components: - type: Transform - pos: 43.5,-11.5 + pos: 47.5,13.5 + parent: 2 + - uid: 8272 + components: + - type: Transform + pos: 48.5,13.5 + parent: 2 + - uid: 8273 + components: + - type: Transform + pos: 52.5,13.5 parent: 2 - uid: 8294 components: - type: Transform pos: 10.5,22.5 parent: 2 - - uid: 8295 + - uid: 8321 components: - type: Transform - pos: 9.5,22.5 + pos: 49.5,20.5 parent: 2 - - uid: 8296 + - uid: 8560 components: - type: Transform - pos: 9.5,26.5 + pos: 30.5,-2.5 + parent: 2 + - uid: 8561 + components: + - type: Transform + pos: 30.5,-1.5 + parent: 2 + - uid: 8565 + components: + - type: Transform + pos: 66.5,0.5 + parent: 2 + - uid: 8566 + components: + - type: Transform + pos: 66.5,-0.5 + parent: 2 + - uid: 8567 + components: + - type: Transform + pos: 66.5,-1.5 + parent: 2 + - uid: 8568 + components: + - type: Transform + pos: 66.5,-2.5 + parent: 2 + - uid: 8569 + components: + - type: Transform + pos: 66.5,-3.5 + parent: 2 + - uid: 8570 + components: + - type: Transform + pos: 66.5,-4.5 + parent: 2 + - uid: 8571 + components: + - type: Transform + pos: 66.5,-5.5 + parent: 2 + - uid: 10792 + components: + - type: Transform + pos: 8.5,-46.5 + parent: 3564 + - uid: 10793 + components: + - type: Transform + pos: 8.5,-45.5 + parent: 3564 + - uid: 10794 + components: + - type: Transform + pos: 8.5,-44.5 + parent: 3564 + - uid: 10795 + components: + - type: Transform + pos: 8.5,-43.5 + parent: 3564 + - uid: 10796 + components: + - type: Transform + pos: 8.5,-42.5 + parent: 3564 + - uid: 10797 + components: + - type: Transform + pos: 8.5,-41.5 + parent: 3564 + - uid: 10798 + components: + - type: Transform + pos: 8.5,-40.5 + parent: 3564 + - uid: 10799 + components: + - type: Transform + pos: 15.5,-39.5 + parent: 3564 + - uid: 10800 + components: + - type: Transform + pos: 15.5,-40.5 + parent: 3564 + - uid: 10801 + components: + - type: Transform + pos: 15.5,-41.5 + parent: 3564 + - uid: 10802 + components: + - type: Transform + pos: 14.5,-41.5 + parent: 3564 + - uid: 10803 + components: + - type: Transform + pos: 13.5,-41.5 + parent: 3564 + - uid: 10804 + components: + - type: Transform + pos: 12.5,-41.5 + parent: 3564 + - uid: 10805 + components: + - type: Transform + pos: 11.5,-41.5 + parent: 3564 + - uid: 10806 + components: + - type: Transform + pos: 10.5,-41.5 + parent: 3564 + - uid: 10807 + components: + - type: Transform + pos: 10.5,-40.5 + parent: 3564 + - uid: 10808 + components: + - type: Transform + pos: 10.5,-39.5 + parent: 3564 + - uid: 10809 + components: + - type: Transform + pos: 10.5,-42.5 + parent: 3564 + - uid: 10810 + components: + - type: Transform + pos: 10.5,-43.5 + parent: 3564 + - uid: 10811 + components: + - type: Transform + pos: 13.5,-42.5 + parent: 3564 + - uid: 10812 + components: + - type: Transform + pos: 13.5,-43.5 + parent: 3564 + - uid: 10813 + components: + - type: Transform + pos: 13.5,-40.5 + parent: 3564 + - uid: 10814 + components: + - type: Transform + pos: 13.5,-39.5 + parent: 3564 + - uid: 10815 + components: + - type: Transform + pos: 12.5,-31.5 + parent: 3564 + - uid: 10816 + components: + - type: Transform + pos: 13.5,-31.5 + parent: 3564 + - uid: 10817 + components: + - type: Transform + pos: 13.5,-32.5 + parent: 3564 + - uid: 10818 + components: + - type: Transform + pos: 14.5,-32.5 + parent: 3564 + - uid: 10819 + components: + - type: Transform + pos: 15.5,-32.5 + parent: 3564 + - uid: 10820 + components: + - type: Transform + pos: 16.5,-32.5 + parent: 3564 + - uid: 10821 + components: + - type: Transform + pos: 17.5,-32.5 + parent: 3564 + - uid: 10822 + components: + - type: Transform + pos: 14.5,-30.5 + parent: 3564 + - uid: 10823 + components: + - type: Transform + pos: 14.5,-29.5 + parent: 3564 + - uid: 10824 + components: + - type: Transform + pos: 14.5,-28.5 + parent: 3564 + - uid: 10825 + components: + - type: Transform + pos: 14.5,-27.5 + parent: 3564 + - uid: 10826 + components: + - type: Transform + pos: 14.5,-26.5 + parent: 3564 + - uid: 10827 + components: + - type: Transform + pos: 14.5,-25.5 + parent: 3564 + - uid: 10828 + components: + - type: Transform + pos: 14.5,-24.5 + parent: 3564 + - uid: 10829 + components: + - type: Transform + pos: 14.5,-23.5 + parent: 3564 + - uid: 10830 + components: + - type: Transform + pos: 14.5,-22.5 + parent: 3564 + - uid: 10831 + components: + - type: Transform + pos: 14.5,-21.5 + parent: 3564 + - uid: 10832 + components: + - type: Transform + pos: 15.5,-21.5 + parent: 3564 + - uid: 10833 + components: + - type: Transform + pos: 16.5,-21.5 + parent: 3564 + - uid: 10834 + components: + - type: Transform + pos: 17.5,-21.5 + parent: 3564 + - uid: 10835 + components: + - type: Transform + pos: 18.5,-21.5 + parent: 3564 + - uid: 10836 + components: + - type: Transform + pos: 18.5,-22.5 + parent: 3564 + - uid: 10837 + components: + - type: Transform + pos: 13.5,-21.5 + parent: 3564 + - uid: 10838 + components: + - type: Transform + pos: 12.5,-21.5 + parent: 3564 + - uid: 10839 + components: + - type: Transform + pos: 11.5,-21.5 + parent: 3564 + - uid: 10840 + components: + - type: Transform + pos: 10.5,-21.5 + parent: 3564 + - uid: 10841 + components: + - type: Transform + pos: 9.5,-21.5 + parent: 3564 + - uid: 10842 + components: + - type: Transform + pos: 12.5,-25.5 + parent: 3564 + - uid: 10843 + components: + - type: Transform + pos: 11.5,-25.5 + parent: 3564 + - uid: 10844 + components: + - type: Transform + pos: 13.5,-25.5 + parent: 3564 + - uid: 10845 + components: + - type: Transform + pos: 10.5,-25.5 + parent: 3564 + - uid: 10846 + components: + - type: Transform + pos: 9.5,-25.5 + parent: 3564 + - uid: 10847 + components: + - type: Transform + pos: 15.5,-25.5 + parent: 3564 + - uid: 10848 + components: + - type: Transform + pos: 16.5,-25.5 + parent: 3564 + - uid: 10849 + components: + - type: Transform + pos: 17.5,-25.5 + parent: 3564 + - uid: 10850 + components: + - type: Transform + pos: 18.5,-25.5 + parent: 3564 + - uid: 10851 + components: + - type: Transform + pos: 19.5,-25.5 + parent: 3564 + - uid: 10852 + components: + - type: Transform + pos: 15.5,-28.5 + parent: 3564 + - uid: 10853 + components: + - type: Transform + pos: 16.5,-28.5 + parent: 3564 + - uid: 10854 + components: + - type: Transform + pos: 17.5,-28.5 + parent: 3564 + - uid: 10855 + components: + - type: Transform + pos: 18.5,-28.5 + parent: 3564 + - uid: 10856 + components: + - type: Transform + pos: 19.5,-28.5 + parent: 3564 + - uid: 10857 + components: + - type: Transform + pos: 13.5,-28.5 + parent: 3564 + - uid: 10858 + components: + - type: Transform + pos: 12.5,-28.5 + parent: 3564 + - uid: 10859 + components: + - type: Transform + pos: 11.5,-28.5 + parent: 3564 + - uid: 10860 + components: + - type: Transform + pos: 10.5,-28.5 + parent: 3564 + - uid: 10861 + components: + - type: Transform + pos: 9.5,-28.5 + parent: 3564 + - uid: 10862 + components: + - type: Transform + pos: 33.5,-31.5 + parent: 3564 + - uid: 10863 + components: + - type: Transform + pos: 33.5,-32.5 + parent: 3564 + - uid: 10864 + components: + - type: Transform + pos: 32.5,-32.5 + parent: 3564 + - uid: 10865 + components: + - type: Transform + pos: 34.5,-31.5 + parent: 3564 + - uid: 10866 + components: + - type: Transform + pos: 35.5,-31.5 + parent: 3564 + - uid: 10867 + components: + - type: Transform + pos: 36.5,-31.5 + parent: 3564 + - uid: 10868 + components: + - type: Transform + pos: 35.5,-30.5 + parent: 3564 + - uid: 10869 + components: + - type: Transform + pos: 35.5,-29.5 + parent: 3564 + - uid: 10870 + components: + - type: Transform + pos: 35.5,-28.5 + parent: 3564 + - uid: 10871 + components: + - type: Transform + pos: 35.5,-27.5 + parent: 3564 + - uid: 10872 + components: + - type: Transform + pos: 35.5,-26.5 + parent: 3564 + - uid: 10873 + components: + - type: Transform + pos: 36.5,-26.5 + parent: 3564 + - uid: 10874 + components: + - type: Transform + pos: 34.5,-26.5 + parent: 3564 + - uid: 10875 + components: + - type: Transform + pos: 33.5,-26.5 + parent: 3564 + - uid: 10876 + components: + - type: Transform + pos: 32.5,-26.5 + parent: 3564 + - uid: 10877 + components: + - type: Transform + pos: 31.5,-26.5 + parent: 3564 + - uid: 10878 + components: + - type: Transform + pos: 30.5,-26.5 + parent: 3564 + - uid: 10879 + components: + - type: Transform + pos: 29.5,-26.5 + parent: 3564 + - uid: 10880 + components: + - type: Transform + pos: 28.5,-26.5 + parent: 3564 + - uid: 10881 + components: + - type: Transform + pos: 34.5,-29.5 + parent: 3564 + - uid: 10882 + components: + - type: Transform + pos: 33.5,-29.5 + parent: 3564 + - uid: 10883 + components: + - type: Transform + pos: 32.5,-29.5 + parent: 3564 + - uid: 10884 + components: + - type: Transform + pos: 31.5,-29.5 + parent: 3564 + - uid: 10885 + components: + - type: Transform + pos: 30.5,-29.5 + parent: 3564 + - uid: 10886 + components: + - type: Transform + pos: 29.5,-29.5 + parent: 3564 + - uid: 10887 + components: + - type: Transform + pos: 28.5,-29.5 + parent: 3564 + - uid: 10888 + components: + - type: Transform + pos: 20.5,-20.5 + parent: 3564 + - uid: 10889 + components: + - type: Transform + pos: 21.5,-20.5 + parent: 3564 + - uid: 10890 + components: + - type: Transform + pos: 22.5,-20.5 + parent: 3564 + - uid: 10891 + components: + - type: Transform + pos: 23.5,-20.5 + parent: 3564 + - uid: 10892 + components: + - type: Transform + pos: 24.5,-20.5 + parent: 3564 + - uid: 10893 + components: + - type: Transform + pos: 25.5,-20.5 + parent: 3564 + - uid: 10894 + components: + - type: Transform + pos: 26.5,-20.5 + parent: 3564 + - uid: 10895 + components: + - type: Transform + pos: 27.5,-20.5 + parent: 3564 + - uid: 10896 + components: + - type: Transform + pos: 28.5,-20.5 + parent: 3564 + - uid: 10897 + components: + - type: Transform + pos: 29.5,-20.5 + parent: 3564 + - uid: 10898 + components: + - type: Transform + pos: 24.5,-19.5 + parent: 3564 + - uid: 10899 + components: + - type: Transform + pos: 24.5,-18.5 + parent: 3564 + - uid: 10900 + components: + - type: Transform + pos: 21.5,-17.5 + parent: 3564 + - uid: 10901 + components: + - type: Transform + pos: 22.5,-17.5 + parent: 3564 + - uid: 10902 + components: + - type: Transform + pos: 23.5,-17.5 + parent: 3564 + - uid: 10903 + components: + - type: Transform + pos: 24.5,-17.5 + parent: 3564 + - uid: 10904 + components: + - type: Transform + pos: 25.5,-17.5 + parent: 3564 + - uid: 10905 + components: + - type: Transform + pos: 26.5,-17.5 + parent: 3564 + - uid: 10906 + components: + - type: Transform + pos: 27.5,-17.5 + parent: 3564 + - uid: 10907 + components: + - type: Transform + pos: 28.5,-17.5 + parent: 3564 + - uid: 10908 + components: + - type: Transform + pos: 29.5,-17.5 + parent: 3564 + - uid: 10909 + components: + - type: Transform + pos: 30.5,-17.5 + parent: 3564 + - uid: 10910 + components: + - type: Transform + pos: 31.5,-17.5 + parent: 3564 + - uid: 10911 + components: + - type: Transform + pos: 32.5,-17.5 + parent: 3564 + - uid: 10912 + components: + - type: Transform + pos: 33.5,-17.5 + parent: 3564 + - uid: 10913 + components: + - type: Transform + pos: 33.5,-18.5 + parent: 3564 + - uid: 10914 + components: + - type: Transform + pos: 33.5,-19.5 + parent: 3564 + - uid: 10915 + components: + - type: Transform + pos: 33.5,-20.5 + parent: 3564 + - uid: 10916 + components: + - type: Transform + pos: 33.5,-21.5 + parent: 3564 + - uid: 10917 + components: + - type: Transform + pos: 33.5,-22.5 + parent: 3564 + - uid: 10918 + components: + - type: Transform + pos: 24.5,-21.5 + parent: 3564 + - uid: 10919 + components: + - type: Transform + pos: 24.5,-22.5 + parent: 3564 + - uid: 10920 + components: + - type: Transform + pos: 24.5,-23.5 + parent: 3564 + - uid: 10921 + components: + - type: Transform + pos: 25.5,-23.5 + parent: 3564 + - uid: 10922 + components: + - type: Transform + pos: 26.5,-23.5 + parent: 3564 + - uid: 10923 + components: + - type: Transform + pos: 27.5,-23.5 + parent: 3564 + - uid: 10924 + components: + - type: Transform + pos: 28.5,-23.5 + parent: 3564 + - uid: 10925 + components: + - type: Transform + pos: 29.5,-23.5 + parent: 3564 + - uid: 10926 + components: + - type: Transform + pos: 23.5,-23.5 + parent: 3564 + - uid: 10927 + components: + - type: Transform + pos: 22.5,-23.5 + parent: 3564 + - uid: 10928 + components: + - type: Transform + pos: 21.5,-23.5 + parent: 3564 + - uid: 10929 + components: + - type: Transform + pos: 19.5,-59.5 + parent: 3564 + - uid: 10930 + components: + - type: Transform + pos: 20.5,-59.5 + parent: 3564 + - uid: 10931 + components: + - type: Transform + pos: 21.5,-59.5 + parent: 3564 + - uid: 10932 + components: + - type: Transform + pos: 22.5,-59.5 + parent: 3564 + - uid: 10933 + components: + - type: Transform + pos: 23.5,-59.5 + parent: 3564 + - uid: 10934 + components: + - type: Transform + pos: 23.5,-58.5 + parent: 3564 + - uid: 10935 + components: + - type: Transform + pos: 23.5,-57.5 + parent: 3564 + - uid: 10936 + components: + - type: Transform + pos: 23.5,-60.5 + parent: 3564 + - uid: 10937 + components: + - type: Transform + pos: 23.5,-61.5 + parent: 3564 + - uid: 10938 + components: + - type: Transform + pos: 23.5,-62.5 + parent: 3564 + - uid: 10939 + components: + - type: Transform + pos: 24.5,-57.5 + parent: 3564 + - uid: 10940 + components: + - type: Transform + pos: 22.5,-57.5 + parent: 3564 + - uid: 10941 + components: + - type: Transform + pos: 24.5,-59.5 + parent: 3564 + - uid: 10942 + components: + - type: Transform + pos: 24.5,-61.5 + parent: 3564 + - uid: 10943 + components: + - type: Transform + pos: 22.5,-61.5 + parent: 3564 + - uid: 10944 + components: + - type: Transform + pos: 18.5,-64.5 + parent: 3564 + - uid: 10945 + components: + - type: Transform + pos: 19.5,-64.5 + parent: 3564 + - uid: 10946 + components: + - type: Transform + pos: 20.5,-64.5 + parent: 3564 + - uid: 10947 + components: + - type: Transform + pos: 21.5,-64.5 + parent: 3564 + - uid: 10948 + components: + - type: Transform + pos: 22.5,-64.5 + parent: 3564 + - uid: 10949 + components: + - type: Transform + pos: 23.5,-64.5 + parent: 3564 + - uid: 10950 + components: + - type: Transform + pos: 23.5,-65.5 + parent: 3564 + - uid: 10951 + components: + - type: Transform + pos: 23.5,-67.5 + parent: 3564 + - uid: 10952 + components: + - type: Transform + pos: 23.5,-66.5 + parent: 3564 + - uid: 10953 + components: + - type: Transform + pos: 22.5,-67.5 + parent: 3564 + - uid: 10954 + components: + - type: Transform + pos: 21.5,-67.5 + parent: 3564 + - uid: 10955 + components: + - type: Transform + pos: 20.5,-67.5 + parent: 3564 + - uid: 10956 + components: + - type: Transform + pos: 19.5,-67.5 + parent: 3564 + - uid: 10957 + components: + - type: Transform + pos: 22.5,-68.5 + parent: 3564 + - uid: 10958 + components: + - type: Transform + pos: 22.5,-69.5 + parent: 3564 + - uid: 10959 + components: + - type: Transform + pos: 22.5,-70.5 + parent: 3564 + - uid: 10960 + components: + - type: Transform + pos: 25.5,-66.5 + parent: 3564 + - uid: 10961 + components: + - type: Transform + pos: 24.5,-66.5 + parent: 3564 + - uid: 10962 + components: + - type: Transform + pos: 25.5,-67.5 + parent: 3564 + - uid: 10963 + components: + - type: Transform + pos: 28.5,-70.5 + parent: 3564 + - uid: 10964 + components: + - type: Transform + pos: 28.5,-69.5 + parent: 3564 + - uid: 10965 + components: + - type: Transform + pos: 28.5,-68.5 + parent: 3564 + - uid: 10966 + components: + - type: Transform + pos: 28.5,-67.5 + parent: 3564 + - uid: 10967 + components: + - type: Transform + pos: 28.5,-66.5 + parent: 3564 + - uid: 10968 + components: + - type: Transform + pos: 28.5,-65.5 + parent: 3564 + - uid: 10969 + components: + - type: Transform + pos: 28.5,-64.5 + parent: 3564 + - uid: 10970 + components: + - type: Transform + pos: 28.5,-63.5 + parent: 3564 + - uid: 10971 + components: + - type: Transform + pos: 29.5,-63.5 + parent: 3564 + - uid: 10972 + components: + - type: Transform + pos: 30.5,-63.5 + parent: 3564 + - uid: 10973 + components: + - type: Transform + pos: 31.5,-63.5 + parent: 3564 + - uid: 10974 + components: + - type: Transform + pos: 32.5,-63.5 + parent: 3564 + - uid: 10975 + components: + - type: Transform + pos: 33.5,-63.5 + parent: 3564 + - uid: 10976 + components: + - type: Transform + pos: 29.5,-68.5 + parent: 3564 + - uid: 10977 + components: + - type: Transform + pos: 30.5,-68.5 + parent: 3564 + - uid: 10978 + components: + - type: Transform + pos: 31.5,-68.5 + parent: 3564 + - uid: 10979 + components: + - type: Transform + pos: 32.5,-68.5 + parent: 3564 + - uid: 10980 + components: + - type: Transform + pos: 33.5,-68.5 + parent: 3564 + - uid: 10981 + components: + - type: Transform + pos: 15.5,-68.5 + parent: 3564 + - uid: 10982 + components: + - type: Transform + pos: 15.5,-67.5 + parent: 3564 + - uid: 10983 + components: + - type: Transform + pos: 15.5,-66.5 + parent: 3564 + - uid: 10984 + components: + - type: Transform + pos: 16.5,-66.5 + parent: 3564 + - uid: 10985 + components: + - type: Transform + pos: 14.5,-66.5 + parent: 3564 + - uid: 10986 + components: + - type: Transform + pos: 10.5,-60.5 + parent: 3564 + - uid: 10987 + components: + - type: Transform + pos: 11.5,-60.5 + parent: 3564 + - uid: 10988 + components: + - type: Transform + pos: 12.5,-60.5 + parent: 3564 + - uid: 10989 + components: + - type: Transform + pos: 13.5,-60.5 + parent: 3564 + - uid: 10990 + components: + - type: Transform + pos: 14.5,-60.5 + parent: 3564 + - uid: 10991 + components: + - type: Transform + pos: 15.5,-60.5 + parent: 3564 + - uid: 10992 + components: + - type: Transform + pos: 16.5,-60.5 + parent: 3564 + - uid: 10993 + components: + - type: Transform + pos: 16.5,-59.5 + parent: 3564 + - uid: 10994 + components: + - type: Transform + pos: 16.5,-58.5 + parent: 3564 + - uid: 10995 + components: + - type: Transform + pos: 12.5,-59.5 + parent: 3564 + - uid: 10996 + components: + - type: Transform + pos: 12.5,-58.5 + parent: 3564 + - uid: 10997 + components: + - type: Transform + pos: 12.5,-61.5 + parent: 3564 + - uid: 10998 + components: + - type: Transform + pos: 12.5,-62.5 + parent: 3564 + - uid: 10999 + components: + - type: Transform + pos: 16.5,-61.5 + parent: 3564 + - uid: 11000 + components: + - type: Transform + pos: 16.5,-62.5 + parent: 3564 + - uid: 11001 + components: + - type: Transform + pos: 31.5,-60.5 + parent: 3564 + - uid: 11002 + components: + - type: Transform + pos: 31.5,-59.5 + parent: 3564 + - uid: 11003 + components: + - type: Transform + pos: 32.5,-59.5 + parent: 3564 + - uid: 11004 + components: + - type: Transform + pos: 33.5,-59.5 + parent: 3564 + - uid: 11005 + components: + - type: Transform + pos: 34.5,-59.5 + parent: 3564 + - uid: 11006 + components: + - type: Transform + pos: 35.5,-59.5 + parent: 3564 + - uid: 11007 + components: + - type: Transform + pos: 36.5,-59.5 + parent: 3564 + - uid: 11008 + components: + - type: Transform + pos: 34.5,-58.5 + parent: 3564 + - uid: 11009 + components: + - type: Transform + pos: 34.5,-60.5 + parent: 3564 + - uid: 11010 + components: + - type: Transform + pos: 30.5,-59.5 + parent: 3564 + - uid: 11011 + components: + - type: Transform + pos: 29.5,-59.5 + parent: 3564 + - uid: 11012 + components: + - type: Transform + pos: 28.5,-59.5 + parent: 3564 + - uid: 11013 + components: + - type: Transform + pos: 27.5,-59.5 + parent: 3564 + - uid: 11014 + components: + - type: Transform + pos: 27.5,-58.5 + parent: 3564 + - uid: 11015 + components: + - type: Transform + pos: 27.5,-60.5 + parent: 3564 + - uid: 11016 + components: + - type: Transform + pos: 19.5,-39.5 + parent: 3564 + - uid: 11017 + components: + - type: Transform + pos: 29.5,-60.5 + parent: 3564 + - uid: 11018 + components: + - type: Transform + pos: 29.5,-58.5 + parent: 3564 + - uid: 11019 + components: + - type: Transform + pos: 20.5,-39.5 + parent: 3564 + - uid: 11020 + components: + - type: Transform + pos: 21.5,-39.5 + parent: 3564 + - uid: 11021 + components: + - type: Transform + pos: 22.5,-39.5 + parent: 3564 + - uid: 11022 + components: + - type: Transform + pos: 23.5,-26.5 + parent: 3564 + - uid: 11023 + components: + - type: Transform + pos: 23.5,-27.5 + parent: 3564 + - uid: 11024 + components: + - type: Transform + pos: 23.5,-28.5 + parent: 3564 + - uid: 11025 + components: + - type: Transform + pos: 23.5,-29.5 + parent: 3564 + - uid: 11026 + components: + - type: Transform + pos: 23.5,-30.5 + parent: 3564 + - uid: 11027 + components: + - type: Transform + pos: 23.5,-31.5 + parent: 3564 + - uid: 11028 + components: + - type: Transform + pos: 23.5,-32.5 + parent: 3564 + - uid: 11029 + components: + - type: Transform + pos: 23.5,-33.5 + parent: 3564 + - uid: 11030 + components: + - type: Transform + pos: 23.5,-34.5 + parent: 3564 + - uid: 11031 + components: + - type: Transform + pos: 23.5,-35.5 + parent: 3564 + - uid: 11032 + components: + - type: Transform + pos: 23.5,-36.5 + parent: 3564 + - uid: 11033 + components: + - type: Transform + pos: 23.5,-37.5 + parent: 3564 + - uid: 11034 + components: + - type: Transform + pos: 23.5,-38.5 + parent: 3564 + - uid: 11035 + components: + - type: Transform + pos: 23.5,-39.5 + parent: 3564 + - uid: 11036 + components: + - type: Transform + pos: 23.5,-40.5 + parent: 3564 + - uid: 11037 + components: + - type: Transform + pos: 23.5,-41.5 + parent: 3564 + - uid: 11038 + components: + - type: Transform + pos: 23.5,-42.5 + parent: 3564 + - uid: 11039 + components: + - type: Transform + pos: 23.5,-44.5 + parent: 3564 + - uid: 11040 + components: + - type: Transform + pos: 23.5,-43.5 + parent: 3564 + - uid: 11041 + components: + - type: Transform + pos: 23.5,-45.5 + parent: 3564 + - uid: 11042 + components: + - type: Transform + pos: 23.5,-46.5 + parent: 3564 + - uid: 11043 + components: + - type: Transform + pos: 23.5,-47.5 + parent: 3564 + - uid: 11044 + components: + - type: Transform + pos: 23.5,-48.5 + parent: 3564 + - uid: 11045 + components: + - type: Transform + pos: 23.5,-49.5 + parent: 3564 + - uid: 11046 + components: + - type: Transform + pos: 23.5,-50.5 + parent: 3564 + - uid: 11047 + components: + - type: Transform + pos: 23.5,-51.5 + parent: 3564 + - uid: 11048 + components: + - type: Transform + pos: 23.5,-52.5 + parent: 3564 + - uid: 11049 + components: + - type: Transform + pos: 23.5,-53.5 + parent: 3564 + - uid: 11050 + components: + - type: Transform + pos: 23.5,-54.5 + parent: 3564 + - uid: 11051 + components: + - type: Transform + pos: 24.5,-34.5 + parent: 3564 + - uid: 11052 + components: + - type: Transform + pos: 25.5,-34.5 + parent: 3564 + - uid: 11053 + components: + - type: Transform + pos: 26.5,-34.5 + parent: 3564 + - uid: 11054 + components: + - type: Transform + pos: 27.5,-34.5 + parent: 3564 + - uid: 11055 + components: + - type: Transform + pos: 28.5,-34.5 + parent: 3564 + - uid: 11056 + components: + - type: Transform + pos: 24.5,-38.5 + parent: 3564 + - uid: 11057 + components: + - type: Transform + pos: 25.5,-38.5 + parent: 3564 + - uid: 11058 + components: + - type: Transform + pos: 26.5,-38.5 + parent: 3564 + - uid: 11059 + components: + - type: Transform + pos: 27.5,-38.5 + parent: 3564 + - uid: 11060 + components: + - type: Transform + pos: 28.5,-38.5 + parent: 3564 + - uid: 11061 + components: + - type: Transform + pos: 24.5,-42.5 + parent: 3564 + - uid: 11062 + components: + - type: Transform + pos: 25.5,-42.5 + parent: 3564 + - uid: 11063 + components: + - type: Transform + pos: 26.5,-42.5 + parent: 3564 + - uid: 11064 + components: + - type: Transform + pos: 27.5,-42.5 + parent: 3564 + - uid: 11065 + components: + - type: Transform + pos: 28.5,-42.5 + parent: 3564 + - uid: 11066 + components: + - type: Transform + pos: 24.5,-46.5 + parent: 3564 + - uid: 11067 + components: + - type: Transform + pos: 25.5,-46.5 + parent: 3564 + - uid: 11068 + components: + - type: Transform + pos: 26.5,-46.5 + parent: 3564 + - uid: 11069 + components: + - type: Transform + pos: 27.5,-46.5 + parent: 3564 + - uid: 11070 + components: + - type: Transform + pos: 28.5,-46.5 + parent: 3564 + - uid: 11071 + components: + - type: Transform + pos: 24.5,-50.5 + parent: 3564 + - uid: 11072 + components: + - type: Transform + pos: 25.5,-50.5 + parent: 3564 + - uid: 11073 + components: + - type: Transform + pos: 26.5,-50.5 + parent: 3564 + - uid: 11074 + components: + - type: Transform + pos: 27.5,-50.5 + parent: 3564 + - uid: 11075 + components: + - type: Transform + pos: 28.5,-50.5 + parent: 3564 + - uid: 11076 + components: + - type: Transform + pos: 24.5,-54.5 + parent: 3564 + - uid: 11077 + components: + - type: Transform + pos: 25.5,-54.5 + parent: 3564 + - uid: 11078 + components: + - type: Transform + pos: 26.5,-54.5 + parent: 3564 + - uid: 11079 + components: + - type: Transform + pos: 27.5,-54.5 + parent: 3564 + - uid: 11080 + components: + - type: Transform + pos: 28.5,-54.5 + parent: 3564 + - uid: 11081 + components: + - type: Transform + pos: 22.5,-54.5 + parent: 3564 + - uid: 11082 + components: + - type: Transform + pos: 21.5,-54.5 + parent: 3564 + - uid: 11083 + components: + - type: Transform + pos: 20.5,-54.5 + parent: 3564 + - uid: 11084 + components: + - type: Transform + pos: 19.5,-54.5 + parent: 3564 + - uid: 11085 + components: + - type: Transform + pos: 18.5,-54.5 + parent: 3564 + - uid: 11086 + components: + - type: Transform + pos: 17.5,-54.5 + parent: 3564 + - uid: 11087 + components: + - type: Transform + pos: 21.5,-50.5 + parent: 3564 + - uid: 11088 + components: + - type: Transform + pos: 20.5,-50.5 + parent: 3564 + - uid: 11089 + components: + - type: Transform + pos: 19.5,-50.5 + parent: 3564 + - uid: 11090 + components: + - type: Transform + pos: 22.5,-50.5 + parent: 3564 + - uid: 11091 + components: + - type: Transform + pos: 18.5,-50.5 + parent: 3564 + - uid: 11092 + components: + - type: Transform + pos: 17.5,-50.5 + parent: 3564 + - uid: 11093 + components: + - type: Transform + pos: 22.5,-46.5 + parent: 3564 + - uid: 11094 + components: + - type: Transform + pos: 21.5,-46.5 + parent: 3564 + - uid: 11095 + components: + - type: Transform + pos: 20.5,-46.5 + parent: 3564 + - uid: 11096 + components: + - type: Transform + pos: 19.5,-46.5 + parent: 3564 + - uid: 11097 + components: + - type: Transform + pos: 18.5,-46.5 + parent: 3564 + - uid: 11098 + components: + - type: Transform + pos: 17.5,-46.5 + parent: 3564 + - uid: 11099 + components: + - type: Transform + pos: 22.5,-42.5 + parent: 3564 + - uid: 11100 + components: + - type: Transform + pos: 21.5,-42.5 + parent: 3564 + - uid: 11101 + components: + - type: Transform + pos: 20.5,-42.5 + parent: 3564 + - uid: 11102 + components: + - type: Transform + pos: 20.5,-34.5 + parent: 3564 + - uid: 11103 + components: + - type: Transform + pos: 22.5,-34.5 + parent: 3564 + - uid: 11104 + components: + - type: Transform + pos: 21.5,-34.5 + parent: 3564 + - uid: 11105 + components: + - type: Transform + pos: 19.5,-38.5 + parent: 3564 + - uid: 11106 + components: + - type: Transform + pos: 18.5,-38.5 + parent: 3564 + - uid: 11107 + components: + - type: Transform + pos: 17.5,-38.5 + parent: 3564 + - uid: 11108 + components: + - type: Transform + pos: 24.5,-30.5 + parent: 3564 + - uid: 11109 + components: + - type: Transform + pos: 25.5,-30.5 + parent: 3564 + - uid: 11110 + components: + - type: Transform + pos: 22.5,-30.5 + parent: 3564 + - uid: 11111 + components: + - type: Transform + pos: 21.5,-30.5 + parent: 3564 + - uid: 11112 + components: + - type: Transform + pos: 24.5,-26.5 + parent: 3564 + - uid: 11113 + components: + - type: Transform + pos: 22.5,-26.5 + parent: 3564 + - uid: 11375 + components: + - type: Transform + pos: 31.5,24.5 + parent: 2 + - uid: 11376 + components: + - type: Transform + pos: 30.5,24.5 + parent: 2 + - uid: 11377 + components: + - type: Transform + pos: 29.5,24.5 + parent: 2 + - uid: 11378 + components: + - type: Transform + pos: 28.5,24.5 + parent: 2 + - uid: 11379 + components: + - type: Transform + pos: 27.5,24.5 + parent: 2 + - uid: 11380 + components: + - type: Transform + pos: 28.5,25.5 + parent: 2 + - uid: 11381 + components: + - type: Transform + pos: 28.5,26.5 + parent: 2 + - uid: 11382 + components: + - type: Transform + pos: 28.5,27.5 + parent: 2 + - uid: 11383 + components: + - type: Transform + pos: 28.5,28.5 + parent: 2 + - uid: 11384 + components: + - type: Transform + pos: 28.5,29.5 + parent: 2 + - uid: 11385 + components: + - type: Transform + pos: 27.5,29.5 + parent: 2 + - uid: 11386 + components: + - type: Transform + pos: 26.5,29.5 + parent: 2 + - uid: 11387 + components: + - type: Transform + pos: 32.5,34.5 + parent: 2 + - uid: 11388 + components: + - type: Transform + pos: 31.5,34.5 + parent: 2 + - uid: 11389 + components: + - type: Transform + pos: 30.5,34.5 + parent: 2 + - uid: 11390 + components: + - type: Transform + pos: 29.5,34.5 + parent: 2 + - uid: 11391 + components: + - type: Transform + pos: 34.5,34.5 + parent: 2 + - uid: 11392 + components: + - type: Transform + pos: 35.5,34.5 + parent: 2 + - uid: 11393 + components: + - type: Transform + pos: 36.5,34.5 + parent: 2 + - uid: 11394 + components: + - type: Transform + pos: 37.5,34.5 + parent: 2 + - uid: 11395 + components: + - type: Transform + pos: 27.5,27.5 + parent: 2 + - uid: 11396 + components: + - type: Transform + pos: 26.5,27.5 + parent: 2 + - uid: 11407 + components: + - type: Transform + pos: 24.5,6.5 + parent: 2 + - uid: 11408 + components: + - type: Transform + pos: 25.5,6.5 + parent: 2 + - uid: 11409 + components: + - type: Transform + pos: 18.5,10.5 + parent: 2 + - uid: 11410 + components: + - type: Transform + pos: 18.5,9.5 + parent: 2 + - uid: 11411 + components: + - type: Transform + pos: 17.5,6.5 + parent: 2 + - uid: 11412 + components: + - type: Transform + pos: 17.5,7.5 + parent: 2 + - uid: 11413 + components: + - type: Transform + pos: 19.5,-0.5 + parent: 2 + - uid: 11414 + components: + - type: Transform + pos: 19.5,0.5 + parent: 2 + - uid: 11415 + components: + - type: Transform + pos: 16.5,2.5 + parent: 2 + - uid: 11416 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 2 + - uid: 11417 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 2 + - uid: 11418 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 2 + - uid: 11419 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 2 + - uid: 11420 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 2 + - uid: 11421 + components: + - type: Transform + pos: 1.5,6.5 + parent: 2 + - uid: 11422 + components: + - type: Transform + pos: 1.5,7.5 + parent: 2 + - uid: 11423 + components: + - type: Transform + pos: -1.5,12.5 + parent: 2 + - uid: 11424 + components: + - type: Transform + pos: -0.5,12.5 + parent: 2 + - uid: 11425 + components: + - type: Transform + pos: 0.5,12.5 + parent: 2 + - uid: 11426 + components: + - type: Transform + pos: 5.5,13.5 + parent: 2 + - uid: 11427 + components: + - type: Transform + pos: 3.5,13.5 + parent: 2 + - uid: 11428 + components: + - type: Transform + pos: 3.5,12.5 + parent: 2 + - uid: 11429 + components: + - type: Transform + pos: 5.5,12.5 + parent: 2 + - uid: 11455 + components: + - type: Transform + pos: 50.5,14.5 + parent: 2 + - uid: 11456 + components: + - type: Transform + pos: 50.5,15.5 + parent: 2 + - uid: 11457 + components: + - type: Transform + pos: 50.5,13.5 + parent: 2 + - uid: 11458 + components: + - type: Transform + pos: 49.5,13.5 + parent: 2 + - uid: 11459 + components: + - type: Transform + pos: 61.5,17.5 + parent: 2 + - uid: 11460 + components: + - type: Transform + pos: 61.5,18.5 + parent: 2 + - uid: 11461 + components: + - type: Transform + pos: 61.5,19.5 + parent: 2 + - uid: 11462 + components: + - type: Transform + pos: 61.5,20.5 + parent: 2 + - uid: 11463 + components: + - type: Transform + pos: 61.5,0.5 + parent: 2 + - uid: 11464 + components: + - type: Transform + pos: 61.5,-0.5 + parent: 2 + - uid: 11465 + components: + - type: Transform + pos: 57.5,1.5 + parent: 2 + - uid: 11466 + components: + - type: Transform + pos: 56.5,1.5 + parent: 2 + - uid: 11467 + components: + - type: Transform + pos: 59.5,7.5 + parent: 2 + - uid: 11468 + components: + - type: Transform + pos: 60.5,7.5 + parent: 2 + - uid: 11469 + components: + - type: Transform + pos: 59.5,8.5 + parent: 2 + - uid: 11470 + components: + - type: Transform + pos: 58.5,8.5 + parent: 2 + - uid: 11471 + components: + - type: Transform + pos: 54.5,7.5 + parent: 2 + - uid: 11472 + components: + - type: Transform + pos: 54.5,6.5 + parent: 2 + - uid: 11473 + components: + - type: Transform + pos: 55.5,6.5 + parent: 2 + - uid: 11549 + components: + - type: Transform + pos: 52.5,35.5 + parent: 2 + - uid: 11550 + components: + - type: Transform + pos: 52.5,36.5 + parent: 2 + - uid: 11551 + components: + - type: Transform + pos: 52.5,34.5 + parent: 2 + - uid: 11552 + components: + - type: Transform + pos: 45.5,37.5 + parent: 2 + - uid: 11553 + components: + - type: Transform + pos: 44.5,40.5 + parent: 2 + - uid: 11554 + components: + - type: Transform + pos: 45.5,40.5 + parent: 2 + - uid: 11555 + components: + - type: Transform + pos: 46.5,37.5 parent: 2 - proto: CableApcStack10 entities: @@ -8903,27 +12264,197 @@ entities: - type: Transform pos: 2.575419,-7.6192417 parent: 2 - - uid: 7709 - components: - - type: Transform - pos: 48.5,21.5 - parent: 2 - uid: 7710 components: - type: Transform pos: 49.5,21.5 parent: 2 + - uid: 11140 + components: + - type: Transform + pos: 50.5,21.5 + parent: 2 + - uid: 11149 + components: + - type: Transform + pos: 50.5,19.5 + parent: 2 - proto: CableHV entities: - - uid: 2810 + - uid: 573 components: - type: Transform - pos: 28.5,30.5 + pos: 45.5,20.5 parent: 2 - - uid: 3626 + - uid: 591 components: - type: Transform - pos: 51.5,22.5 + pos: 46.5,20.5 + parent: 2 + - uid: 659 + components: + - type: Transform + pos: 19.5,34.5 + parent: 2 + - uid: 660 + components: + - type: Transform + pos: 20.5,34.5 + parent: 2 + - uid: 783 + components: + - type: Transform + pos: 19.5,35.5 + parent: 2 + - uid: 919 + components: + - type: Transform + pos: 19.5,36.5 + parent: 2 + - uid: 1537 + components: + - type: Transform + pos: 43.5,22.5 + parent: 2 + - uid: 1541 + components: + - type: Transform + pos: 43.5,21.5 + parent: 2 + - uid: 1570 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 2 + - uid: 1585 + components: + - type: Transform + pos: 33.5,34.5 + parent: 2 + - uid: 1588 + components: + - type: Transform + pos: 32.5,34.5 + parent: 2 + - uid: 1592 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 2 + - uid: 1604 + components: + - type: Transform + pos: 47.5,38.5 + parent: 2 + - uid: 1608 + components: + - type: Transform + pos: 47.5,39.5 + parent: 2 + - uid: 1611 + components: + - type: Transform + pos: 47.5,40.5 + parent: 2 + - uid: 1613 + components: + - type: Transform + pos: 46.5,40.5 + parent: 2 + - uid: 1622 + components: + - type: Transform + pos: 16.5,38.5 + parent: 2 + - uid: 1623 + components: + - type: Transform + pos: 15.5,38.5 + parent: 2 + - uid: 1631 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 2 + - uid: 1647 + components: + - type: Transform + pos: 19.5,37.5 + parent: 2 + - uid: 1649 + components: + - type: Transform + pos: 19.5,38.5 + parent: 2 + - uid: 1659 + components: + - type: Transform + pos: 19.5,39.5 + parent: 2 + - uid: 1666 + components: + - type: Transform + pos: 15.5,37.5 + parent: 2 + - uid: 1723 + components: + - type: Transform + pos: 47.5,35.5 + parent: 2 + - uid: 1853 + components: + - type: Transform + pos: 21.5,34.5 + parent: 2 + - uid: 2135 + components: + - type: Transform + pos: 17.5,38.5 + parent: 2 + - uid: 2186 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 2 + - uid: 2207 + components: + - type: Transform + pos: 47.5,25.5 + parent: 2 + - uid: 2234 + components: + - type: Transform + pos: 36.5,21.5 + parent: 2 + - uid: 2277 + components: + - type: Transform + pos: 49.5,20.5 + parent: 2 + - uid: 2278 + components: + - type: Transform + pos: 50.5,20.5 + parent: 2 + - uid: 2531 + components: + - type: Transform + pos: 35.5,21.5 + parent: 2 + - uid: 2690 + components: + - type: Transform + pos: 18.5,38.5 + parent: 2 + - uid: 2691 + components: + - type: Transform + pos: 18.5,39.5 + parent: 2 + - uid: 2692 + components: + - type: Transform + pos: 18.5,37.5 parent: 2 - uid: 4330 components: @@ -8945,36 +12476,6 @@ entities: - type: Transform pos: 0.5,-10.5 parent: 2 - - uid: 4361 - components: - - type: Transform - pos: 1.5,-7.5 - parent: 2 - - uid: 4365 - components: - - type: Transform - pos: 1.5,-8.5 - parent: 2 - - uid: 4366 - components: - - type: Transform - pos: 1.5,-9.5 - parent: 2 - - uid: 4368 - components: - - type: Transform - pos: 1.5,-10.5 - parent: 2 - - uid: 4384 - components: - - type: Transform - pos: 1.5,-11.5 - parent: 2 - - uid: 4386 - components: - - type: Transform - pos: 1.5,-12.5 - parent: 2 - uid: 4389 components: - type: Transform @@ -9185,16 +12686,6 @@ entities: - type: Transform pos: 18.5,-5.5 parent: 2 - - uid: 4576 - components: - - type: Transform - pos: 19.5,-5.5 - parent: 2 - - uid: 4577 - components: - - type: Transform - pos: 19.5,-4.5 - parent: 2 - uid: 4578 components: - type: Transform @@ -9530,16 +13021,6 @@ entities: - type: Transform pos: 14.5,18.5 parent: 2 - - uid: 4651 - components: - - type: Transform - pos: 34.5,19.5 - parent: 2 - - uid: 4652 - components: - - type: Transform - pos: 34.5,20.5 - parent: 2 - uid: 4653 components: - type: Transform @@ -9585,36 +13066,6 @@ entities: - type: Transform pos: 34.5,29.5 parent: 2 - - uid: 4662 - components: - - type: Transform - pos: 33.5,26.5 - parent: 2 - - uid: 4663 - components: - - type: Transform - pos: 33.5,27.5 - parent: 2 - - uid: 4664 - components: - - type: Transform - pos: 33.5,28.5 - parent: 2 - - uid: 4665 - components: - - type: Transform - pos: 33.5,29.5 - parent: 2 - - uid: 4666 - components: - - type: Transform - pos: 31.5,29.5 - parent: 2 - - uid: 4667 - components: - - type: Transform - pos: 32.5,29.5 - parent: 2 - uid: 4668 components: - type: Transform @@ -9635,21 +13086,6 @@ entities: - type: Transform pos: 34.5,33.5 parent: 2 - - uid: 4672 - components: - - type: Transform - pos: 28.5,31.5 - parent: 2 - - uid: 4673 - components: - - type: Transform - pos: 28.5,32.5 - parent: 2 - - uid: 4674 - components: - - type: Transform - pos: 28.5,33.5 - parent: 2 - uid: 4675 components: - type: Transform @@ -9685,66 +13121,16 @@ entities: - type: Transform pos: 22.5,34.5 parent: 2 - - uid: 4682 - components: - - type: Transform - pos: 21.5,34.5 - parent: 2 - - uid: 4683 - components: - - type: Transform - pos: 20.5,34.5 - parent: 2 - - uid: 4684 - components: - - type: Transform - pos: 19.5,34.5 - parent: 2 - - uid: 4685 - components: - - type: Transform - pos: 18.5,34.5 - parent: 2 - - uid: 4686 - components: - - type: Transform - pos: 17.5,34.5 - parent: 2 - - uid: 4687 - components: - - type: Transform - pos: 16.5,34.5 - parent: 2 - uid: 4688 components: - type: Transform - pos: 15.5,34.5 - parent: 2 - - uid: 4689 - components: - - type: Transform - pos: 15.5,35.5 + pos: 16.5,39.5 parent: 2 - uid: 4690 components: - type: Transform pos: 15.5,36.5 parent: 2 - - uid: 4691 - components: - - type: Transform - pos: 30.5,29.5 - parent: 2 - - uid: 4692 - components: - - type: Transform - pos: 29.5,29.5 - parent: 2 - - uid: 4693 - components: - - type: Transform - pos: 28.5,29.5 - parent: 2 - uid: 4695 components: - type: Transform @@ -9755,26 +13141,6 @@ entities: - type: Transform pos: 35.5,34.5 parent: 2 - - uid: 4697 - components: - - type: Transform - pos: 36.5,34.5 - parent: 2 - - uid: 4698 - components: - - type: Transform - pos: 37.5,34.5 - parent: 2 - - uid: 4699 - components: - - type: Transform - pos: 37.5,35.5 - parent: 2 - - uid: 4700 - components: - - type: Transform - pos: 35.5,35.5 - parent: 2 - uid: 4701 components: - type: Transform @@ -9850,26 +13216,6 @@ entities: - type: Transform pos: 47.5,24.5 parent: 2 - - uid: 4716 - components: - - type: Transform - pos: 48.5,24.5 - parent: 2 - - uid: 4717 - components: - - type: Transform - pos: 49.5,24.5 - parent: 2 - - uid: 4718 - components: - - type: Transform - pos: 50.5,24.5 - parent: 2 - - uid: 4719 - components: - - type: Transform - pos: 51.5,24.5 - parent: 2 - uid: 4720 components: - type: Transform @@ -10595,10 +13941,15 @@ entities: - type: Transform pos: 32.5,48.5 parent: 2 + - uid: 4935 + components: + - type: Transform + pos: 45.5,41.5 + parent: 2 - uid: 5220 components: - type: Transform - pos: 51.5,21.5 + pos: 47.5,20.5 parent: 2 - uid: 5221 components: @@ -10625,10 +13976,35 @@ entities: - type: Transform pos: 54.5,19.5 parent: 2 + - uid: 5232 + components: + - type: Transform + pos: 45.5,40.5 + parent: 2 - uid: 5360 components: - type: Transform - pos: 51.5,23.5 + pos: 48.5,20.5 + parent: 2 + - uid: 5857 + components: + - type: Transform + pos: 31.5,34.5 + parent: 2 + - uid: 5858 + components: + - type: Transform + pos: 29.5,34.5 + parent: 2 + - uid: 5859 + components: + - type: Transform + pos: 30.5,34.5 + parent: 2 + - uid: 5883 + components: + - type: Transform + pos: 46.5,39.5 parent: 2 - uid: 6596 components: @@ -10830,10 +14206,1215 @@ entities: - type: Transform pos: 61.5,28.5 parent: 2 - - uid: 7651 + - uid: 7229 components: - type: Transform - pos: 33.5,30.5 + pos: 57.5,62.5 + parent: 2 + - uid: 7612 + components: + - type: Transform + pos: 47.5,36.5 + parent: 2 + - uid: 7755 + components: + - type: Transform + pos: 47.5,37.5 + parent: 2 + - uid: 7769 + components: + - type: Transform + pos: 43.5,34.5 + parent: 2 + - uid: 7772 + components: + - type: Transform + pos: 42.5,34.5 + parent: 2 + - uid: 7785 + components: + - type: Transform + pos: 41.5,34.5 + parent: 2 + - uid: 7788 + components: + - type: Transform + pos: 40.5,34.5 + parent: 2 + - uid: 7789 + components: + - type: Transform + pos: 39.5,34.5 + parent: 2 + - uid: 7791 + components: + - type: Transform + pos: 38.5,34.5 + parent: 2 + - uid: 7796 + components: + - type: Transform + pos: 36.5,34.5 + parent: 2 + - uid: 7797 + components: + - type: Transform + pos: 37.5,34.5 + parent: 2 + - uid: 7817 + components: + - type: Transform + pos: 46.5,35.5 + parent: 2 + - uid: 7822 + components: + - type: Transform + pos: 45.5,35.5 + parent: 2 + - uid: 7829 + components: + - type: Transform + pos: 44.5,35.5 + parent: 2 + - uid: 8026 + components: + - type: Transform + pos: 2.5,-38.5 + parent: 3564 + - uid: 8027 + components: + - type: Transform + pos: 2.5,-39.5 + parent: 3564 + - uid: 8028 + components: + - type: Transform + pos: 2.5,-40.5 + parent: 3564 + - uid: 8029 + components: + - type: Transform + pos: 4.5,-38.5 + parent: 3564 + - uid: 8030 + components: + - type: Transform + pos: 4.5,-39.5 + parent: 3564 + - uid: 8031 + components: + - type: Transform + pos: 4.5,-40.5 + parent: 3564 + - uid: 8224 + components: + - type: Transform + pos: 43.5,35.5 + parent: 2 + - uid: 8270 + components: + - type: Transform + pos: 44.5,20.5 + parent: 2 + - uid: 8292 + components: + - type: Transform + pos: 43.5,20.5 + parent: 2 + - uid: 8349 + components: + - type: Transform + pos: 37.5,21.5 + parent: 2 + - uid: 8431 + components: + - type: Transform + pos: 48.5,25.5 + parent: 2 + - uid: 8432 + components: + - type: Transform + pos: 49.5,25.5 + parent: 2 + - uid: 8433 + components: + - type: Transform + pos: 50.5,25.5 + parent: 2 + - uid: 8649 + components: + - type: Transform + pos: 2.5,-41.5 + parent: 3564 + - uid: 8650 + components: + - type: Transform + pos: 1.5,-41.5 + parent: 3564 + - uid: 8651 + components: + - type: Transform + pos: 2.5,-42.5 + parent: 3564 + - uid: 8652 + components: + - type: Transform + pos: 2.5,-43.5 + parent: 3564 + - uid: 8653 + components: + - type: Transform + pos: 2.5,-44.5 + parent: 3564 + - uid: 8654 + components: + - type: Transform + pos: 4.5,-44.5 + parent: 3564 + - uid: 8655 + components: + - type: Transform + pos: 4.5,-43.5 + parent: 3564 + - uid: 8656 + components: + - type: Transform + pos: 4.5,-42.5 + parent: 3564 + - uid: 8657 + components: + - type: Transform + pos: 4.5,-41.5 + parent: 3564 + - uid: 8658 + components: + - type: Transform + pos: 5.5,-41.5 + parent: 3564 + - uid: 8659 + components: + - type: Transform + pos: 3.5,-36.5 + parent: 3564 + - uid: 8660 + components: + - type: Transform + pos: 3.5,-37.5 + parent: 3564 + - uid: 8661 + components: + - type: Transform + pos: 3.5,-38.5 + parent: 3564 + - uid: 8662 + components: + - type: Transform + pos: 2.5,-35.5 + parent: 3564 + - uid: 8663 + components: + - type: Transform + pos: 2.5,-36.5 + parent: 3564 + - uid: 8664 + components: + - type: Transform + pos: 2.5,-34.5 + parent: 3564 + - uid: 8665 + components: + - type: Transform + pos: 4.5,-34.5 + parent: 3564 + - uid: 8666 + components: + - type: Transform + pos: 4.5,-35.5 + parent: 3564 + - uid: 8667 + components: + - type: Transform + pos: 4.5,-36.5 + parent: 3564 + - uid: 8668 + components: + - type: Transform + pos: 3.5,-34.5 + parent: 3564 + - uid: 8669 + components: + - type: Transform + pos: 3.5,-33.5 + parent: 3564 + - uid: 8670 + components: + - type: Transform + pos: 3.5,-32.5 + parent: 3564 + - uid: 8671 + components: + - type: Transform + pos: 2.5,-30.5 + parent: 3564 + - uid: 8672 + components: + - type: Transform + pos: 2.5,-31.5 + parent: 3564 + - uid: 8673 + components: + - type: Transform + pos: 2.5,-32.5 + parent: 3564 + - uid: 8674 + components: + - type: Transform + pos: 4.5,-30.5 + parent: 3564 + - uid: 8675 + components: + - type: Transform + pos: 4.5,-31.5 + parent: 3564 + - uid: 8676 + components: + - type: Transform + pos: 4.5,-32.5 + parent: 3564 + - uid: 8677 + components: + - type: Transform + pos: 3.5,-30.5 + parent: 3564 + - uid: 8678 + components: + - type: Transform + pos: 3.5,-29.5 + parent: 3564 + - uid: 8679 + components: + - type: Transform + pos: 3.5,-28.5 + parent: 3564 + - uid: 8680 + components: + - type: Transform + pos: 2.5,-28.5 + parent: 3564 + - uid: 8681 + components: + - type: Transform + pos: 2.5,-27.5 + parent: 3564 + - uid: 8682 + components: + - type: Transform + pos: 2.5,-26.5 + parent: 3564 + - uid: 8683 + components: + - type: Transform + pos: 4.5,-28.5 + parent: 3564 + - uid: 8684 + components: + - type: Transform + pos: 4.5,-27.5 + parent: 3564 + - uid: 8685 + components: + - type: Transform + pos: 4.5,-26.5 + parent: 3564 + - uid: 8686 + components: + - type: Transform + pos: 3.5,-26.5 + parent: 3564 + - uid: 8687 + components: + - type: Transform + pos: 3.5,-25.5 + parent: 3564 + - uid: 8688 + components: + - type: Transform + pos: 3.5,-24.5 + parent: 3564 + - uid: 8689 + components: + - type: Transform + pos: 2.5,-24.5 + parent: 3564 + - uid: 8690 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 3564 + - uid: 8691 + components: + - type: Transform + pos: 2.5,-22.5 + parent: 3564 + - uid: 8692 + components: + - type: Transform + pos: 4.5,-22.5 + parent: 3564 + - uid: 8693 + components: + - type: Transform + pos: 4.5,-23.5 + parent: 3564 + - uid: 8694 + components: + - type: Transform + pos: 4.5,-24.5 + parent: 3564 + - uid: 8695 + components: + - type: Transform + pos: 3.5,-22.5 + parent: 3564 + - uid: 8696 + components: + - type: Transform + pos: 3.5,-21.5 + parent: 3564 + - uid: 8697 + components: + - type: Transform + pos: 3.5,-20.5 + parent: 3564 + - uid: 8698 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 3564 + - uid: 8699 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 3564 + - uid: 8700 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 3564 + - uid: 8701 + components: + - type: Transform + pos: 4.5,-20.5 + parent: 3564 + - uid: 8702 + components: + - type: Transform + pos: 4.5,-19.5 + parent: 3564 + - uid: 8703 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 3564 + - uid: 8704 + components: + - type: Transform + pos: 3.5,-18.5 + parent: 3564 + - uid: 8705 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 3564 + - uid: 8706 + components: + - type: Transform + pos: 3.5,-16.5 + parent: 3564 + - uid: 8707 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 3564 + - uid: 8708 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 3564 + - uid: 8709 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 3564 + - uid: 8710 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 3564 + - uid: 8711 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 3564 + - uid: 8712 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 3564 + - uid: 8713 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 3564 + - uid: 8714 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 3564 + - uid: 8715 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 3564 + - uid: 8716 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 3564 + - uid: 8717 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 3564 + - uid: 8718 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 3564 + - uid: 8719 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 3564 + - uid: 8720 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 3564 + - uid: 8721 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 3564 + - uid: 8722 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 3564 + - uid: 8723 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 3564 + - uid: 8724 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 3564 + - uid: 8725 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 3564 + - uid: 8726 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 3564 + - uid: 8727 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 3564 + - uid: 8728 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 3564 + - uid: 8729 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 3564 + - uid: 8730 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 3564 + - uid: 8731 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 3564 + - uid: 8732 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 3564 + - uid: 8733 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 3564 + - uid: 8734 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 3564 + - uid: 8735 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 3564 + - uid: 8736 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 3564 + - uid: 8737 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 3564 + - uid: 8738 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 3564 + - uid: 8739 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 3564 + - uid: 8740 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 3564 + - uid: 8741 + components: + - type: Transform + pos: 3.5,-44.5 + parent: 3564 + - uid: 8742 + components: + - type: Transform + pos: 3.5,-45.5 + parent: 3564 + - uid: 8743 + components: + - type: Transform + pos: 3.5,-46.5 + parent: 3564 + - uid: 8744 + components: + - type: Transform + pos: 2.5,-46.5 + parent: 3564 + - uid: 8745 + components: + - type: Transform + pos: 2.5,-47.5 + parent: 3564 + - uid: 8746 + components: + - type: Transform + pos: 2.5,-48.5 + parent: 3564 + - uid: 8747 + components: + - type: Transform + pos: 4.5,-46.5 + parent: 3564 + - uid: 8748 + components: + - type: Transform + pos: 4.5,-47.5 + parent: 3564 + - uid: 8749 + components: + - type: Transform + pos: 4.5,-48.5 + parent: 3564 + - uid: 8750 + components: + - type: Transform + pos: 3.5,-48.5 + parent: 3564 + - uid: 8751 + components: + - type: Transform + pos: 3.5,-49.5 + parent: 3564 + - uid: 8752 + components: + - type: Transform + pos: 3.5,-50.5 + parent: 3564 + - uid: 8753 + components: + - type: Transform + pos: 3.5,-51.5 + parent: 3564 + - uid: 8754 + components: + - type: Transform + pos: 2.5,-51.5 + parent: 3564 + - uid: 8755 + components: + - type: Transform + pos: 2.5,-52.5 + parent: 3564 + - uid: 8756 + components: + - type: Transform + pos: 2.5,-53.5 + parent: 3564 + - uid: 8757 + components: + - type: Transform + pos: 4.5,-51.5 + parent: 3564 + - uid: 8758 + components: + - type: Transform + pos: 4.5,-52.5 + parent: 3564 + - uid: 8759 + components: + - type: Transform + pos: 4.5,-53.5 + parent: 3564 + - uid: 8760 + components: + - type: Transform + pos: 3.5,-53.5 + parent: 3564 + - uid: 8761 + components: + - type: Transform + pos: 3.5,-54.5 + parent: 3564 + - uid: 8762 + components: + - type: Transform + pos: 3.5,-55.5 + parent: 3564 + - uid: 8763 + components: + - type: Transform + pos: 2.5,-55.5 + parent: 3564 + - uid: 8764 + components: + - type: Transform + pos: 2.5,-56.5 + parent: 3564 + - uid: 8765 + components: + - type: Transform + pos: 2.5,-57.5 + parent: 3564 + - uid: 8766 + components: + - type: Transform + pos: 4.5,-55.5 + parent: 3564 + - uid: 8767 + components: + - type: Transform + pos: 4.5,-56.5 + parent: 3564 + - uid: 8768 + components: + - type: Transform + pos: 4.5,-57.5 + parent: 3564 + - uid: 8769 + components: + - type: Transform + pos: 3.5,-57.5 + parent: 3564 + - uid: 8770 + components: + - type: Transform + pos: 3.5,-58.5 + parent: 3564 + - uid: 8771 + components: + - type: Transform + pos: 3.5,-59.5 + parent: 3564 + - uid: 8772 + components: + - type: Transform + pos: 2.5,-59.5 + parent: 3564 + - uid: 8773 + components: + - type: Transform + pos: 2.5,-60.5 + parent: 3564 + - uid: 8774 + components: + - type: Transform + pos: 2.5,-61.5 + parent: 3564 + - uid: 8775 + components: + - type: Transform + pos: 4.5,-59.5 + parent: 3564 + - uid: 8776 + components: + - type: Transform + pos: 4.5,-60.5 + parent: 3564 + - uid: 8777 + components: + - type: Transform + pos: 4.5,-61.5 + parent: 3564 + - uid: 8778 + components: + - type: Transform + pos: 3.5,-63.5 + parent: 3564 + - uid: 8779 + components: + - type: Transform + pos: 3.5,-61.5 + parent: 3564 + - uid: 8780 + components: + - type: Transform + pos: 3.5,-62.5 + parent: 3564 + - uid: 8781 + components: + - type: Transform + pos: 2.5,-63.5 + parent: 3564 + - uid: 8782 + components: + - type: Transform + pos: 2.5,-64.5 + parent: 3564 + - uid: 8783 + components: + - type: Transform + pos: 2.5,-65.5 + parent: 3564 + - uid: 8784 + components: + - type: Transform + pos: 4.5,-63.5 + parent: 3564 + - uid: 8785 + components: + - type: Transform + pos: 4.5,-64.5 + parent: 3564 + - uid: 8786 + components: + - type: Transform + pos: 4.5,-65.5 + parent: 3564 + - uid: 8787 + components: + - type: Transform + pos: 3.5,-65.5 + parent: 3564 + - uid: 8788 + components: + - type: Transform + pos: 3.5,-66.5 + parent: 3564 + - uid: 8789 + components: + - type: Transform + pos: 3.5,-67.5 + parent: 3564 + - uid: 8790 + components: + - type: Transform + pos: 3.5,-68.5 + parent: 3564 + - uid: 8791 + components: + - type: Transform + pos: 2.5,-68.5 + parent: 3564 + - uid: 8792 + components: + - type: Transform + pos: 2.5,-69.5 + parent: 3564 + - uid: 8793 + components: + - type: Transform + pos: 2.5,-70.5 + parent: 3564 + - uid: 8794 + components: + - type: Transform + pos: 4.5,-68.5 + parent: 3564 + - uid: 8795 + components: + - type: Transform + pos: 4.5,-69.5 + parent: 3564 + - uid: 8796 + components: + - type: Transform + pos: 4.5,-70.5 + parent: 3564 + - uid: 8797 + components: + - type: Transform + pos: 3.5,-70.5 + parent: 3564 + - uid: 8798 + components: + - type: Transform + pos: 3.5,-71.5 + parent: 3564 + - uid: 8799 + components: + - type: Transform + pos: 3.5,-72.5 + parent: 3564 + - uid: 8800 + components: + - type: Transform + pos: 2.5,-72.5 + parent: 3564 + - uid: 8801 + components: + - type: Transform + pos: 2.5,-73.5 + parent: 3564 + - uid: 8802 + components: + - type: Transform + pos: 2.5,-74.5 + parent: 3564 + - uid: 8803 + components: + - type: Transform + pos: 4.5,-72.5 + parent: 3564 + - uid: 8804 + components: + - type: Transform + pos: 4.5,-73.5 + parent: 3564 + - uid: 8805 + components: + - type: Transform + pos: 4.5,-74.5 + parent: 3564 + - uid: 8806 + components: + - type: Transform + pos: 3.5,-74.5 + parent: 3564 + - uid: 8807 + components: + - type: Transform + pos: 3.5,-75.5 + parent: 3564 + - uid: 8808 + components: + - type: Transform + pos: 3.5,-76.5 + parent: 3564 + - uid: 8809 + components: + - type: Transform + pos: 2.5,-76.5 + parent: 3564 + - uid: 8810 + components: + - type: Transform + pos: 2.5,-77.5 + parent: 3564 + - uid: 8811 + components: + - type: Transform + pos: 2.5,-78.5 + parent: 3564 + - uid: 8812 + components: + - type: Transform + pos: 4.5,-76.5 + parent: 3564 + - uid: 8813 + components: + - type: Transform + pos: 4.5,-77.5 + parent: 3564 + - uid: 8814 + components: + - type: Transform + pos: 4.5,-78.5 + parent: 3564 + - uid: 8815 + components: + - type: Transform + pos: 3.5,-78.5 + parent: 3564 + - uid: 8816 + components: + - type: Transform + pos: 3.5,-79.5 + parent: 3564 + - uid: 8817 + components: + - type: Transform + pos: 3.5,-80.5 + parent: 3564 + - uid: 8818 + components: + - type: Transform + pos: 2.5,-80.5 + parent: 3564 + - uid: 8819 + components: + - type: Transform + pos: 2.5,-81.5 + parent: 3564 + - uid: 8820 + components: + - type: Transform + pos: 2.5,-82.5 + parent: 3564 + - uid: 8821 + components: + - type: Transform + pos: 4.5,-80.5 + parent: 3564 + - uid: 8822 + components: + - type: Transform + pos: 4.5,-81.5 + parent: 3564 + - uid: 8823 + components: + - type: Transform + pos: 4.5,-82.5 + parent: 3564 + - uid: 8824 + components: + - type: Transform + pos: 3.5,-82.5 + parent: 3564 + - uid: 8825 + components: + - type: Transform + pos: 3.5,-83.5 + parent: 3564 + - uid: 8826 + components: + - type: Transform + pos: 3.5,-84.5 + parent: 3564 + - uid: 8827 + components: + - type: Transform + pos: 2.5,-84.5 + parent: 3564 + - uid: 8828 + components: + - type: Transform + pos: 2.5,-85.5 + parent: 3564 + - uid: 8829 + components: + - type: Transform + pos: 2.5,-86.5 + parent: 3564 + - uid: 8830 + components: + - type: Transform + pos: 4.5,-84.5 + parent: 3564 + - uid: 8831 + components: + - type: Transform + pos: 4.5,-85.5 + parent: 3564 + - uid: 8832 + components: + - type: Transform + pos: 4.5,-86.5 + parent: 3564 + - uid: 8833 + components: + - type: Transform + pos: 3.5,-86.5 + parent: 3564 + - uid: 8834 + components: + - type: Transform + pos: 3.5,-87.5 + parent: 3564 + - uid: 8835 + components: + - type: Transform + pos: 3.5,-88.5 + parent: 3564 + - uid: 8836 + components: + - type: Transform + pos: 2.5,-88.5 + parent: 3564 + - uid: 8837 + components: + - type: Transform + pos: 2.5,-89.5 + parent: 3564 + - uid: 8838 + components: + - type: Transform + pos: 2.5,-90.5 + parent: 3564 + - uid: 8839 + components: + - type: Transform + pos: 4.5,-88.5 + parent: 3564 + - uid: 8840 + components: + - type: Transform + pos: 4.5,-89.5 + parent: 3564 + - uid: 8841 + components: + - type: Transform + pos: 4.5,-90.5 + parent: 3564 + - uid: 9437 + components: + - type: Transform + pos: 8.5,-42.5 + parent: 3564 + - uid: 9440 + components: + - type: Transform + pos: 6.5,-41.5 + parent: 3564 + - uid: 9441 + components: + - type: Transform + pos: 7.5,-41.5 + parent: 3564 + - uid: 9442 + components: + - type: Transform + pos: 7.5,-40.5 + parent: 3564 + - uid: 9443 + components: + - type: Transform + pos: 7.5,-39.5 + parent: 3564 + - uid: 9444 + components: + - type: Transform + pos: 8.5,-41.5 + parent: 3564 + - uid: 9445 + components: + - type: Transform + pos: 8.5,-44.5 + parent: 3564 + - uid: 9446 + components: + - type: Transform + pos: 8.5,-43.5 + parent: 3564 + - uid: 9447 + components: + - type: Transform + pos: 7.5,-43.5 + parent: 3564 + - uid: 9448 + components: + - type: Transform + pos: 7.5,-43.5 + parent: 3564 + - uid: 9450 + components: + - type: Transform + pos: 7.5,-44.5 + parent: 3564 + - uid: 9451 + components: + - type: Transform + pos: 7.5,-45.5 + parent: 3564 + - uid: 9454 + components: + - type: Transform + pos: 7.5,-46.5 + parent: 3564 + - uid: 9455 + components: + - type: Transform + pos: 7.5,-47.5 + parent: 3564 + - uid: 9456 + components: + - type: Transform + pos: 8.5,-47.5 + parent: 3564 + - uid: 9457 + components: + - type: Transform + pos: 9.5,-47.5 + parent: 3564 + - uid: 9458 + components: + - type: Transform + pos: 10.5,-47.5 + parent: 3564 + - uid: 9459 + components: + - type: Transform + pos: 10.5,-46.5 + parent: 3564 + - uid: 9461 + components: + - type: Transform + pos: 10.5,-45.5 + parent: 3564 + - uid: 11339 + components: + - type: Transform + pos: 18.5,-4.5 + parent: 2 + - uid: 11340 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 2 + - uid: 11344 + components: + - type: Transform + pos: 22.5,-12.5 parent: 2 - proto: CableHVStack10 entities: @@ -10857,33 +15438,168 @@ entities: - type: Transform pos: 2.497294,-7.3536167 parent: 2 - - uid: 7707 - components: - - type: Transform - pos: 48.5,21.5 - parent: 2 - uid: 7708 components: - type: Transform pos: 49.5,21.5 parent: 2 -- proto: CableMV - entities: - - uid: 1884 + - uid: 11141 components: - type: Transform - pos: 32.5,30.5 + pos: 50.5,21.5 + parent: 2 + - uid: 11151 + components: + - type: Transform + pos: 50.5,19.5 + parent: 2 +- proto: CableMV + entities: + - uid: 89 + components: + - type: Transform + pos: 14.5,28.5 + parent: 2 + - uid: 148 + components: + - type: Transform + pos: 13.5,27.5 + parent: 2 + - uid: 466 + components: + - type: Transform + pos: 29.5,34.5 + parent: 2 + - uid: 670 + components: + - type: Transform + pos: 30.5,34.5 + parent: 2 + - uid: 685 + components: + - type: Transform + pos: 13.5,25.5 + parent: 2 + - uid: 689 + components: + - type: Transform + pos: 31.5,34.5 + parent: 2 + - uid: 690 + components: + - type: Transform + pos: 32.5,34.5 + parent: 2 + - uid: 862 + components: + - type: Transform + pos: 50.5,10.5 + parent: 2 + - uid: 895 + components: + - type: Transform + pos: 48.5,6.5 + parent: 2 + - uid: 1384 + components: + - type: Transform + pos: 21.5,-6.5 + parent: 2 + - uid: 1488 + components: + - type: Transform + pos: 43.5,32.5 + parent: 2 + - uid: 1544 + components: + - type: Transform + pos: 50.5,8.5 + parent: 2 + - uid: 1545 + components: + - type: Transform + pos: 50.5,11.5 + parent: 2 + - uid: 1546 + components: + - type: Transform + pos: 50.5,9.5 + parent: 2 + - uid: 1551 + components: + - type: Transform + pos: 50.5,14.5 + parent: 2 + - uid: 1609 + components: + - type: Transform + pos: 44.5,35.5 + parent: 2 + - uid: 1612 + components: + - type: Transform + pos: 43.5,31.5 + parent: 2 + - uid: 1961 + components: + - type: Transform + pos: 19.5,22.5 parent: 2 - uid: 1965 components: - type: Transform pos: 13.5,18.5 parent: 2 + - uid: 1966 + components: + - type: Transform + pos: 18.5,22.5 + parent: 2 + - uid: 2043 + components: + - type: Transform + pos: 50.5,12.5 + parent: 2 - uid: 2055 components: - type: Transform pos: 16.5,18.5 parent: 2 + - uid: 2157 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 2 + - uid: 2173 + components: + - type: Transform + pos: 18.5,-4.5 + parent: 2 + - uid: 2620 + components: + - type: Transform + pos: 50.5,15.5 + parent: 2 + - uid: 2885 + components: + - type: Transform + pos: 13.5,24.5 + parent: 2 + - uid: 2886 + components: + - type: Transform + pos: 13.5,26.5 + parent: 2 + - uid: 2887 + components: + - type: Transform + pos: 13.5,28.5 + parent: 2 + - uid: 2889 + components: + - type: Transform + pos: 15.5,28.5 + parent: 2 - uid: 2933 components: - type: Transform @@ -10899,6 +15615,36 @@ entities: - type: Transform pos: 14.5,18.5 parent: 2 + - uid: 3023 + components: + - type: Transform + pos: 16.5,23.5 + parent: 2 + - uid: 3027 + components: + - type: Transform + pos: 17.5,22.5 + parent: 2 + - uid: 4226 + components: + - type: Transform + pos: 17.5,23.5 + parent: 2 + - uid: 4246 + components: + - type: Transform + pos: 14.5,23.5 + parent: 2 + - uid: 4512 + components: + - type: Transform + pos: 13.5,23.5 + parent: 2 + - uid: 4738 + components: + - type: Transform + pos: 50.5,13.5 + parent: 2 - uid: 4947 components: - type: Transform @@ -11204,16 +15950,6 @@ entities: - type: Transform pos: 18.5,-5.5 parent: 2 - - uid: 5027 - components: - - type: Transform - pos: 19.5,-5.5 - parent: 2 - - uid: 5028 - components: - - type: Transform - pos: 19.5,-4.5 - parent: 2 - uid: 5030 components: - type: Transform @@ -11389,16 +16125,6 @@ entities: - type: Transform pos: 6.5,-11.5 parent: 2 - - uid: 5070 - components: - - type: Transform - pos: 5.5,-11.5 - parent: 2 - - uid: 5071 - components: - - type: Transform - pos: 4.5,-11.5 - parent: 2 - uid: 5072 components: - type: Transform @@ -11634,11 +16360,6 @@ entities: - type: Transform pos: 30.5,-2.5 parent: 2 - - uid: 5122 - components: - - type: Transform - pos: 30.5,-3.5 - parent: 2 - uid: 5123 components: - type: Transform @@ -11659,11 +16380,6 @@ entities: - type: Transform pos: 5.5,0.5 parent: 2 - - uid: 5127 - components: - - type: Transform - pos: 29.5,-3.5 - parent: 2 - uid: 5128 components: - type: Transform @@ -11779,71 +16495,11 @@ entities: - type: Transform pos: 17.5,21.5 parent: 2 - - uid: 5152 - components: - - type: Transform - pos: 18.5,20.5 - parent: 2 - - uid: 5153 - components: - - type: Transform - pos: 19.5,20.5 - parent: 2 - - uid: 5154 - components: - - type: Transform - pos: 20.5,20.5 - parent: 2 - - uid: 5155 - components: - - type: Transform - pos: 16.5,21.5 - parent: 2 - - uid: 5156 - components: - - type: Transform - pos: 15.5,21.5 - parent: 2 - - uid: 5157 - components: - - type: Transform - pos: 15.5,22.5 - parent: 2 - uid: 5158 components: - type: Transform pos: 15.5,23.5 parent: 2 - - uid: 5159 - components: - - type: Transform - pos: 15.5,24.5 - parent: 2 - - uid: 5162 - components: - - type: Transform - pos: 15.5,25.5 - parent: 2 - - uid: 5163 - components: - - type: Transform - pos: 15.5,26.5 - parent: 2 - - uid: 5164 - components: - - type: Transform - pos: 15.5,27.5 - parent: 2 - - uid: 5165 - components: - - type: Transform - pos: 15.5,28.5 - parent: 2 - - uid: 5166 - components: - - type: Transform - pos: 15.5,29.5 - parent: 2 - uid: 5167 components: - type: Transform @@ -12029,60 +16685,10 @@ entities: - type: Transform pos: 16.5,11.5 parent: 2 - - uid: 5207 - components: - - type: Transform - pos: 10.5,11.5 - parent: 2 - - uid: 5208 - components: - - type: Transform - pos: 9.5,11.5 - parent: 2 - - uid: 5209 - components: - - type: Transform - pos: 9.5,12.5 - parent: 2 - - uid: 5210 - components: - - type: Transform - pos: 8.5,12.5 - parent: 2 - - uid: 5211 - components: - - type: Transform - pos: 7.5,12.5 - parent: 2 - uid: 5212 components: - type: Transform - pos: 6.5,12.5 - parent: 2 - - uid: 5213 - components: - - type: Transform - pos: 5.5,12.5 - parent: 2 - - uid: 5214 - components: - - type: Transform - pos: 5.5,11.5 - parent: 2 - - uid: 5215 - components: - - type: Transform - pos: 4.5,11.5 - parent: 2 - - uid: 5216 - components: - - type: Transform - pos: 3.5,11.5 - parent: 2 - - uid: 5217 - components: - - type: Transform - pos: 3.5,10.5 + pos: 43.5,35.5 parent: 2 - uid: 5226 components: @@ -12594,11 +17200,6 @@ entities: - type: Transform pos: 49.5,6.5 parent: 2 - - uid: 5338 - components: - - type: Transform - pos: 51.5,7.5 - parent: 2 - uid: 5339 components: - type: Transform @@ -12614,31 +17215,6 @@ entities: - type: Transform pos: 48.5,8.5 parent: 2 - - uid: 5342 - components: - - type: Transform - pos: 50.5,8.5 - parent: 2 - - uid: 5343 - components: - - type: Transform - pos: 50.5,9.5 - parent: 2 - - uid: 5344 - components: - - type: Transform - pos: 50.5,10.5 - parent: 2 - - uid: 5345 - components: - - type: Transform - pos: 50.5,11.5 - parent: 2 - - uid: 5346 - components: - - type: Transform - pos: 51.5,11.5 - parent: 2 - uid: 5347 components: - type: Transform @@ -13039,6 +17615,11 @@ entities: - type: Transform pos: 61.5,48.5 parent: 2 + - uid: 5457 + components: + - type: Transform + pos: 47.5,6.5 + parent: 2 - uid: 5501 components: - type: Transform @@ -13094,11 +17675,6 @@ entities: - type: Transform pos: 44.5,21.5 parent: 2 - - uid: 5744 - components: - - type: Transform - pos: 35.5,35.5 - parent: 2 - uid: 5745 components: - type: Transform @@ -13139,51 +17715,6 @@ entities: - type: Transform pos: 31.5,31.5 parent: 2 - - uid: 5756 - components: - - type: Transform - pos: 32.5,29.5 - parent: 2 - - uid: 5757 - components: - - type: Transform - pos: 31.5,29.5 - parent: 2 - - uid: 5758 - components: - - type: Transform - pos: 30.5,29.5 - parent: 2 - - uid: 5759 - components: - - type: Transform - pos: 29.5,29.5 - parent: 2 - - uid: 5760 - components: - - type: Transform - pos: 28.5,29.5 - parent: 2 - - uid: 5761 - components: - - type: Transform - pos: 28.5,30.5 - parent: 2 - - uid: 5762 - components: - - type: Transform - pos: 28.5,31.5 - parent: 2 - - uid: 5763 - components: - - type: Transform - pos: 28.5,32.5 - parent: 2 - - uid: 5764 - components: - - type: Transform - pos: 28.5,33.5 - parent: 2 - uid: 5765 components: - type: Transform @@ -13384,6 +17915,956 @@ entities: - type: Transform pos: 6.5,2.5 parent: 2 + - uid: 6843 + components: + - type: Transform + pos: 33.5,34.5 + parent: 2 + - uid: 7008 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 2 + - uid: 7009 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 2 + - uid: 7010 + components: + - type: Transform + pos: 19.5,-6.5 + parent: 2 + - uid: 7011 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 2 + - uid: 7115 + components: + - type: Transform + pos: 45.5,35.5 + parent: 2 + - uid: 7172 + components: + - type: Transform + pos: 43.5,33.5 + parent: 2 + - uid: 7349 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 2 + - uid: 7368 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 2 + - uid: 7579 + components: + - type: Transform + pos: 32.5,30.5 + parent: 2 + - uid: 7604 + components: + - type: Transform + pos: 43.5,30.5 + parent: 2 + - uid: 7774 + components: + - type: Transform + pos: 32.5,29.5 + parent: 2 + - uid: 8416 + components: + - type: Transform + pos: 46.5,35.5 + parent: 2 + - uid: 8417 + components: + - type: Transform + pos: 47.5,35.5 + parent: 2 + - uid: 8418 + components: + - type: Transform + pos: 47.5,36.5 + parent: 2 + - uid: 8469 + components: + - type: Transform + pos: 32.5,28.5 + parent: 2 + - uid: 8562 + components: + - type: Transform + pos: 29.5,-2.5 + parent: 2 + - uid: 9474 + components: + - type: Transform + pos: 10.5,-45.5 + parent: 3564 + - uid: 9475 + components: + - type: Transform + pos: 10.5,-44.5 + parent: 3564 + - uid: 9476 + components: + - type: Transform + pos: 10.5,-43.5 + parent: 3564 + - uid: 9477 + components: + - type: Transform + pos: 10.5,-42.5 + parent: 3564 + - uid: 9478 + components: + - type: Transform + pos: 10.5,-41.5 + parent: 3564 + - uid: 9479 + components: + - type: Transform + pos: 11.5,-41.5 + parent: 3564 + - uid: 9480 + components: + - type: Transform + pos: 12.5,-41.5 + parent: 3564 + - uid: 9481 + components: + - type: Transform + pos: 13.5,-41.5 + parent: 3564 + - uid: 9482 + components: + - type: Transform + pos: 14.5,-41.5 + parent: 3564 + - uid: 9483 + components: + - type: Transform + pos: 15.5,-41.5 + parent: 3564 + - uid: 9484 + components: + - type: Transform + pos: 16.5,-41.5 + parent: 3564 + - uid: 9485 + components: + - type: Transform + pos: 17.5,-41.5 + parent: 3564 + - uid: 9486 + components: + - type: Transform + pos: 15.5,-40.5 + parent: 3564 + - uid: 9487 + components: + - type: Transform + pos: 15.5,-39.5 + parent: 3564 + - uid: 9488 + components: + - type: Transform + pos: 18.5,-41.5 + parent: 3564 + - uid: 9489 + components: + - type: Transform + pos: 19.5,-41.5 + parent: 3564 + - uid: 9490 + components: + - type: Transform + pos: 20.5,-41.5 + parent: 3564 + - uid: 9491 + components: + - type: Transform + pos: 21.5,-41.5 + parent: 3564 + - uid: 9492 + components: + - type: Transform + pos: 22.5,-41.5 + parent: 3564 + - uid: 9493 + components: + - type: Transform + pos: 23.5,-41.5 + parent: 3564 + - uid: 9494 + components: + - type: Transform + pos: 22.5,-39.5 + parent: 3564 + - uid: 9495 + components: + - type: Transform + pos: 21.5,-39.5 + parent: 3564 + - uid: 9496 + components: + - type: Transform + pos: 20.5,-39.5 + parent: 3564 + - uid: 9497 + components: + - type: Transform + pos: 19.5,-39.5 + parent: 3564 + - uid: 9498 + components: + - type: Transform + pos: 23.5,-40.5 + parent: 3564 + - uid: 9499 + components: + - type: Transform + pos: 23.5,-39.5 + parent: 3564 + - uid: 9500 + components: + - type: Transform + pos: 23.5,-38.5 + parent: 3564 + - uid: 9501 + components: + - type: Transform + pos: 23.5,-37.5 + parent: 3564 + - uid: 9502 + components: + - type: Transform + pos: 23.5,-36.5 + parent: 3564 + - uid: 9503 + components: + - type: Transform + pos: 23.5,-35.5 + parent: 3564 + - uid: 9504 + components: + - type: Transform + pos: 22.5,-32.5 + parent: 3564 + - uid: 9505 + components: + - type: Transform + pos: 23.5,-29.5 + parent: 3564 + - uid: 9506 + components: + - type: Transform + pos: 23.5,-30.5 + parent: 3564 + - uid: 9507 + components: + - type: Transform + pos: 23.5,-31.5 + parent: 3564 + - uid: 9508 + components: + - type: Transform + pos: 14.5,-26.5 + parent: 3564 + - uid: 9509 + components: + - type: Transform + pos: 21.5,-32.5 + parent: 3564 + - uid: 9510 + components: + - type: Transform + pos: 20.5,-32.5 + parent: 3564 + - uid: 9511 + components: + - type: Transform + pos: 19.5,-32.5 + parent: 3564 + - uid: 9512 + components: + - type: Transform + pos: 18.5,-32.5 + parent: 3564 + - uid: 9513 + components: + - type: Transform + pos: 17.5,-32.5 + parent: 3564 + - uid: 9514 + components: + - type: Transform + pos: 16.5,-32.5 + parent: 3564 + - uid: 9515 + components: + - type: Transform + pos: 15.5,-32.5 + parent: 3564 + - uid: 9516 + components: + - type: Transform + pos: 14.5,-32.5 + parent: 3564 + - uid: 9517 + components: + - type: Transform + pos: 13.5,-32.5 + parent: 3564 + - uid: 9518 + components: + - type: Transform + pos: 13.5,-31.5 + parent: 3564 + - uid: 9519 + components: + - type: Transform + pos: 12.5,-31.5 + parent: 3564 + - uid: 9520 + components: + - type: Transform + pos: 23.5,-32.5 + parent: 3564 + - uid: 9521 + components: + - type: Transform + pos: 15.5,-26.5 + parent: 3564 + - uid: 9522 + components: + - type: Transform + pos: 16.5,-26.5 + parent: 3564 + - uid: 9523 + components: + - type: Transform + pos: 18.5,-26.5 + parent: 3564 + - uid: 9524 + components: + - type: Transform + pos: 19.5,-26.5 + parent: 3564 + - uid: 9525 + components: + - type: Transform + pos: 17.5,-26.5 + parent: 3564 + - uid: 9526 + components: + - type: Transform + pos: 21.5,-26.5 + parent: 3564 + - uid: 9527 + components: + - type: Transform + pos: 20.5,-26.5 + parent: 3564 + - uid: 9528 + components: + - type: Transform + pos: 14.5,-27.5 + parent: 3564 + - uid: 9529 + components: + - type: Transform + pos: 14.5,-28.5 + parent: 3564 + - uid: 9530 + components: + - type: Transform + pos: 14.5,-30.5 + parent: 3564 + - uid: 9531 + components: + - type: Transform + pos: 14.5,-29.5 + parent: 3564 + - uid: 9532 + components: + - type: Transform + pos: 23.5,-28.5 + parent: 3564 + - uid: 9533 + components: + - type: Transform + pos: 24.5,-28.5 + parent: 3564 + - uid: 9534 + components: + - type: Transform + pos: 25.5,-28.5 + parent: 3564 + - uid: 9535 + components: + - type: Transform + pos: 26.5,-28.5 + parent: 3564 + - uid: 9536 + components: + - type: Transform + pos: 27.5,-28.5 + parent: 3564 + - uid: 9537 + components: + - type: Transform + pos: 28.5,-28.5 + parent: 3564 + - uid: 9538 + components: + - type: Transform + pos: 29.5,-28.5 + parent: 3564 + - uid: 9539 + components: + - type: Transform + pos: 30.5,-28.5 + parent: 3564 + - uid: 9540 + components: + - type: Transform + pos: 31.5,-28.5 + parent: 3564 + - uid: 9541 + components: + - type: Transform + pos: 32.5,-28.5 + parent: 3564 + - uid: 9542 + components: + - type: Transform + pos: 33.5,-28.5 + parent: 3564 + - uid: 9543 + components: + - type: Transform + pos: 34.5,-28.5 + parent: 3564 + - uid: 9544 + components: + - type: Transform + pos: 34.5,-29.5 + parent: 3564 + - uid: 9545 + components: + - type: Transform + pos: 34.5,-30.5 + parent: 3564 + - uid: 9546 + components: + - type: Transform + pos: 34.5,-31.5 + parent: 3564 + - uid: 9547 + components: + - type: Transform + pos: 33.5,-31.5 + parent: 3564 + - uid: 9548 + components: + - type: Transform + pos: 22.5,-26.5 + parent: 3564 + - uid: 9549 + components: + - type: Transform + pos: 23.5,-26.5 + parent: 3564 + - uid: 9550 + components: + - type: Transform + pos: 23.5,-27.5 + parent: 3564 + - uid: 9551 + components: + - type: Transform + pos: 23.5,-25.5 + parent: 3564 + - uid: 9552 + components: + - type: Transform + pos: 23.5,-24.5 + parent: 3564 + - uid: 9553 + components: + - type: Transform + pos: 23.5,-23.5 + parent: 3564 + - uid: 9554 + components: + - type: Transform + pos: 23.5,-22.5 + parent: 3564 + - uid: 9555 + components: + - type: Transform + pos: 23.5,-21.5 + parent: 3564 + - uid: 9556 + components: + - type: Transform + pos: 23.5,-20.5 + parent: 3564 + - uid: 9557 + components: + - type: Transform + pos: 22.5,-20.5 + parent: 3564 + - uid: 9558 + components: + - type: Transform + pos: 21.5,-20.5 + parent: 3564 + - uid: 9559 + components: + - type: Transform + pos: 20.5,-20.5 + parent: 3564 + - uid: 9560 + components: + - type: Transform + pos: 23.5,-42.5 + parent: 3564 + - uid: 9561 + components: + - type: Transform + pos: 23.5,-43.5 + parent: 3564 + - uid: 9562 + components: + - type: Transform + pos: 23.5,-44.5 + parent: 3564 + - uid: 9563 + components: + - type: Transform + pos: 23.5,-47.5 + parent: 3564 + - uid: 9564 + components: + - type: Transform + pos: 23.5,-45.5 + parent: 3564 + - uid: 9565 + components: + - type: Transform + pos: 23.5,-46.5 + parent: 3564 + - uid: 9566 + components: + - type: Transform + pos: 23.5,-48.5 + parent: 3564 + - uid: 9567 + components: + - type: Transform + pos: 23.5,-49.5 + parent: 3564 + - uid: 9568 + components: + - type: Transform + pos: 23.5,-50.5 + parent: 3564 + - uid: 9569 + components: + - type: Transform + pos: 23.5,-51.5 + parent: 3564 + - uid: 9570 + components: + - type: Transform + pos: 23.5,-54.5 + parent: 3564 + - uid: 9571 + components: + - type: Transform + pos: 23.5,-52.5 + parent: 3564 + - uid: 9572 + components: + - type: Transform + pos: 23.5,-53.5 + parent: 3564 + - uid: 9573 + components: + - type: Transform + pos: 23.5,-55.5 + parent: 3564 + - uid: 9574 + components: + - type: Transform + pos: 23.5,-56.5 + parent: 3564 + - uid: 9575 + components: + - type: Transform + pos: 23.5,-57.5 + parent: 3564 + - uid: 9576 + components: + - type: Transform + pos: 23.5,-58.5 + parent: 3564 + - uid: 9578 + components: + - type: Transform + pos: 22.5,-60.5 + parent: 3564 + - uid: 9579 + components: + - type: Transform + pos: 21.5,-60.5 + parent: 3564 + - uid: 9580 + components: + - type: Transform + pos: 20.5,-60.5 + parent: 3564 + - uid: 9581 + components: + - type: Transform + pos: 19.5,-60.5 + parent: 3564 + - uid: 9582 + components: + - type: Transform + pos: 18.5,-60.5 + parent: 3564 + - uid: 9583 + components: + - type: Transform + pos: 17.5,-60.5 + parent: 3564 + - uid: 9584 + components: + - type: Transform + pos: 16.5,-60.5 + parent: 3564 + - uid: 9585 + components: + - type: Transform + pos: 15.5,-60.5 + parent: 3564 + - uid: 9586 + components: + - type: Transform + pos: 14.5,-60.5 + parent: 3564 + - uid: 9587 + components: + - type: Transform + pos: 13.5,-60.5 + parent: 3564 + - uid: 9588 + components: + - type: Transform + pos: 12.5,-60.5 + parent: 3564 + - uid: 9589 + components: + - type: Transform + pos: 11.5,-60.5 + parent: 3564 + - uid: 9590 + components: + - type: Transform + pos: 10.5,-60.5 + parent: 3564 + - uid: 9591 + components: + - type: Transform + pos: 19.5,-59.5 + parent: 3564 + - uid: 9592 + components: + - type: Transform + pos: 23.5,-59.5 + parent: 3564 + - uid: 9593 + components: + - type: Transform + pos: 24.5,-59.5 + parent: 3564 + - uid: 9594 + components: + - type: Transform + pos: 25.5,-59.5 + parent: 3564 + - uid: 9595 + components: + - type: Transform + pos: 26.5,-59.5 + parent: 3564 + - uid: 9596 + components: + - type: Transform + pos: 27.5,-59.5 + parent: 3564 + - uid: 9597 + components: + - type: Transform + pos: 28.5,-59.5 + parent: 3564 + - uid: 9598 + components: + - type: Transform + pos: 29.5,-59.5 + parent: 3564 + - uid: 9599 + components: + - type: Transform + pos: 30.5,-59.5 + parent: 3564 + - uid: 9600 + components: + - type: Transform + pos: 31.5,-59.5 + parent: 3564 + - uid: 9601 + components: + - type: Transform + pos: 31.5,-60.5 + parent: 3564 + - uid: 9602 + components: + - type: Transform + pos: 23.5,-62.5 + parent: 3564 + - uid: 9603 + components: + - type: Transform + pos: 23.5,-63.5 + parent: 3564 + - uid: 9604 + components: + - type: Transform + pos: 23.5,-64.5 + parent: 3564 + - uid: 9605 + components: + - type: Transform + pos: 22.5,-64.5 + parent: 3564 + - uid: 9606 + components: + - type: Transform + pos: 23.5,-65.5 + parent: 3564 + - uid: 9607 + components: + - type: Transform + pos: 23.5,-67.5 + parent: 3564 + - uid: 9608 + components: + - type: Transform + pos: 22.5,-67.5 + parent: 3564 + - uid: 9609 + components: + - type: Transform + pos: 21.5,-64.5 + parent: 3564 + - uid: 9610 + components: + - type: Transform + pos: 20.5,-64.5 + parent: 3564 + - uid: 9611 + components: + - type: Transform + pos: 19.5,-64.5 + parent: 3564 + - uid: 9612 + components: + - type: Transform + pos: 18.5,-64.5 + parent: 3564 + - uid: 9613 + components: + - type: Transform + pos: 23.5,-66.5 + parent: 3564 + - uid: 9614 + components: + - type: Transform + pos: 24.5,-66.5 + parent: 3564 + - uid: 9615 + components: + - type: Transform + pos: 25.5,-66.5 + parent: 3564 + - uid: 9616 + components: + - type: Transform + pos: 26.5,-66.5 + parent: 3564 + - uid: 9617 + components: + - type: Transform + pos: 27.5,-66.5 + parent: 3564 + - uid: 9618 + components: + - type: Transform + pos: 28.5,-66.5 + parent: 3564 + - uid: 9619 + components: + - type: Transform + pos: 28.5,-67.5 + parent: 3564 + - uid: 9620 + components: + - type: Transform + pos: 28.5,-68.5 + parent: 3564 + - uid: 9621 + components: + - type: Transform + pos: 28.5,-69.5 + parent: 3564 + - uid: 9622 + components: + - type: Transform + pos: 28.5,-70.5 + parent: 3564 + - uid: 9623 + components: + - type: Transform + pos: 21.5,-67.5 + parent: 3564 + - uid: 9624 + components: + - type: Transform + pos: 20.5,-67.5 + parent: 3564 + - uid: 9625 + components: + - type: Transform + pos: 19.5,-67.5 + parent: 3564 + - uid: 9626 + components: + - type: Transform + pos: 18.5,-67.5 + parent: 3564 + - uid: 9627 + components: + - type: Transform + pos: 17.5,-67.5 + parent: 3564 + - uid: 9628 + components: + - type: Transform + pos: 16.5,-67.5 + parent: 3564 + - uid: 9629 + components: + - type: Transform + pos: 15.5,-67.5 + parent: 3564 + - uid: 9630 + components: + - type: Transform + pos: 15.5,-68.5 + parent: 3564 + - uid: 9652 + components: + - type: Transform + pos: 9.5,-41.5 + parent: 3564 + - uid: 9653 + components: + - type: Transform + pos: 8.5,-41.5 + parent: 3564 + - uid: 9654 + components: + - type: Transform + pos: 8.5,-42.5 + parent: 3564 + - uid: 9655 + components: + - type: Transform + pos: 8.5,-43.5 + parent: 3564 + - uid: 9656 + components: + - type: Transform + pos: 8.5,-44.5 + parent: 3564 + - uid: 9657 + components: + - type: Transform + pos: 8.5,-45.5 + parent: 3564 + - uid: 9658 + components: + - type: Transform + pos: 8.5,-46.5 + parent: 3564 + - uid: 9688 + components: + - type: Transform + pos: 23.5,-34.5 + parent: 3564 + - uid: 9689 + components: + - type: Transform + pos: 23.5,-33.5 + parent: 3564 + - uid: 9690 + components: + - type: Transform + pos: 23.5,-61.5 + parent: 3564 + - uid: 9691 + components: + - type: Transform + pos: 23.5,-60.5 + parent: 3564 + - uid: 11345 + components: + - type: Transform + pos: 22.5,-12.5 + parent: 2 + - uid: 11370 + components: + - type: Transform + pos: 32.5,27.5 + parent: 2 + - uid: 11371 + components: + - type: Transform + pos: 32.5,26.5 + parent: 2 + - uid: 11372 + components: + - type: Transform + pos: 32.5,25.5 + parent: 2 + - uid: 11373 + components: + - type: Transform + pos: 32.5,24.5 + parent: 2 + - uid: 11374 + components: + - type: Transform + pos: 31.5,24.5 + parent: 2 - proto: CableMVStack10 entities: - uid: 4505 @@ -13396,16 +18877,21 @@ entities: - type: Transform pos: 2.434794,-7.4942417 parent: 2 - - uid: 7711 - components: - - type: Transform - pos: 48.5,21.5 - parent: 2 - uid: 7712 components: - type: Transform pos: 49.5,21.5 parent: 2 + - uid: 11139 + components: + - type: Transform + pos: 50.5,21.5 + parent: 2 + - uid: 11150 + components: + - type: Transform + pos: 50.5,19.5 + parent: 2 - proto: CableTerminal entities: - uid: 521 @@ -13413,42 +18899,54 @@ entities: - type: Transform pos: 0.5,-12.5 parent: 2 + - uid: 661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,38.5 + parent: 2 + - uid: 676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,39.5 + parent: 2 - uid: 1435 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,62.5 parent: 2 - - uid: 1651 + - uid: 1512 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,26.5 + pos: 18.5,37.5 parent: 2 - - uid: 1652 + - uid: 1603 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,27.5 + pos: 46.5,39.5 parent: 2 - - uid: 1653 + - uid: 2551 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,28.5 + pos: 46.5,40.5 parent: 2 - - uid: 1654 + - uid: 9438 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,29.5 - parent: 2 - - uid: 7650 + rot: -1.5707963267948966 rad + pos: 8.5,-43.5 + parent: 3564 + - uid: 9449 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,30.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 8.5,-44.5 + parent: 3564 - proto: CaptainIDCard entities: - uid: 2373 @@ -13458,24 +18956,37 @@ entities: parent: 2 - proto: CaptainSabre entities: - - uid: 2407 + - uid: 7174 components: - type: Transform - pos: 59.452477,23.170856 + pos: 59.5,23.5 parent: 2 - proto: CarbonDioxideCanister entities: - - uid: 6610 + - uid: 138 components: - type: Transform - pos: 21.5,42.5 + pos: 31.5,37.5 parent: 2 -- proto: CargoMailTeleporter - entities: - - uid: 7829 + - uid: 1497 components: - type: Transform - pos: 15.5,20.5 + pos: 32.5,37.5 + parent: 2 + - uid: 1615 + components: + - type: Transform + pos: 14.5,39.5 + parent: 2 + - uid: 1634 + components: + - type: Transform + pos: 19.5,33.5 + parent: 2 + - uid: 1919 + components: + - type: Transform + pos: 43.5,-7.5 parent: 2 - proto: Carpet entities: @@ -13923,11 +19434,16 @@ entities: parent: 2 - proto: Catwalk entities: - - uid: 3964 + - uid: 847 components: - type: Transform pos: 52.5,60.5 parent: 2 + - uid: 2796 + components: + - type: Transform + pos: 53.5,60.5 + parent: 2 - uid: 4573 components: - type: Transform @@ -14283,6 +19799,481 @@ entities: - type: Transform pos: 17.5,60.5 parent: 2 + - uid: 6856 + components: + - type: Transform + pos: 3.5,-91.5 + parent: 3564 + - uid: 6857 + components: + - type: Transform + pos: 3.5,-90.5 + parent: 3564 + - uid: 6858 + components: + - type: Transform + pos: 3.5,-89.5 + parent: 3564 + - uid: 6859 + components: + - type: Transform + pos: 3.5,-88.5 + parent: 3564 + - uid: 6860 + components: + - type: Transform + pos: 3.5,-87.5 + parent: 3564 + - uid: 6861 + components: + - type: Transform + pos: 3.5,-86.5 + parent: 3564 + - uid: 6862 + components: + - type: Transform + pos: 3.5,-85.5 + parent: 3564 + - uid: 6863 + components: + - type: Transform + pos: 3.5,-84.5 + parent: 3564 + - uid: 6864 + components: + - type: Transform + pos: 3.5,-83.5 + parent: 3564 + - uid: 6865 + components: + - type: Transform + pos: 3.5,-82.5 + parent: 3564 + - uid: 6866 + components: + - type: Transform + pos: 3.5,-81.5 + parent: 3564 + - uid: 6867 + components: + - type: Transform + pos: 3.5,-79.5 + parent: 3564 + - uid: 6868 + components: + - type: Transform + pos: 3.5,-80.5 + parent: 3564 + - uid: 6869 + components: + - type: Transform + pos: 3.5,-78.5 + parent: 3564 + - uid: 6870 + components: + - type: Transform + pos: 3.5,-77.5 + parent: 3564 + - uid: 6871 + components: + - type: Transform + pos: 3.5,-76.5 + parent: 3564 + - uid: 6872 + components: + - type: Transform + pos: 3.5,-75.5 + parent: 3564 + - uid: 6873 + components: + - type: Transform + pos: 3.5,-74.5 + parent: 3564 + - uid: 6874 + components: + - type: Transform + pos: 3.5,-73.5 + parent: 3564 + - uid: 6875 + components: + - type: Transform + pos: 3.5,-72.5 + parent: 3564 + - uid: 6876 + components: + - type: Transform + pos: 3.5,-71.5 + parent: 3564 + - uid: 6877 + components: + - type: Transform + pos: 3.5,-70.5 + parent: 3564 + - uid: 6878 + components: + - type: Transform + pos: 3.5,-69.5 + parent: 3564 + - uid: 6879 + components: + - type: Transform + pos: 3.5,-68.5 + parent: 3564 + - uid: 6880 + components: + - type: Transform + pos: 3.5,-67.5 + parent: 3564 + - uid: 6881 + components: + - type: Transform + pos: 3.5,-66.5 + parent: 3564 + - uid: 6882 + components: + - type: Transform + pos: 3.5,-65.5 + parent: 3564 + - uid: 6883 + components: + - type: Transform + pos: 3.5,-64.5 + parent: 3564 + - uid: 6884 + components: + - type: Transform + pos: 3.5,-63.5 + parent: 3564 + - uid: 6885 + components: + - type: Transform + pos: 3.5,-62.5 + parent: 3564 + - uid: 6886 + components: + - type: Transform + pos: 3.5,-61.5 + parent: 3564 + - uid: 6887 + components: + - type: Transform + pos: 3.5,-60.5 + parent: 3564 + - uid: 6888 + components: + - type: Transform + pos: 3.5,-59.5 + parent: 3564 + - uid: 6889 + components: + - type: Transform + pos: 3.5,-58.5 + parent: 3564 + - uid: 6890 + components: + - type: Transform + pos: 3.5,-57.5 + parent: 3564 + - uid: 6891 + components: + - type: Transform + pos: 3.5,-56.5 + parent: 3564 + - uid: 6892 + components: + - type: Transform + pos: 3.5,-55.5 + parent: 3564 + - uid: 6893 + components: + - type: Transform + pos: 3.5,-54.5 + parent: 3564 + - uid: 6894 + components: + - type: Transform + pos: 3.5,-53.5 + parent: 3564 + - uid: 6895 + components: + - type: Transform + pos: 3.5,-52.5 + parent: 3564 + - uid: 6896 + components: + - type: Transform + pos: 3.5,-51.5 + parent: 3564 + - uid: 6897 + components: + - type: Transform + pos: 3.5,-50.5 + parent: 3564 + - uid: 6898 + components: + - type: Transform + pos: 3.5,-49.5 + parent: 3564 + - uid: 6899 + components: + - type: Transform + pos: 3.5,-48.5 + parent: 3564 + - uid: 6900 + components: + - type: Transform + pos: 3.5,-47.5 + parent: 3564 + - uid: 6901 + components: + - type: Transform + pos: 3.5,-46.5 + parent: 3564 + - uid: 6902 + components: + - type: Transform + pos: 3.5,-45.5 + parent: 3564 + - uid: 6903 + components: + - type: Transform + pos: 3.5,-44.5 + parent: 3564 + - uid: 6904 + components: + - type: Transform + pos: 3.5,-43.5 + parent: 3564 + - uid: 6905 + components: + - type: Transform + pos: 3.5,-42.5 + parent: 3564 + - uid: 6906 + components: + - type: Transform + pos: 3.5,-41.5 + parent: 3564 + - uid: 6907 + components: + - type: Transform + pos: 3.5,-40.5 + parent: 3564 + - uid: 6908 + components: + - type: Transform + pos: 3.5,-39.5 + parent: 3564 + - uid: 6909 + components: + - type: Transform + pos: 3.5,-38.5 + parent: 3564 + - uid: 6910 + components: + - type: Transform + pos: 3.5,-37.5 + parent: 3564 + - uid: 6911 + components: + - type: Transform + pos: 3.5,-36.5 + parent: 3564 + - uid: 6912 + components: + - type: Transform + pos: 3.5,-35.5 + parent: 3564 + - uid: 6913 + components: + - type: Transform + pos: 3.5,-34.5 + parent: 3564 + - uid: 6914 + components: + - type: Transform + pos: 3.5,-33.5 + parent: 3564 + - uid: 6915 + components: + - type: Transform + pos: 3.5,-32.5 + parent: 3564 + - uid: 6916 + components: + - type: Transform + pos: 3.5,-31.5 + parent: 3564 + - uid: 6917 + components: + - type: Transform + pos: 3.5,-30.5 + parent: 3564 + - uid: 6918 + components: + - type: Transform + pos: 3.5,-29.5 + parent: 3564 + - uid: 6919 + components: + - type: Transform + pos: 3.5,-28.5 + parent: 3564 + - uid: 6920 + components: + - type: Transform + pos: 3.5,-27.5 + parent: 3564 + - uid: 6922 + components: + - type: Transform + pos: 3.5,-26.5 + parent: 3564 + - uid: 6923 + components: + - type: Transform + pos: 3.5,-25.5 + parent: 3564 + - uid: 6924 + components: + - type: Transform + pos: 3.5,-24.5 + parent: 3564 + - uid: 6925 + components: + - type: Transform + pos: 3.5,-23.5 + parent: 3564 + - uid: 6927 + components: + - type: Transform + pos: 3.5,-22.5 + parent: 3564 + - uid: 6928 + components: + - type: Transform + pos: 3.5,-21.5 + parent: 3564 + - uid: 6929 + components: + - type: Transform + pos: 3.5,-20.5 + parent: 3564 + - uid: 6930 + components: + - type: Transform + pos: 3.5,-19.5 + parent: 3564 + - uid: 6931 + components: + - type: Transform + pos: 3.5,-18.5 + parent: 3564 + - uid: 6932 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 3564 + - uid: 6933 + components: + - type: Transform + pos: 3.5,-16.5 + parent: 3564 + - uid: 6934 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 3564 + - uid: 6935 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 3564 + - uid: 6936 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 3564 + - uid: 6937 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 3564 + - uid: 6938 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 3564 + - uid: 6939 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 3564 + - uid: 6942 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 3564 + - uid: 6943 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 3564 + - uid: 6944 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 3564 + - uid: 6945 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 3564 + - uid: 6946 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 3564 + - uid: 6947 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 3564 + - uid: 6948 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 3564 + - uid: 6949 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 3564 + - uid: 6950 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 3564 + - uid: 6951 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 3564 + - uid: 7150 + components: + - type: Transform + pos: 4.5,-41.5 + parent: 3564 + - uid: 7151 + components: + - type: Transform + pos: 5.5,-41.5 + parent: 3564 + - uid: 7267 + components: + - type: Transform + pos: 54.5,60.5 + parent: 2 - proto: Chair entities: - uid: 446 @@ -14297,18 +20288,6 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,13.5 parent: 2 - - uid: 490 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,21.5 - parent: 2 - - uid: 579 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,20.5 - parent: 2 - uid: 618 components: - type: Transform @@ -14320,18 +20299,6 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,12.5 parent: 2 - - uid: 1291 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,22.5 - parent: 2 - - uid: 1352 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-8.5 - parent: 2 - uid: 1513 components: - type: Transform @@ -14390,12 +20357,6 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,-0.5 parent: 2 - - uid: 1770 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,20.5 - parent: 2 - uid: 2016 components: - type: Transform @@ -14461,38 +20422,11 @@ entities: - type: Transform pos: 57.5,18.5 parent: 2 - - uid: 3816 - components: - - type: Transform - pos: 31.5,-5.5 - parent: 2 - - uid: 4852 - components: - - type: Transform - pos: 58.5,39.5 - parent: 2 - - uid: 5863 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-17.5 - parent: 2 - - uid: 7001 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-17.5 - parent: 2 - - uid: 7114 + - uid: 2898 components: - type: Transform rot: 3.141592653589793 rad - pos: 41.5,12.5 - parent: 2 - - uid: 7119 - components: - - type: Transform - pos: 42.5,13.5 + pos: 34.5,11.5 parent: 2 - uid: 7424 components: @@ -14506,35 +20440,162 @@ entities: rot: 3.141592653589793 rad pos: 33.5,15.5 parent: 2 -- proto: ChairOfficeDark - entities: - - uid: 7638 + - uid: 9705 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,32.5 - parent: 2 -- proto: ChairOfficeLight + pos: 30.5,-64.5 + parent: 3564 + - uid: 10327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-32.5 + parent: 3564 + - uid: 10328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-33.5 + parent: 3564 + - uid: 10407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-65.5 + parent: 3564 + - uid: 10408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-66.5 + parent: 3564 + - uid: 10590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-27.5 + parent: 3564 + - uid: 10591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-28.5 + parent: 3564 + - uid: 10592 + components: + - type: Transform + pos: 16.5,-26.5 + parent: 3564 + - uid: 10593 + components: + - type: Transform + pos: 17.5,-26.5 + parent: 3564 + - uid: 10594 + components: + - type: Transform + pos: 16.5,-21.5 + parent: 3564 + - uid: 10595 + components: + - type: Transform + pos: 17.5,-21.5 + parent: 3564 + - uid: 10596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-22.5 + parent: 3564 + - uid: 10597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-23.5 + parent: 3564 + - uid: 10598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-27.5 + parent: 3564 + - uid: 10599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-28.5 + parent: 3564 + - uid: 10600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-29.5 + parent: 3564 + - uid: 10601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-29.5 + parent: 3564 + - uid: 10602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-24.5 + parent: 3564 + - uid: 10603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-24.5 + parent: 3564 + - uid: 10604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-23.5 + parent: 3564 + - uid: 10605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-22.5 + parent: 3564 + - uid: 10789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-17.5 + parent: 3564 + - uid: 10790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-17.5 + parent: 3564 + - uid: 10791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-19.5 + parent: 3564 +- proto: ChairOfficeDark entities: - - uid: 533 - components: - - type: Transform - pos: 23.68446,16.648922 - parent: 2 - - uid: 1488 + - uid: 10404 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.49812,32.51353 - parent: 2 - - uid: 1546 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.46026,13.520181 - parent: 2 + pos: 33.5,-65.5 + parent: 3564 - proto: ChairWood entities: + - uid: 122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,14.5 + parent: 2 - uid: 267 components: - type: Transform @@ -14649,6 +20710,24 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,15.5 parent: 2 + - uid: 11350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,10.5 + parent: 2 +- proto: CheckerBoard + entities: + - uid: 10309 + components: + - type: Transform + pos: 16.5,-38.5 + parent: 3564 + - uid: 10313 + components: + - type: Transform + pos: 29.5,-46.5 + parent: 3564 - proto: ChemDispenser entities: - uid: 506 @@ -14675,6 +20754,26 @@ entities: - type: Transform pos: 32.5,16.5 parent: 2 + - uid: 10616 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 3564 + - uid: 10617 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 3564 + - uid: 10618 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 3564 + - uid: 10705 + components: + - type: Transform + pos: 37.5,-26.5 + parent: 3564 - proto: ChemistryBottleEthanol entities: - uid: 7321 @@ -14706,18 +20805,23 @@ entities: - type: Transform pos: 32.5,16.5 parent: 2 + - uid: 10706 + components: + - type: Transform + pos: 37.5,-26.5 + parent: 3564 - proto: ChemistryBottleOmnizine entities: + - uid: 1345 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 2 - uid: 2369 components: - type: Transform pos: 63.5,29.5 parent: 2 - - uid: 7122 - components: - - type: Transform - pos: 33.5,-5.5 - parent: 2 - proto: ChemistryBottlePotassium entities: - uid: 7447 @@ -14727,10 +20831,10 @@ entities: parent: 2 - proto: ChemistryHotplate entities: - - uid: 536 + - uid: 68 components: - type: Transform - pos: 29.5,8.5 + pos: 33.5,10.5 parent: 2 - proto: ChemMaster entities: @@ -14746,51 +20850,82 @@ entities: - type: Transform pos: 42.49843,1.5826881 parent: 2 - - uid: 7002 + - uid: 10307 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.47725,-17.435534 - parent: 2 - - uid: 7116 + pos: 16.5,-54.5 + parent: 3564 + - uid: 10310 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.454033,13.503255 - parent: 2 -- proto: ChurchOrganInstrument + pos: 29.5,-34.5 + parent: 3564 + - uid: 11366 + components: + - type: Transform + pos: 17.5,-28.5 + parent: 3564 +- proto: CigarSpent entities: - - uid: 318 + - uid: 7808 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,9.5 + pos: 9.4519615,33.86504 parent: 2 - proto: CircuitImprinter entities: - - uid: 1964 + - uid: 6175 components: - type: Transform - pos: 54.5,21.5 - parent: 2 - - uid: 2391 - components: - - type: Transform - pos: 48.5,6.5 - parent: 2 -- proto: ClosetChefFilled - entities: - - uid: 2788 - components: - - type: Transform - pos: 25.5,-9.5 + pos: 53.5,7.5 parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - proto: ClosetEmergencyFilledRandom entities: + - uid: 1020 + components: + - type: Transform + pos: 25.5,37.5 + parent: 2 + - uid: 1299 + components: + - type: Transform + pos: 25.5,36.5 + parent: 2 + - uid: 1550 + components: + - type: Transform + pos: 57.5,20.5 + parent: 2 + - uid: 2053 + components: + - type: Transform + pos: 59.5,20.5 + parent: 2 + - uid: 2506 + components: + - type: Transform + pos: 61.5,10.5 + parent: 2 + - uid: 2977 + components: + - type: Transform + pos: 46.5,-17.5 + parent: 2 + - uid: 3273 + components: + - type: Transform + pos: 62.5,10.5 + parent: 2 - uid: 4739 components: - type: Transform - pos: 44.5,-17.5 + pos: 45.5,-17.5 parent: 2 - uid: 7018 components: @@ -14807,6 +20942,38 @@ entities: - type: Transform pos: 20.5,-10.5 parent: 2 + - uid: 8352 + components: + - type: Transform + pos: 34.5,26.5 + parent: 2 + - uid: 8353 + components: + - type: Transform + pos: 34.5,27.5 + parent: 2 + - uid: 11514 + components: + - type: Transform + pos: 13.5,34.5 + parent: 2 +- proto: ClosetEmergencyN2 + entities: + - uid: 1946 + components: + - type: Transform + pos: 56.5,20.5 + parent: 2 + - uid: 2050 + components: + - type: Transform + pos: 60.5,10.5 + parent: 2 + - uid: 7179 + components: + - type: Transform + pos: 58.5,20.5 + parent: 2 - proto: ClosetEmergencyN2FilledRandom entities: - uid: 695 @@ -14814,40 +20981,114 @@ entities: - type: Transform pos: 20.5,7.5 parent: 2 + - uid: 1001 + components: + - type: Transform + pos: 25.5,38.5 + parent: 2 + - uid: 2980 + components: + - type: Transform + pos: 47.5,-17.5 + parent: 2 + - uid: 7340 + components: + - type: Transform + pos: 18.5,-8.5 + parent: 2 + - uid: 8354 + components: + - type: Transform + pos: 34.5,28.5 + parent: 2 - proto: ClosetFireFilled entities: - - uid: 1900 + - uid: 4006 components: - type: Transform - pos: 29.5,33.5 - parent: 2 - - uid: 2228 - components: - - type: Transform - pos: 49.5,-1.5 - parent: 2 - - uid: 2630 - components: - - type: Transform - pos: 5.5,-10.5 + pos: 42.5,-9.5 parent: 2 - uid: 7019 components: - type: Transform pos: 62.5,21.5 parent: 2 -- proto: ClosetMaintenanceFilledRandom +- proto: ClosetL3Filled entities: - - uid: 2258 + - uid: 3155 components: - type: Transform - pos: 38.5,-9.5 + pos: 48.5,9.5 + parent: 2 + - uid: 4202 + components: + - type: Transform + pos: 23.5,16.5 + parent: 2 +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 5975 + components: + - type: Transform + pos: 16.5,20.5 parent: 2 - uid: 7664 components: - type: Transform pos: 19.5,-10.5 parent: 2 +- proto: ClosetSteelBase + entities: + - uid: 9910 + components: + - type: Transform + pos: 18.5,-52.5 + parent: 3564 + - uid: 10252 + components: + - type: Transform + pos: 18.5,-48.5 + parent: 3564 + - uid: 10253 + components: + - type: Transform + pos: 18.5,-44.5 + parent: 3564 + - uid: 10254 + components: + - type: Transform + pos: 18.5,-36.5 + parent: 3564 + - uid: 10255 + components: + - type: Transform + pos: 27.5,-32.5 + parent: 3564 + - uid: 10256 + components: + - type: Transform + pos: 27.5,-36.5 + parent: 3564 + - uid: 10257 + components: + - type: Transform + pos: 27.5,-40.5 + parent: 3564 + - uid: 10258 + components: + - type: Transform + pos: 27.5,-44.5 + parent: 3564 + - uid: 10259 + components: + - type: Transform + pos: 27.5,-48.5 + parent: 3564 + - uid: 10260 + components: + - type: Transform + pos: 27.5,-52.5 + parent: 3564 - proto: ClosetWallEmergencyFilledRandom entities: - uid: 7186 @@ -14874,11 +21115,48 @@ entities: - type: Transform pos: 44.5,19.5 parent: 2 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + It provides the following protection: + + - [color=orange]Explosion[/color] damage [color=white]to contents[/color] reduced by [color=lightblue]10%[/color]. + priority: 0 + component: Armor + title: null - uid: 7720 components: - type: Transform pos: 46.5,19.5 parent: 2 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + It provides the following protection: + + - [color=orange]Explosion[/color] damage [color=white]to contents[/color] reduced by [color=lightblue]10%[/color]. + priority: 0 + component: Armor + title: null + - uid: 11155 + components: + - type: Transform + pos: 44.5,19.5 + parent: 2 - proto: ClothingBackpackSatchelClown entities: - uid: 7231 @@ -14888,36 +21166,76 @@ entities: parent: 2 - proto: ClothingEyesBlindfold entities: - - uid: 2068 + - uid: 960 components: - type: Transform - pos: 33.5,-5.5 + pos: 34.5,-2.5 parent: 2 - - uid: 7123 + - uid: 972 components: - type: Transform - pos: 33.5,-6.5 + pos: 34.5,-2.5 parent: 2 - - uid: 7128 + - uid: 986 components: - type: Transform - pos: 33.5,-6.5 + pos: 35.5,-2.5 parent: 2 - - uid: 7224 + - uid: 992 components: - type: Transform - pos: 33.5,-5.5 + pos: 35.5,-2.5 parent: 2 - - uid: 7260 + - uid: 1002 components: - type: Transform - pos: 33.5,-4.5 + pos: 33.5,-2.5 parent: 2 - - uid: 7261 + - uid: 1009 components: - type: Transform - pos: 33.5,-4.5 + pos: 33.5,-2.5 parent: 2 + - uid: 10681 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 3564 + - uid: 10682 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 3564 + - uid: 10683 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 3564 + - uid: 10684 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 3564 + - uid: 10685 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - uid: 10686 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - uid: 10687 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 3564 + - uid: 10688 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 3564 - proto: ClothingEyesGlasses entities: - uid: 7687 @@ -14927,11 +21245,86 @@ entities: parent: 2 - proto: ClothingEyesGlassesCheapSunglasses entities: + - uid: 868 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 4491 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 2 + - uid: 4492 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 4495 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - uid: 4496 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 + - uid: 4497 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 - uid: 7201 components: - type: Transform pos: 59.5,31.5 parent: 2 + - uid: 8373 + components: + - type: Transform + pos: 30.5,33.5 + parent: 2 + - uid: 8374 + components: + - type: Transform + pos: 29.5,33.5 + parent: 2 + - uid: 8389 + components: + - type: Transform + pos: 28.5,33.5 + parent: 2 + - uid: 8390 + components: + - type: Transform + pos: 27.5,33.5 + parent: 2 + - uid: 11162 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 11165 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 11178 + components: + - type: Transform + pos: 46.5,29.5 + parent: 2 + - uid: 11185 + components: + - type: Transform + pos: 47.5,29.5 + parent: 2 + - uid: 11343 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 2 - proto: ClothingEyesGlassesThermal entities: - uid: 2431 @@ -14939,8 +21332,68 @@ entities: - type: Transform pos: 35.5,2.5 parent: 2 + - uid: 4498 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 4499 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 + - uid: 4500 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 + - uid: 11163 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 11164 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 11170 + components: + - type: Transform + pos: 44.5,29.5 + parent: 2 + - uid: 11172 + components: + - type: Transform + pos: 45.5,29.5 + parent: 2 - proto: ClothingHandsGlovesColorBlack entities: + - uid: 4506 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 2 + - uid: 4576 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 4577 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - uid: 4823 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 + - uid: 4826 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 - uid: 7550 components: - type: Transform @@ -14951,17 +21404,127 @@ entities: - type: Transform pos: 46.5,19.5 parent: 2 -- proto: ClothingHandsGlovesColorYellowBudget - entities: - - uid: 2288 + - uid: 8387 components: - type: Transform - pos: 46.5,19.5 + pos: 28.5,33.5 parent: 2 - - uid: 6053 + - uid: 8388 components: - type: Transform - pos: 46.5,19.5 + pos: 27.5,33.5 + parent: 2 + - uid: 8620 + components: + - type: Transform + pos: 51.5,41.5 + parent: 2 + - uid: 8621 + components: + - type: Transform + pos: 52.5,41.5 + parent: 2 + - uid: 8622 + components: + - type: Transform + pos: 53.5,41.5 + parent: 2 + - uid: 8623 + components: + - type: Transform + pos: 54.5,41.5 + parent: 2 + - uid: 10473 + components: + - type: Transform + pos: 25.5,-69.5 + parent: 3564 + - uid: 10474 + components: + - type: Transform + pos: 24.5,-69.5 + parent: 3564 + - uid: 10475 + components: + - type: Transform + pos: 21.5,-69.5 + parent: 3564 + - uid: 10476 + components: + - type: Transform + pos: 20.5,-69.5 + parent: 3564 + - uid: 10477 + components: + - type: Transform + pos: 19.5,-69.5 + parent: 3564 + - uid: 11157 + components: + - type: Transform + pos: 44.5,19.5 + parent: 2 + - uid: 11176 + components: + - type: Transform + pos: 46.5,29.5 + parent: 2 + - uid: 11177 + components: + - type: Transform + pos: 46.5,29.5 + parent: 2 + - uid: 11182 + components: + - type: Transform + pos: 46.5,29.5 + parent: 2 + - uid: 11183 + components: + - type: Transform + pos: 47.5,29.5 + parent: 2 + - uid: 11184 + components: + - type: Transform + pos: 47.5,29.5 + parent: 2 + - uid: 11342 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 2 + - uid: 11504 + components: + - type: Transform + pos: 11.5,35.5 + parent: 2 +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 1379 + components: + - type: Transform + pos: 33.5,-8.5 + parent: 2 + - uid: 3394 + components: + - type: Transform + pos: 37.5,-12.5 + parent: 2 + - uid: 3397 + components: + - type: Transform + pos: 37.5,-12.5 + parent: 2 + - uid: 10535 + components: + - type: Transform + pos: 34.5,-26.5 + parent: 3564 + - uid: 11511 + components: + - type: Transform + pos: 11.5,34.5 parent: 2 - proto: ClothingHandsGlovesLatex entities: @@ -14977,12 +21540,160 @@ entities: - type: Transform pos: 38.5,-1.5 parent: 2 -- proto: ClothingMaskBreath - entities: - - uid: 7466 + - uid: 11166 components: - type: Transform - pos: 50.5,39.5 + pos: 52.5,20.5 + parent: 2 + - uid: 11167 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 11179 + components: + - type: Transform + pos: 46.5,29.5 + parent: 2 + - uid: 11187 + components: + - type: Transform + pos: 47.5,29.5 + parent: 2 +- proto: ClothingHeadHelmetBasic + entities: + - uid: 10415 + components: + - type: Transform + pos: 34.5,-69.5 + parent: 3564 +- proto: ClothingHeadHelmetEVALarge + entities: + - uid: 4490 + components: + - type: Transform + pos: 11.5,35.5 + parent: 2 + - uid: 8612 + components: + - type: Transform + pos: 51.5,41.5 + parent: 2 + - uid: 8613 + components: + - type: Transform + pos: 52.5,41.5 + parent: 2 + - uid: 8614 + components: + - type: Transform + pos: 53.5,41.5 + parent: 2 + - uid: 8615 + components: + - type: Transform + pos: 54.5,41.5 + parent: 2 + - uid: 10478 + components: + - type: Transform + pos: 25.5,-69.5 + parent: 3564 + - uid: 10479 + components: + - type: Transform + pos: 24.5,-69.5 + parent: 3564 + - uid: 10480 + components: + - type: Transform + pos: 21.5,-69.5 + parent: 3564 + - uid: 10481 + components: + - type: Transform + pos: 20.5,-69.5 + parent: 3564 + - uid: 10482 + components: + - type: Transform + pos: 19.5,-69.5 + parent: 3564 +- proto: ClothingHeadsetEngineering + entities: + - uid: 8383 + components: + - type: Transform + pos: 28.5,33.5 + parent: 2 + - uid: 8384 + components: + - type: Transform + pos: 27.5,33.5 + parent: 2 +- proto: ClothingHeadsetGrey + entities: + - uid: 132 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 + - uid: 6157 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 2 + - uid: 6191 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - uid: 6192 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 7341 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 2 + - uid: 7370 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 + - uid: 8573 + components: + - type: Transform + pos: 9.5,2.5 + parent: 2 + - uid: 8574 + components: + - type: Transform + pos: 13.5,2.5 + parent: 2 +- proto: ClothingMaskBreathMedical + entities: + - uid: 705 + components: + - type: Transform + pos: 49.5,39.5 + parent: 2 + - uid: 718 + components: + - type: Transform + pos: 49.5,39.5 + parent: 2 + - uid: 741 + components: + - type: Transform + pos: 49.5,39.5 + parent: 2 + - uid: 2528 + components: + - type: Transform + pos: 49.5,39.5 parent: 2 - proto: ClothingMaskClown entities: @@ -14993,6 +21704,11 @@ entities: parent: 2 - proto: ClothingMaskGas entities: + - uid: 7343 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 2 - uid: 7547 components: - type: Transform @@ -15013,19 +21729,109 @@ entities: - type: Transform pos: 18.5,-12.5 parent: 2 -- proto: ClothingMaskGoldenCursed - entities: - - uid: 7736 + - uid: 8381 components: - type: Transform - pos: 61.5,4.5 + pos: 28.5,33.5 + parent: 2 + - uid: 8382 + components: + - type: Transform + pos: 27.5,33.5 + parent: 2 + - uid: 8616 + components: + - type: Transform + pos: 51.5,41.5 + parent: 2 + - uid: 8617 + components: + - type: Transform + pos: 52.5,41.5 + parent: 2 + - uid: 8618 + components: + - type: Transform + pos: 53.5,41.5 + parent: 2 + - uid: 8619 + components: + - type: Transform + pos: 54.5,41.5 + parent: 2 + - uid: 10493 + components: + - type: Transform + pos: 25.5,-69.5 + parent: 3564 + - uid: 10494 + components: + - type: Transform + pos: 24.5,-69.5 + parent: 3564 + - uid: 10495 + components: + - type: Transform + pos: 21.5,-69.5 + parent: 3564 + - uid: 10496 + components: + - type: Transform + pos: 20.5,-69.5 + parent: 3564 + - uid: 10497 + components: + - type: Transform + pos: 19.5,-69.5 + parent: 3564 + - uid: 11503 + components: + - type: Transform + pos: 11.5,35.5 + parent: 2 +- proto: ClothingMaskGasAtmos + entities: + - uid: 1389 + components: + - type: Transform + pos: 33.5,-7.5 + parent: 2 + - uid: 1390 + components: + - type: Transform + pos: 33.5,-7.5 parent: 2 - proto: ClothingMaskMuzzle entities: - - uid: 2179 + - uid: 798 components: - type: Transform - pos: 33.5,-5.5 + pos: 34.5,-2.5 + parent: 2 + - uid: 1502 + components: + - type: Transform + pos: 35.5,-2.5 + parent: 2 + - uid: 1503 + components: + - type: Transform + pos: 35.5,-2.5 + parent: 2 + - uid: 1516 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 2 + - uid: 1517 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 2 + - uid: 1518 + components: + - type: Transform + pos: 33.5,-2.5 parent: 2 - uid: 6829 components: @@ -15047,36 +21853,11 @@ entities: - type: Transform pos: 34.5,-1.5 parent: 2 - - uid: 7185 - components: - - type: Transform - pos: 33.5,-5.5 - parent: 2 - - uid: 7214 - components: - - type: Transform - pos: 33.5,-6.5 - parent: 2 - - uid: 7215 - components: - - type: Transform - pos: 33.5,-6.5 - parent: 2 - uid: 7250 components: - type: Transform pos: 34.5,-1.5 parent: 2 - - uid: 7256 - components: - - type: Transform - pos: 33.5,-4.5 - parent: 2 - - uid: 7257 - components: - - type: Transform - pos: 33.5,-4.5 - parent: 2 - uid: 7428 components: - type: Transform @@ -15097,6 +21878,126 @@ entities: - type: Transform pos: 48.5,19.5 parent: 2 + - uid: 10657 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 3564 + - uid: 10658 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 3564 + - uid: 10659 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 3564 + - uid: 10660 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 3564 + - uid: 10661 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 3564 + - uid: 10662 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 3564 + - uid: 10663 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 3564 + - uid: 10664 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 3564 + - uid: 10665 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 3564 + - uid: 10666 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 3564 + - uid: 10667 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 3564 + - uid: 10668 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 3564 + - uid: 10669 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - uid: 10670 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - uid: 10671 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - uid: 10672 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - uid: 10673 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - uid: 10674 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - uid: 10675 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 3564 + - uid: 10676 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 3564 + - uid: 10677 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 3564 + - uid: 10678 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 3564 + - uid: 10679 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 3564 + - uid: 10680 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 3564 - proto: ClothingMaskSterile entities: - uid: 7301 @@ -15111,13 +22012,65 @@ entities: - type: Transform pos: 45.5,21.5 parent: 2 -- proto: ClothingNeckGoldmedal +- proto: ClothingOuterArmorBasic entities: - - uid: 7737 + - uid: 10411 components: - type: Transform - pos: 60.5,4.5 + pos: 34.5,-69.5 + parent: 3564 +- proto: ClothingOuterHardsuitEVA + entities: + - uid: 7588 + components: + - type: Transform + pos: 11.5,35.5 parent: 2 + - uid: 8608 + components: + - type: Transform + pos: 51.5,41.5 + parent: 2 + - uid: 8609 + components: + - type: Transform + pos: 52.5,41.5 + parent: 2 + - uid: 8610 + components: + - type: Transform + pos: 53.5,41.5 + parent: 2 + - uid: 8611 + components: + - type: Transform + pos: 54.5,41.5 + parent: 2 + - uid: 10488 + components: + - type: Transform + pos: 25.5,-69.5 + parent: 3564 + - uid: 10489 + components: + - type: Transform + pos: 24.5,-69.5 + parent: 3564 + - uid: 10490 + components: + - type: Transform + pos: 21.5,-69.5 + parent: 3564 + - uid: 10491 + components: + - type: Transform + pos: 20.5,-69.5 + parent: 3564 + - uid: 10492 + components: + - type: Transform + pos: 19.5,-69.5 + parent: 3564 - proto: ClothingOuterStraightjacket entities: - uid: 2433 @@ -15155,29 +22108,122 @@ entities: - type: Transform pos: 33.5,13.5 parent: 2 + - uid: 10689 + components: + - type: Transform + pos: 36.5,-30.5 + parent: 3564 + - uid: 10690 + components: + - type: Transform + pos: 36.5,-30.5 + parent: 3564 + - uid: 10691 + components: + - type: Transform + pos: 36.5,-30.5 + parent: 3564 + - uid: 10692 + components: + - type: Transform + pos: 36.5,-30.5 + parent: 3564 + - uid: 10693 + components: + - type: Transform + pos: 36.5,-30.5 + parent: 3564 + - uid: 10694 + components: + - type: Transform + pos: 36.5,-30.5 + parent: 3564 + - uid: 10695 + components: + - type: Transform + pos: 36.5,-30.5 + parent: 3564 + - uid: 10696 + components: + - type: Transform + pos: 36.5,-29.5 + parent: 3564 + - uid: 10697 + components: + - type: Transform + pos: 36.5,-29.5 + parent: 3564 + - uid: 10698 + components: + - type: Transform + pos: 36.5,-29.5 + parent: 3564 + - uid: 10699 + components: + - type: Transform + pos: 36.5,-29.5 + parent: 3564 + - uid: 10700 + components: + - type: Transform + pos: 36.5,-29.5 + parent: 3564 + - uid: 10701 + components: + - type: Transform + pos: 36.5,-29.5 + parent: 3564 + - uid: 10702 + components: + - type: Transform + pos: 36.5,-29.5 + parent: 3564 - proto: ClothingOuterSuitFire entities: + - uid: 794 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 + - uid: 2269 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - uid: 2282 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 2385 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 2 + - uid: 3361 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 2 + - uid: 4365 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 - uid: 7544 components: - type: Transform pos: 15.5,-2.5 parent: 2 -- proto: ClothingShoesBootsMag - entities: - - uid: 7194 + - uid: 8375 components: - type: Transform - pos: 49.5,39.3 + pos: 28.5,33.5 parent: 2 - - uid: 7247 + - uid: 8376 components: - type: Transform - pos: 49.5,39.5 - parent: 2 - - uid: 7249 - components: - - type: Transform - pos: 49.5,39.7 + pos: 27.5,33.5 parent: 2 - proto: ClothingShoesClown entities: @@ -15193,12 +22239,234 @@ entities: - type: Transform pos: 45.5,21.5 parent: 2 -- proto: ClothingShoesHighheelBootsFilled +- proto: ClothingShoesColorBlack entities: - - uid: 1388 + - uid: 5027 components: - type: Transform - pos: 62.5,8.5 + pos: 9.5,-12.5 + parent: 2 + - uid: 5028 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 5070 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - uid: 5071 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 + - uid: 5083 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 + - uid: 8385 + components: + - type: Transform + pos: 28.5,33.5 + parent: 2 + - uid: 8386 + components: + - type: Transform + pos: 27.5,33.5 + parent: 2 + - uid: 8632 + components: + - type: Transform + pos: 51.5,41.5 + parent: 2 + - uid: 8633 + components: + - type: Transform + pos: 52.5,41.5 + parent: 2 + - uid: 8634 + components: + - type: Transform + pos: 53.5,41.5 + parent: 2 + - uid: 8635 + components: + - type: Transform + pos: 54.5,41.5 + parent: 2 + - uid: 10412 + components: + - type: Transform + pos: 34.5,-69.5 + parent: 3564 + - uid: 10468 + components: + - type: Transform + pos: 25.5,-69.5 + parent: 3564 + - uid: 10469 + components: + - type: Transform + pos: 24.5,-69.5 + parent: 3564 + - uid: 10470 + components: + - type: Transform + pos: 21.5,-69.5 + parent: 3564 + - uid: 10471 + components: + - type: Transform + pos: 20.5,-69.5 + parent: 3564 + - uid: 10472 + components: + - type: Transform + pos: 19.5,-69.5 + parent: 3564 + - uid: 11341 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 2 + - uid: 11507 + components: + - type: Transform + pos: 11.5,35.5 + parent: 2 +- proto: ClothingShoesColorOrange + entities: + - uid: 1378 + components: + - type: Transform + pos: 33.5,-8.5 + parent: 2 +- proto: ClothingShoesHighheelBootsFilled + entities: + - uid: 8268 + components: + - type: Transform + pos: 59.5,23.5 + parent: 2 +- proto: ClothingUniformJumpskirtColorBlack + entities: + - uid: 1443 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 2190 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 + - uid: 2930 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 2 + - uid: 7351 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 2 + - uid: 7369 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - uid: 7371 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 + - uid: 8379 + components: + - type: Transform + pos: 28.5,33.5 + parent: 2 + - uid: 8380 + components: + - type: Transform + pos: 27.5,33.5 + parent: 2 + - uid: 8628 + components: + - type: Transform + pos: 51.5,41.5 + parent: 2 + - uid: 8629 + components: + - type: Transform + pos: 52.5,41.5 + parent: 2 + - uid: 8630 + components: + - type: Transform + pos: 53.5,41.5 + parent: 2 + - uid: 8631 + components: + - type: Transform + pos: 54.5,41.5 + parent: 2 + - uid: 10463 + components: + - type: Transform + pos: 25.5,-69.5 + parent: 3564 + - uid: 10464 + components: + - type: Transform + pos: 24.5,-69.5 + parent: 3564 + - uid: 10465 + components: + - type: Transform + pos: 21.5,-69.5 + parent: 3564 + - uid: 10466 + components: + - type: Transform + pos: 20.5,-69.5 + parent: 3564 + - uid: 10467 + components: + - type: Transform + pos: 19.5,-69.5 + parent: 3564 + - uid: 11506 + components: + - type: Transform + pos: 11.5,35.5 + parent: 2 +- proto: ClothingUniformJumpskirtColorBlue + entities: + - uid: 2624 + components: + - type: Transform + pos: 9.5,2.5 + parent: 2 + - uid: 8572 + components: + - type: Transform + pos: 13.5,2.5 + parent: 2 +- proto: ClothingUniformJumpskirtColorGrey + entities: + - uid: 10414 + components: + - type: Transform + pos: 34.5,-69.5 + parent: 3564 +- proto: ClothingUniformJumpskirtColorYellow + entities: + - uid: 3299 + components: + - type: Transform + pos: 33.5,-8.5 parent: 2 - proto: ClothingUniformJumpsuitClown entities: @@ -15207,6 +22475,124 @@ entities: - type: Transform pos: 45.5,21.5 parent: 2 +- proto: ClothingUniformJumpsuitColorBlack + entities: + - uid: 96 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - uid: 131 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 2932 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 2 + - uid: 3372 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 + - uid: 4361 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 + - uid: 7352 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 2 + - uid: 8377 + components: + - type: Transform + pos: 28.5,33.5 + parent: 2 + - uid: 8378 + components: + - type: Transform + pos: 27.5,33.5 + parent: 2 + - uid: 8624 + components: + - type: Transform + pos: 51.5,41.5 + parent: 2 + - uid: 8625 + components: + - type: Transform + pos: 52.5,41.5 + parent: 2 + - uid: 8626 + components: + - type: Transform + pos: 53.5,41.5 + parent: 2 + - uid: 8627 + components: + - type: Transform + pos: 54.5,41.5 + parent: 2 + - uid: 10458 + components: + - type: Transform + pos: 25.5,-69.5 + parent: 3564 + - uid: 10459 + components: + - type: Transform + pos: 24.5,-69.5 + parent: 3564 + - uid: 10460 + components: + - type: Transform + pos: 21.5,-69.5 + parent: 3564 + - uid: 10461 + components: + - type: Transform + pos: 20.5,-69.5 + parent: 3564 + - uid: 10462 + components: + - type: Transform + pos: 19.5,-69.5 + parent: 3564 + - uid: 11505 + components: + - type: Transform + pos: 11.5,35.5 + parent: 2 +- proto: ClothingUniformJumpsuitColorBlue + entities: + - uid: 28 + components: + - type: Transform + pos: 13.5,2.5 + parent: 2 + - uid: 29 + components: + - type: Transform + pos: 9.5,2.5 + parent: 2 +- proto: ClothingUniformJumpsuitColorGrey + entities: + - uid: 10413 + components: + - type: Transform + pos: 34.5,-69.5 + parent: 3564 +- proto: ClothingUniformJumpsuitColorYellow + entities: + - uid: 3298 + components: + - type: Transform + pos: 33.5,-8.5 + parent: 2 - proto: ClownRecorder entities: - uid: 7682 @@ -15214,13 +22600,6 @@ entities: - type: Transform pos: 45.5,21.5 parent: 2 -- proto: CluwneIDCard - entities: - - uid: 7173 - components: - - type: Transform - pos: 59.5,28.5 - parent: 2 - proto: ComfyChair entities: - uid: 2432 @@ -15291,12 +22670,18 @@ entities: - type: Transform pos: 61.5,29.5 parent: 2 -- proto: CommsComputerCircuitboard +- proto: ComputerAlert entities: - - uid: 8215 + - uid: 1459 components: - type: Transform - pos: 13.5,-11.5 + pos: 32.5,-4.5 + parent: 2 + - uid: 7753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,24.5 parent: 2 - proto: ComputerAnalysisConsole entities: @@ -15313,11 +22698,10 @@ entities: - ArtifactAnalyzerReceiver - proto: ComputerAtmosMonitoring entities: - - uid: 1960 + - uid: 1460 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,26.5 + pos: 31.5,-4.5 parent: 2 - uid: 2435 components: @@ -15325,28 +22709,6 @@ entities: rot: 3.141592653589793 rad pos: 60.5,28.5 parent: 2 -- proto: computerBodyScanner - entities: - - uid: 868 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,7.5 - parent: 2 -- proto: ComputerCargoBounty - entities: - - uid: 7632 - components: - - type: Transform - pos: 18.5,25.5 - parent: 2 -- proto: ComputerCargoOrders - entities: - - uid: 539 - components: - - type: Transform - pos: 19.5,25.5 - parent: 2 - proto: ComputerComms entities: - uid: 2428 @@ -15354,6 +22716,11 @@ entities: - type: Transform pos: 58.5,34.5 parent: 2 + - uid: 5154 + components: + - type: Transform + pos: 18.5,24.5 + parent: 2 - uid: 7255 components: - type: Transform @@ -15361,10 +22728,10 @@ entities: parent: 2 - proto: ComputerCrewMonitoring entities: - - uid: 619 + - uid: 1534 components: - type: Transform - pos: 13.5,16.5 + pos: 28.5,16.5 parent: 2 - uid: 7176 components: @@ -15380,18 +22747,11 @@ entities: rot: 3.141592653589793 rad pos: 36.5,-2.5 parent: 2 - - uid: 7179 + - uid: 2162 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,23.5 - parent: 2 -- proto: ComputerFundingAllocation - entities: - - uid: 7567 - components: - - type: Transform - pos: 44.5,29.5 + pos: 56.5,25.5 parent: 2 - proto: ComputerId entities: @@ -15400,17 +22760,17 @@ entities: - type: Transform pos: 56.5,34.5 parent: 2 - - uid: 7192 +- proto: ComputerMedicalRecords + entities: + - uid: 1010 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-2.5 + pos: 13.5,16.5 parent: 2 - - uid: 8277 + - uid: 1531 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,27.5 + pos: 26.5,16.5 parent: 2 - proto: ComputerPowerMonitoring entities: @@ -15420,60 +22780,85 @@ entities: rot: 1.5707963267948966 rad pos: 57.5,62.5 parent: 2 - - uid: 1466 - components: - - type: Transform - pos: 37.5,35.5 - parent: 2 - - uid: 2613 - components: - - type: Transform - pos: 1.5,-7.5 - parent: 2 - - uid: 7174 + - uid: 1578 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,22.5 + pos: 56.5,24.5 parent: 2 + - uid: 2187 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 2 + - uid: 4687 + components: + - type: Transform + pos: 16.5,39.5 + parent: 2 + - uid: 9434 + components: + - type: Transform + pos: 7.5,-39.5 + parent: 3564 - proto: ComputerResearchAndDevelopment entities: - - uid: 1510 + - uid: 11211 components: - type: Transform - pos: 54.5,14.5 + pos: 51.5,9.5 parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - proto: ComputerShuttleCargo entities: - - uid: 7633 + - uid: 1070 components: + - type: MetaData + desc: Used to pilot the prison shuttle. + name: prison shuttle console - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,20.5 + rot: -1.5707963267948966 rad + pos: 60.5,25.5 parent: 2 - - uid: 7634 + - uid: 2039 components: + - type: MetaData + desc: Used to pilot the prison shuttle. + name: prison shuttle console - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,21.5 + rot: 3.141592653589793 rad + pos: 37.5,-2.5 parent: 2 - proto: ComputerSolarControl entities: - - uid: 1338 - components: - - type: Transform - pos: 36.5,35.5 - parent: 2 - uid: 2495 components: - type: Transform pos: 60.5,62.5 parent: 2 - - uid: 2614 + - uid: 2696 components: - type: Transform - pos: 0.5,-7.5 + rot: -1.5707963267948966 rad + pos: 21.5,36.5 parent: 2 + - uid: 2785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-11.5 + parent: 2 + - uid: 9439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-42.5 + parent: 3564 - proto: ComputerStationRecords entities: - uid: 7175 @@ -15495,56 +22880,11 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,-5.5 parent: 2 -- proto: ConveyorBelt - entities: - - uid: 118 + - uid: 10511 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,5.5 - parent: 2 - - uid: 150 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,5.5 - parent: 2 - - uid: 165 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,5.5 - parent: 2 - - uid: 254 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,5.5 - parent: 2 - - uid: 256 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,5.5 - parent: 2 - - uid: 258 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,5.5 - parent: 2 - - uid: 259 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,5.5 - parent: 2 - - uid: 294 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,5.5 - parent: 2 + pos: 31.5,-25.5 + parent: 3564 - proto: CorporateCircuitBoard entities: - uid: 389 @@ -15618,57 +22958,61 @@ entities: - type: Transform pos: -5.5,18.5 parent: 2 -- proto: CrateFilledSpawner +- proto: CrateEngineeringAMEJar entities: - - uid: 8289 + - uid: 7801 components: - type: Transform - pos: 12.5,26.5 + pos: 42.5,40.5 parent: 2 - - uid: 8290 - components: - - type: Transform - pos: 14.5,23.5 - parent: 2 -- proto: CratePermaEscapeEVA +- proto: CrateEngineeringAMEShielding entities: - - uid: 2070 + - uid: 7800 components: - type: Transform - pos: 54.5,39.5 + pos: 42.5,41.5 parent: 2 - proto: CrateSecurityArmor entities: - - uid: 1104 + - uid: 9795 components: - type: Transform - pos: 37.5,-4.5 - parent: 2 - - uid: 1105 + pos: 33.5,-61.5 + parent: 3564 +- proto: CrateSecurityHelmet + entities: + - uid: 10451 components: - type: Transform - pos: 38.5,-4.5 - parent: 2 + pos: 36.5,-61.5 + parent: 3564 +- proto: CrateSecurityNonlethal + entities: + - uid: 10450 + components: + - type: Transform + pos: 35.5,-61.5 + parent: 3564 - proto: CrateSecuritySupplies entities: - - uid: 1327 + - uid: 10399 components: - type: Transform - pos: 40.5,-7.5 - parent: 2 -- proto: CrateServiceJanitorialSupplies + pos: 34.5,-61.5 + parent: 3564 +- proto: CrateSecurityTrackingMindshieldImplants entities: - - uid: 7657 + - uid: 10449 components: - type: Transform - pos: -2.5,7.5 - parent: 2 + pos: 32.5,-61.5 + parent: 3564 - proto: CrateTrackingImplants entities: - - uid: 7211 + - uid: 1742 components: - type: Transform - pos: 33.5,-2.5 + pos: 35.5,-1.5 parent: 2 - proto: Crematorium entities: @@ -15680,28 +23024,63 @@ entities: parent: 2 - proto: CrewMonitoringServer entities: - - uid: 6339 + - uid: 1260 components: - type: Transform - pos: 37.5,26.5 + pos: -4.5,7.5 parent: 2 - proto: Crowbar entities: + - uid: 1696 + components: + - type: Transform + pos: 35.5,-9.5 + parent: 2 + - uid: 1812 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 2 + - uid: 2283 + components: + - type: Transform + pos: 47.5,20.5 + parent: 2 + - uid: 5936 + components: + - type: Transform + pos: 14.5,29.5 + parent: 2 + - uid: 6193 + components: + - type: Transform + pos: 20.5,-8.5 + parent: 2 + - uid: 6202 + components: + - type: Transform + pos: 20.5,-7.5 + parent: 2 + - uid: 6351 + components: + - type: Transform + pos: 45.5,35.5 + parent: 2 + - uid: 6561 + components: + - type: Transform + pos: 31.5,-10.5 + parent: 2 + - uid: 6562 + components: + - type: Transform + pos: 32.5,-10.5 + parent: 2 - uid: 7206 components: - type: Transform pos: 59.5,31.5 parent: 2 - - uid: 7295 - components: - - type: Transform - pos: 33.5,-4.5 - parent: 2 - - uid: 7717 - components: - - type: Transform - pos: 47.5,19.5 - parent: 2 - uid: 7718 components: - type: Transform @@ -15712,6 +23091,51 @@ entities: - type: Transform pos: 46.5,19.5 parent: 2 + - uid: 8371 + components: + - type: Transform + pos: 30.5,33.5 + parent: 2 + - uid: 8372 + components: + - type: Transform + pos: 29.5,33.5 + parent: 2 + - uid: 8402 + components: + - type: Transform + pos: 38.5,30.5 + parent: 2 + - uid: 8408 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 8413 + components: + - type: Transform + pos: 38.5,29.5 + parent: 2 + - uid: 11134 + components: + - type: Transform + pos: 51.5,20.5 + parent: 2 + - uid: 11156 + components: + - type: Transform + pos: 44.5,19.5 + parent: 2 + - uid: 11160 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 11161 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 - proto: CryogenicSleepUnitSpawner entities: - uid: 5997 @@ -15771,18 +23195,14 @@ entities: pos: 33.5,60.5 parent: 2 - type: NavMapBeacon - text: Air Tunnel - - type: WarpPoint - location: Air Tunnel + defaultText: Air Tunnel - uid: 7740 components: - type: Transform pos: 21.5,51.5 parent: 2 - type: NavMapBeacon - text: AI Foyer - - type: WarpPoint - location: AI Foyer + defaultText: AI Foyer - proto: DefaultStationBeaconAICore entities: - uid: 7738 @@ -15797,26 +23217,19 @@ entities: - type: Transform pos: 32.5,53.5 parent: 2 +- proto: DefaultStationBeaconAME + entities: + - uid: 2588 + components: + - type: Transform + pos: 45.5,37.5 + parent: 2 - proto: DefaultStationBeaconAnchor entities: - uid: 7743 components: - type: Transform - pos: 3.5,35.5 - parent: 2 -- proto: DefaultStationBeaconAnomalyGenerator - entities: - - uid: 7744 - components: - - type: Transform - pos: 47.5,12.5 - parent: 2 -- proto: DefaultStationBeaconArmory - entities: - - uid: 7745 - components: - - type: Transform - pos: 41.5,-5.5 + pos: 1.5,32.5 parent: 2 - proto: DefaultStationBeaconArrivals entities: @@ -15825,37 +23238,12 @@ entities: - type: Transform pos: 60.5,48.5 parent: 2 -- proto: DefaultStationBeaconArtifactLab - entities: - - uid: 7747 - components: - - type: Transform - pos: 50.5,3.5 - parent: 2 - proto: DefaultStationBeaconAtmospherics entities: - - uid: 7748 + - uid: 5860 components: - type: Transform - pos: 24.5,25.5 - parent: 2 -- proto: DefaultStationBeaconBar - entities: - - uid: 7749 - components: - - type: Transform - pos: 25.5,-4.5 - parent: 2 - - type: NavMapBeacon - text: Nightclub - - type: WarpPoint - location: Nightclub -- proto: DefaultStationBeaconBotany - entities: - - uid: 7750 - components: - - type: Transform - pos: 14.5,-7.5 + pos: 28.5,-7.5 parent: 2 - proto: DefaultStationBeaconBridge entities: @@ -15864,13 +23252,8 @@ entities: - type: Transform pos: 63.5,31.5 parent: 2 -- proto: DefaultStationBeaconBrig - entities: - - uid: 7751 - components: - - type: Transform - pos: 43.5,-0.5 - parent: 2 + - type: NavMapBeacon + defaultText: Control Room - proto: DefaultStationBeaconCaptainsQuarters entities: - uid: 7752 @@ -15878,27 +23261,8 @@ entities: - type: Transform pos: 57.5,22.5 parent: 2 -- proto: DefaultStationBeaconCargoBay - entities: - - uid: 7753 - components: - - type: Transform - pos: 12.5,24.5 - parent: 2 -- proto: DefaultStationBeaconCargoReception - entities: - - uid: 7754 - components: - - type: Transform - pos: 18.5,20.5 - parent: 2 -- proto: DefaultStationBeaconCERoom - entities: - - uid: 7755 - components: - - type: Transform - pos: 44.5,32.5 - parent: 2 + - type: NavMapBeacon + defaultText: Secure Storage - proto: DefaultStationBeaconChapel entities: - uid: 7756 @@ -15913,13 +23277,6 @@ entities: - type: Transform pos: 31.5,9.5 parent: 2 -- proto: DefaultStationBeaconCMORoom - entities: - - uid: 7758 - components: - - type: Transform - pos: 23.5,15.5 - parent: 2 - proto: DefaultStationBeaconCourtroom entities: - uid: 7759 @@ -15927,13 +23284,8 @@ entities: - type: Transform pos: 59.5,17.5 parent: 2 -- proto: DefaultStationBeaconDisposals - entities: - - uid: 7760 - components: - - type: Transform - pos: -1.5,5.5 - parent: 2 + - type: NavMapBeacon + defaultText: Assembly Room - proto: DefaultStationBeaconDorms entities: - uid: 7761 @@ -15941,25 +23293,29 @@ entities: - type: Transform pos: 7.5,-0.5 parent: 2 + - type: NavMapBeacon + defaultText: Crew Sleeping Area - proto: DefaultStationBeaconEngineering entities: - - uid: 7762 + - uid: 7607 components: - type: Transform - pos: 35.5,32.5 + pos: 33.5,34.5 parent: 2 - proto: DefaultStationBeaconEvac entities: - uid: 7764 components: - type: Transform - pos: 59.5,-0.5 + pos: 60.5,-0.5 parent: 2 - uid: 7765 components: - type: Transform pos: 47.5,-15.5 parent: 2 + - type: NavMapBeacon + defaultText: Observation - proto: DefaultStationBeaconEVAStorage entities: - uid: 7763 @@ -15969,10 +23325,10 @@ entities: parent: 2 - proto: DefaultStationBeaconGravGen entities: - - uid: 7766 + - uid: 2533 components: - type: Transform - pos: 44.5,40.5 + pos: 46.5,31.5 parent: 2 - proto: DefaultStationBeaconHOPOffice entities: @@ -15981,20 +23337,6 @@ entities: - type: Transform pos: 43.5,28.5 parent: 2 -- proto: DefaultStationBeaconJanitorsCloset - entities: - - uid: 7768 - components: - - type: Transform - pos: -4.5,7.5 - parent: 2 -- proto: DefaultStationBeaconKitchen - entities: - - uid: 7769 - components: - - type: Transform - pos: 25.5,-9.5 - parent: 2 - proto: DefaultStationBeaconMedbay entities: - uid: 7770 @@ -16009,26 +23351,12 @@ entities: - type: Transform pos: 3.5,14.5 parent: 2 -- proto: DefaultStationBeaconQMRoom +- proto: DefaultStationBeaconScience entities: - - uid: 7772 + - uid: 5633 components: - type: Transform - pos: 12.5,31.5 - parent: 2 -- proto: DefaultStationBeaconRDRoom - entities: - - uid: 7773 - components: - - type: Transform - pos: 54.5,13.5 - parent: 2 -- proto: DefaultStationBeaconRobotics - entities: - - uid: 7774 - components: - - type: Transform - pos: 54.5,8.5 + pos: 51.5,6.5 parent: 2 - proto: DefaultStationBeaconSecurity entities: @@ -16042,8 +23370,10 @@ entities: - uid: 7776 components: - type: Transform - pos: 9.5,-5.5 + pos: 9.5,-6.5 parent: 2 + - type: NavMapBeacon + defaultText: Security (West) - proto: DefaultStationBeaconSolars entities: - uid: 7741 @@ -16052,25 +23382,14 @@ entities: pos: 58.5,67.5 parent: 2 - type: NavMapBeacon - text: Solars North - - type: WarpPoint - location: Solars North + defaultText: Solars North - uid: 7742 components: - type: Transform pos: -3.5,-10.5 parent: 2 - type: NavMapBeacon - text: Solars South - - type: WarpPoint - location: Solars South -- proto: DefaultStationBeaconTechVault - entities: - - uid: 7777 - components: - - type: Transform - pos: 7.5,-11.5 - parent: 2 + defaultText: Solars South - proto: DefaultStationBeaconTEG entities: - uid: 7778 @@ -16078,6 +23397,13 @@ entities: - type: Transform pos: 15.5,37.5 parent: 2 +- proto: DefaultStationBeaconTelecoms + entities: + - uid: 1523 + components: + - type: Transform + pos: -2.5,6.5 + parent: 2 - proto: DefaultStationBeaconToolRoom entities: - uid: 7779 @@ -16085,13 +23411,6 @@ entities: - type: Transform pos: 44.5,20.5 parent: 2 -- proto: DefaultStationBeaconVault - entities: - - uid: 7780 - components: - - type: Transform - pos: 62.5,7.5 - parent: 2 - proto: DefibrillatorCabinetFilled entities: - uid: 6328 @@ -16106,6 +23425,13 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,11.5 parent: 2 +- proto: DefibrillatorCompact + entities: + - uid: 2051 + components: + - type: Transform + pos: 9.3894615,33.437958 + parent: 2 - proto: DeskBell entities: - uid: 2202 @@ -16113,2470 +23439,681 @@ entities: - type: Transform pos: 15.615749,14.655383 parent: 2 - - uid: 2203 - components: - - type: Transform - pos: 40.543743,0.6440766 - parent: 2 - - uid: 2232 - components: - - type: Transform - pos: 45.61084,7.272194 - parent: 2 - - uid: 7182 - components: - - type: Transform - pos: 31.5,22.5 - parent: 2 - uid: 7183 components: - type: Transform pos: 32.7,7.5 parent: 2 - - uid: 7251 - components: - - type: Transform - pos: 19.5,23.5 - parent: 2 - proto: DisposalBend entities: - - uid: 6642 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,5.5 - parent: 2 - - uid: 6643 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,6.5 - parent: 2 - - uid: 6657 - components: - - type: Transform - pos: 4.5,6.5 - parent: 2 - - uid: 6694 - components: - - type: Transform - pos: 18.5,5.5 - parent: 2 - - uid: 6695 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,4.5 - parent: 2 - - uid: 6712 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,11.5 - parent: 2 - - uid: 6724 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,11.5 - parent: 2 - - uid: 6730 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,11.5 - parent: 2 - - uid: 6744 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,29.5 - parent: 2 - - uid: 6752 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,23.5 - parent: 2 - - uid: 6766 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,25.5 - parent: 2 - - uid: 6767 - components: - - type: Transform - pos: 33.5,25.5 - parent: 2 - - uid: 6768 - components: - - type: Transform - pos: 30.5,23.5 - parent: 2 - - uid: 6806 - components: - - type: Transform - pos: 17.5,22.5 - parent: 2 - - uid: 6807 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,22.5 - parent: 2 - - uid: 6808 - components: - - type: Transform - pos: 13.5,28.5 - parent: 2 - - uid: 6824 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-5.5 - parent: 2 - - uid: 6825 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-5.5 - parent: 2 - - uid: 6861 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,2.5 - parent: 2 - - uid: 6867 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,8.5 - parent: 2 - - uid: 6875 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,16.5 - parent: 2 - - uid: 6885 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,16.5 - parent: 2 - - uid: 6899 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-13.5 - parent: 2 - - uid: 6928 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,1.5 - parent: 2 - - uid: 6929 - components: - - type: Transform - pos: 49.5,8.5 - parent: 2 - - uid: 6937 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,2.5 - parent: 2 - - uid: 6938 - components: - - type: Transform - pos: 58.5,6.5 - parent: 2 - - uid: 6967 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,18.5 - parent: 2 - - uid: 6974 - components: - - type: Transform - pos: 53.5,29.5 - parent: 2 - - uid: 6976 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,24.5 - parent: 2 - - uid: 6977 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,24.5 - parent: 2 - - uid: 6978 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,23.5 - parent: 2 - - uid: 6998 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,34.5 - parent: 2 - - uid: 7013 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,36.5 - parent: 2 - - uid: 7015 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,36.5 - parent: 2 - - uid: 7051 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,58.5 - parent: 2 - - uid: 7052 - components: - - type: Transform - pos: 61.5,58.5 - parent: 2 - - uid: 7053 - components: - - type: Transform - pos: 56.5,60.5 - parent: 2 - - uid: 7098 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,60.5 - parent: 2 - - uid: 7099 + - uid: 1674 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,57.5 parent: 2 - - uid: 7100 + - uid: 1710 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,57.5 parent: 2 - - uid: 7149 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,37.5 - parent: 2 - - uid: 7150 + - uid: 3238 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,37.5 + pos: 15.5,60.5 parent: 2 -- proto: DisposalJunction - entities: - - uid: 6656 + - uid: 11280 + components: + - type: Transform + pos: 56.5,60.5 + parent: 2 + - uid: 11281 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,5.5 + pos: 56.5,58.5 parent: 2 - - uid: 6682 + - uid: 11282 + components: + - type: Transform + pos: 61.5,58.5 + parent: 2 + - uid: 11305 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,5.5 + pos: 61.5,36.5 parent: 2 - - uid: 6699 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,4.5 - parent: 2 - - uid: 6719 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,10.5 - parent: 2 - - uid: 6722 - components: - - type: Transform - pos: 17.5,11.5 - parent: 2 - - uid: 6762 - components: - - type: Transform - pos: 32.5,29.5 - parent: 2 - - uid: 6775 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,18.5 - parent: 2 - - uid: 6795 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,18.5 - parent: 2 - - uid: 6893 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,8.5 - parent: 2 - - uid: 6930 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,6.5 - parent: 2 -- proto: DisposalJunctionFlipped - entities: - - uid: 3136 - components: - - type: Transform - pos: 51.5,29.5 - parent: 2 - - uid: 6721 - components: - - type: Transform - pos: 17.5,10.5 - parent: 2 - - uid: 6751 - components: - - type: Transform - pos: 30.5,20.5 - parent: 2 - - uid: 6788 - components: - - type: Transform - pos: 17.5,18.5 - parent: 2 - - uid: 6843 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,4.5 - parent: 2 - - uid: 6873 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,8.5 - parent: 2 - - uid: 6922 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,8.5 - parent: 2 -- proto: DisposalPipe - entities: - - uid: 156 + - uid: 11306 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,12.5 - parent: 2 - - uid: 157 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,12.5 - parent: 2 - - uid: 161 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,12.5 - parent: 2 - - uid: 162 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,12.5 - parent: 2 - - uid: 284 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,12.5 - parent: 2 - - uid: 639 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,34.5 - parent: 2 - - uid: 1617 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,5.5 - parent: 2 - - uid: 3138 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,35.5 - parent: 2 - - uid: 4811 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,34.5 - parent: 2 - - uid: 6043 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,34.5 - parent: 2 - - uid: 6613 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,37.5 - parent: 2 - - uid: 6644 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,6.5 - parent: 2 - - uid: 6645 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,6.5 - parent: 2 - - uid: 6648 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-2.5 - parent: 2 - - uid: 6649 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-1.5 - parent: 2 - - uid: 6650 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-0.5 - parent: 2 - - uid: 6651 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,0.5 - parent: 2 - - uid: 6652 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,1.5 - parent: 2 - - uid: 6653 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,2.5 - parent: 2 - - uid: 6654 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,3.5 - parent: 2 - - uid: 6655 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,4.5 - parent: 2 - - uid: 6659 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,5.5 - parent: 2 - - uid: 6661 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,5.5 - parent: 2 - - uid: 6663 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,5.5 - parent: 2 - - uid: 6664 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,5.5 - parent: 2 - - uid: 6666 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,5.5 - parent: 2 - - uid: 6668 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,5.5 - parent: 2 - - uid: 6670 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,5.5 - parent: 2 - - uid: 6671 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,5.5 - parent: 2 - - uid: 6672 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,5.5 - parent: 2 - - uid: 6673 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,5.5 - parent: 2 - - uid: 6675 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,5.5 - parent: 2 - - uid: 6681 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,34.5 - parent: 2 - - uid: 6685 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,34.5 - parent: 2 - - uid: 6697 - components: - - type: Transform - pos: 22.5,6.5 - parent: 2 - - uid: 6698 - components: - - type: Transform - pos: 22.5,5.5 - parent: 2 - - uid: 6700 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,4.5 - parent: 2 - - uid: 6701 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,4.5 - parent: 2 - - uid: 6702 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,4.5 - parent: 2 - - uid: 6709 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,34.5 - parent: 2 - - uid: 6711 - components: - - type: Transform - pos: 10.5,10.5 - parent: 2 - - uid: 6713 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,11.5 - parent: 2 - - uid: 6714 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,11.5 - parent: 2 - - uid: 6715 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,11.5 - parent: 2 - - uid: 6716 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,11.5 - parent: 2 - - uid: 6717 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,11.5 - parent: 2 - - uid: 6718 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,11.5 - parent: 2 - - uid: 6720 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,10.5 - parent: 2 - - uid: 6725 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,11.5 - parent: 2 - - uid: 6726 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,11.5 - parent: 2 - - uid: 6727 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,11.5 - parent: 2 - - uid: 6728 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,11.5 - parent: 2 - - uid: 6729 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,11.5 - parent: 2 - - uid: 6733 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,9.5 - parent: 2 - - uid: 6734 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,8.5 - parent: 2 - - uid: 6735 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,7.5 - parent: 2 - - uid: 6736 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,6.5 - parent: 2 - - uid: 6740 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,34.5 - parent: 2 - - uid: 6741 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,33.5 - parent: 2 - - uid: 6742 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,32.5 - parent: 2 - - uid: 6743 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,31.5 - parent: 2 - - uid: 6745 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,30.5 - parent: 2 - - uid: 6746 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,29.5 - parent: 2 - - uid: 6747 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,29.5 - parent: 2 - - uid: 6748 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,29.5 - parent: 2 - - uid: 6749 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,29.5 - parent: 2 - - uid: 6750 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,29.5 - parent: 2 - - uid: 6753 - components: - - type: Transform - pos: 27.5,22.5 - parent: 2 - - uid: 6754 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,23.5 - parent: 2 - - uid: 6755 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,23.5 - parent: 2 - - uid: 6757 - components: - - type: Transform - pos: 32.5,34.5 - parent: 2 - - uid: 6758 - components: - - type: Transform - pos: 32.5,33.5 - parent: 2 - - uid: 6759 - components: - - type: Transform - pos: 32.5,32.5 - parent: 2 - - uid: 6760 - components: - - type: Transform - pos: 32.5,31.5 - parent: 2 - - uid: 6761 - components: - - type: Transform - pos: 32.5,30.5 - parent: 2 - - uid: 6763 - components: - - type: Transform - pos: 32.5,28.5 - parent: 2 - - uid: 6764 - components: - - type: Transform - pos: 32.5,27.5 - parent: 2 - - uid: 6765 - components: - - type: Transform - pos: 32.5,26.5 - parent: 2 - - uid: 6769 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,24.5 - parent: 2 - - uid: 6770 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,23.5 - parent: 2 - - uid: 6771 - components: - - type: Transform - pos: 30.5,22.5 - parent: 2 - - uid: 6773 - components: - - type: Transform - pos: 30.5,21.5 - parent: 2 - - uid: 6774 - components: - - type: Transform - pos: 30.5,19.5 - parent: 2 - - uid: 6776 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,18.5 - parent: 2 - - uid: 6777 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,18.5 - parent: 2 - - uid: 6778 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,18.5 - parent: 2 - - uid: 6779 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,18.5 - parent: 2 - - uid: 6780 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,18.5 - parent: 2 - - uid: 6781 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,18.5 - parent: 2 - - uid: 6782 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,18.5 - parent: 2 - - uid: 6783 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,18.5 - parent: 2 - - uid: 6784 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,18.5 - parent: 2 - - uid: 6785 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,18.5 - parent: 2 - - uid: 6786 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,18.5 - parent: 2 - - uid: 6787 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,18.5 - parent: 2 - - uid: 6789 - components: - - type: Transform - pos: 17.5,17.5 - parent: 2 - - uid: 6790 - components: - - type: Transform - pos: 17.5,16.5 - parent: 2 - - uid: 6791 - components: - - type: Transform - pos: 17.5,15.5 - parent: 2 - - uid: 6792 - components: - - type: Transform - pos: 17.5,14.5 - parent: 2 - - uid: 6793 - components: - - type: Transform - pos: 17.5,13.5 - parent: 2 - - uid: 6794 - components: - - type: Transform - pos: 17.5,12.5 - parent: 2 - - uid: 6796 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,23.5 - parent: 2 - - uid: 6797 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,22.5 - parent: 2 - - uid: 6798 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,21.5 - parent: 2 - - uid: 6799 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,20.5 - parent: 2 - - uid: 6800 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,19.5 - parent: 2 - - uid: 6801 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,18.5 - parent: 2 - - uid: 6802 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,18.5 - parent: 2 - - uid: 6803 - components: - - type: Transform - pos: 17.5,19.5 - parent: 2 - - uid: 6804 - components: - - type: Transform - pos: 17.5,20.5 - parent: 2 - - uid: 6805 - components: - - type: Transform - pos: 17.5,21.5 - parent: 2 - - uid: 6810 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,28.5 - parent: 2 - - uid: 6811 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,22.5 - parent: 2 - - uid: 6812 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,22.5 - parent: 2 - - uid: 6813 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,22.5 - parent: 2 - - uid: 6816 - components: - - type: Transform - pos: 13.5,23.5 - parent: 2 - - uid: 6817 - components: - - type: Transform - pos: 13.5,24.5 - parent: 2 - - uid: 6818 - components: - - type: Transform - pos: 13.5,25.5 - parent: 2 - - uid: 6819 - components: - - type: Transform - pos: 13.5,26.5 - parent: 2 - - uid: 6820 - components: - - type: Transform - pos: 13.5,27.5 - parent: 2 - - uid: 6823 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-8.5 - parent: 2 - - uid: 6826 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-7.5 - parent: 2 - - uid: 6827 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-6.5 - parent: 2 - - uid: 6833 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-5.5 - parent: 2 - - uid: 6834 - components: - - type: Transform - pos: 30.5,-4.5 - parent: 2 - - uid: 6835 - components: - - type: Transform - pos: 30.5,-3.5 - parent: 2 - - uid: 6836 - components: - - type: Transform - pos: 30.5,-2.5 - parent: 2 - - uid: 6837 - components: - - type: Transform - pos: 30.5,-1.5 - parent: 2 - - uid: 6838 - components: - - type: Transform - pos: 30.5,-0.5 - parent: 2 - - uid: 6839 - components: - - type: Transform - pos: 30.5,0.5 - parent: 2 - - uid: 6840 - components: - - type: Transform - pos: 30.5,1.5 - parent: 2 - - uid: 6841 - components: - - type: Transform - pos: 30.5,2.5 - parent: 2 - - uid: 6842 - components: - - type: Transform - pos: 30.5,3.5 - parent: 2 - - uid: 6844 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,4.5 - parent: 2 - - uid: 6845 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,4.5 - parent: 2 - - uid: 6846 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,4.5 - parent: 2 - - uid: 6847 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,4.5 - parent: 2 - - uid: 6848 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,4.5 - parent: 2 - - uid: 6849 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,4.5 - parent: 2 - - uid: 6850 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,4.5 - parent: 2 - - uid: 6851 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,4.5 - parent: 2 - - uid: 6853 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,4.5 - parent: 2 - - uid: 6854 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,4.5 - parent: 2 - - uid: 6855 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,4.5 - parent: 2 - - uid: 6856 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,4.5 - parent: 2 - - uid: 6857 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,4.5 - parent: 2 - - uid: 6858 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,4.5 - parent: 2 - - uid: 6862 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,3.5 - parent: 2 - - uid: 6864 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,5.5 - parent: 2 - - uid: 6865 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,6.5 - parent: 2 - - uid: 6866 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,7.5 - parent: 2 - - uid: 6869 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,6.5 - parent: 2 - - uid: 6870 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,7.5 - parent: 2 - - uid: 6871 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,8.5 - parent: 2 - - uid: 6872 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,8.5 - parent: 2 - - uid: 6876 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,16.5 - parent: 2 - - uid: 6877 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,16.5 - parent: 2 - - uid: 6878 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,16.5 - parent: 2 - - uid: 6879 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,16.5 - parent: 2 - - uid: 6880 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,16.5 - parent: 2 - - uid: 6881 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,16.5 - parent: 2 - - uid: 6882 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,16.5 - parent: 2 - - uid: 6883 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,16.5 - parent: 2 - - uid: 6884 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,16.5 - parent: 2 - - uid: 6886 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,15.5 - parent: 2 - - uid: 6887 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,14.5 - parent: 2 - - uid: 6888 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,13.5 - parent: 2 - - uid: 6889 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,12.5 - parent: 2 - - uid: 6890 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,11.5 - parent: 2 - - uid: 6891 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,10.5 - parent: 2 - - uid: 6892 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,9.5 - parent: 2 - - uid: 6894 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,8.5 - parent: 2 - - uid: 6895 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,8.5 - parent: 2 - - uid: 6897 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-13.5 - parent: 2 - - uid: 6898 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-13.5 - parent: 2 - - uid: 6900 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-12.5 - parent: 2 - - uid: 6901 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-11.5 - parent: 2 - - uid: 6902 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-10.5 - parent: 2 - - uid: 6903 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-9.5 - parent: 2 - - uid: 6904 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-8.5 - parent: 2 - - uid: 6905 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-7.5 - parent: 2 - - uid: 6906 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-6.5 - parent: 2 - - uid: 6907 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-5.5 - parent: 2 - - uid: 6908 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-4.5 - parent: 2 - - uid: 6909 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-3.5 - parent: 2 - - uid: 6910 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-2.5 - parent: 2 - - uid: 6911 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-1.5 - parent: 2 - - uid: 6912 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-0.5 - parent: 2 - - uid: 6913 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,0.5 - parent: 2 - - uid: 6914 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,1.5 - parent: 2 - - uid: 6915 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,2.5 - parent: 2 - - uid: 6916 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,3.5 - parent: 2 - - uid: 6917 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,4.5 - parent: 2 - - uid: 6918 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,5.5 - parent: 2 - - uid: 6919 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,6.5 - parent: 2 - - uid: 6920 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,7.5 - parent: 2 - - uid: 6923 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,8.5 - parent: 2 - - uid: 6924 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,8.5 - parent: 2 - - uid: 6925 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,8.5 - parent: 2 - - uid: 6931 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,7.5 - parent: 2 - - uid: 6932 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,5.5 - parent: 2 - - uid: 6933 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,4.5 - parent: 2 - - uid: 6934 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,3.5 - parent: 2 - - uid: 6935 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,2.5 - parent: 2 - - uid: 6939 - components: - - type: Transform - pos: 58.5,5.5 - parent: 2 - - uid: 6944 - components: - - type: Transform - pos: 58.5,4.5 - parent: 2 - - uid: 6945 - components: - - type: Transform - pos: 58.5,3.5 - parent: 2 - - uid: 6946 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,2.5 - parent: 2 - - uid: 6947 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,2.5 - parent: 2 - - uid: 6948 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,2.5 - parent: 2 - - uid: 6949 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,2.5 - parent: 2 - - uid: 6950 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,6.5 - parent: 2 - - uid: 6951 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,6.5 - parent: 2 - - uid: 6956 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,6.5 - parent: 2 - - uid: 6957 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,6.5 - parent: 2 - - uid: 6958 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,6.5 - parent: 2 - - uid: 6959 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,6.5 - parent: 2 - - uid: 6960 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,6.5 - parent: 2 - - uid: 6961 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,6.5 - parent: 2 - - uid: 6963 - components: - - type: Transform - pos: 38.5,22.5 - parent: 2 - - uid: 6964 - components: - - type: Transform - pos: 38.5,21.5 - parent: 2 - - uid: 6965 - components: - - type: Transform - pos: 38.5,20.5 - parent: 2 - - uid: 6966 - components: - - type: Transform - pos: 38.5,19.5 - parent: 2 - - uid: 6968 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,18.5 - parent: 2 - - uid: 6969 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,18.5 - parent: 2 - - uid: 6970 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,18.5 - parent: 2 - - uid: 6971 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,18.5 - parent: 2 - - uid: 6979 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,23.5 - parent: 2 - - uid: 6980 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,23.5 - parent: 2 - - uid: 6981 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,23.5 - parent: 2 - - uid: 6982 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,23.5 - parent: 2 - - uid: 6983 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,23.5 - parent: 2 - - uid: 6984 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,23.5 - parent: 2 - - uid: 6985 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,24.5 - parent: 2 - - uid: 6986 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,24.5 - parent: 2 - - uid: 6988 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,24.5 - parent: 2 - - uid: 6989 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,24.5 - parent: 2 - - uid: 6990 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,24.5 - parent: 2 - - uid: 6991 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,29.5 - parent: 2 - - uid: 6992 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,28.5 - parent: 2 - - uid: 6993 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,27.5 - parent: 2 - - uid: 6994 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,26.5 - parent: 2 - - uid: 6996 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,25.5 - parent: 2 - - uid: 7016 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,34.5 - parent: 2 - - uid: 7017 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,36.5 - parent: 2 - - uid: 7020 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,36.5 - parent: 2 - - uid: 7021 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,36.5 - parent: 2 - - uid: 7022 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,36.5 - parent: 2 - - uid: 7024 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,36.5 - parent: 2 - - uid: 7026 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,36.5 - parent: 2 - - uid: 7027 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,36.5 - parent: 2 - - uid: 7029 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,38.5 - parent: 2 - - uid: 7030 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,39.5 - parent: 2 - - uid: 7031 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,40.5 - parent: 2 - - uid: 7032 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,41.5 - parent: 2 - - uid: 7033 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,42.5 - parent: 2 - - uid: 7034 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,43.5 - parent: 2 - - uid: 7035 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,44.5 - parent: 2 - - uid: 7036 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,45.5 - parent: 2 - - uid: 7037 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,46.5 - parent: 2 - - uid: 7038 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,47.5 - parent: 2 - - uid: 7039 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,48.5 - parent: 2 - - uid: 7041 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,49.5 - parent: 2 - - uid: 7042 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,50.5 - parent: 2 - - uid: 7043 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,51.5 - parent: 2 - - uid: 7044 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,52.5 - parent: 2 - - uid: 7045 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,53.5 - parent: 2 - - uid: 7046 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,54.5 - parent: 2 - - uid: 7047 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,55.5 - parent: 2 - - uid: 7048 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,56.5 - parent: 2 - - uid: 7049 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,57.5 - parent: 2 - - uid: 7050 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,59.5 - parent: 2 - - uid: 7054 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,58.5 - parent: 2 - - uid: 7055 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,58.5 - parent: 2 - - uid: 7056 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,58.5 - parent: 2 - - uid: 7057 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,58.5 - parent: 2 - - uid: 7058 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,60.5 - parent: 2 - - uid: 7059 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,60.5 - parent: 2 - - uid: 7060 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,60.5 - parent: 2 - - uid: 7061 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,60.5 - parent: 2 - - uid: 7062 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,60.5 - parent: 2 - - uid: 7063 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,60.5 - parent: 2 - - uid: 7064 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,60.5 - parent: 2 - - uid: 7065 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,60.5 - parent: 2 - - uid: 7066 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,60.5 - parent: 2 - - uid: 7067 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,60.5 - parent: 2 - - uid: 7068 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,60.5 - parent: 2 - - uid: 7069 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,60.5 - parent: 2 - - uid: 7070 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,60.5 - parent: 2 - - uid: 7071 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,60.5 - parent: 2 - - uid: 7072 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,60.5 - parent: 2 - - uid: 7073 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,60.5 - parent: 2 - - uid: 7074 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,60.5 - parent: 2 - - uid: 7075 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,60.5 - parent: 2 - - uid: 7076 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,60.5 - parent: 2 - - uid: 7077 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,60.5 - parent: 2 - - uid: 7078 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,60.5 - parent: 2 - - uid: 7079 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,60.5 - parent: 2 - - uid: 7080 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,60.5 - parent: 2 - - uid: 7081 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,60.5 - parent: 2 - - uid: 7082 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,60.5 - parent: 2 - - uid: 7083 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,60.5 - parent: 2 - - uid: 7084 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,60.5 - parent: 2 - - uid: 7085 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,60.5 - parent: 2 - - uid: 7086 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,60.5 - parent: 2 - - uid: 7087 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,60.5 - parent: 2 - - uid: 7088 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,60.5 - parent: 2 - - uid: 7089 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,60.5 - parent: 2 - - uid: 7090 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,60.5 - parent: 2 - - uid: 7091 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,60.5 - parent: 2 - - uid: 7092 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,60.5 - parent: 2 - - uid: 7093 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,60.5 - parent: 2 - - uid: 7094 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,60.5 - parent: 2 - - uid: 7095 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,60.5 - parent: 2 - - uid: 7096 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,60.5 - parent: 2 - - uid: 7097 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,60.5 - parent: 2 - - uid: 7102 - components: - - type: Transform - pos: 15.5,59.5 - parent: 2 - - uid: 7103 - components: - - type: Transform - pos: 15.5,58.5 - parent: 2 - - uid: 7104 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,57.5 - parent: 2 - - uid: 7151 - components: - - type: Transform - pos: 57.5,39.5 - parent: 2 - - uid: 7152 - components: - - type: Transform - pos: 57.5,38.5 - parent: 2 - - uid: 7153 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,37.5 - parent: 2 - - uid: 7155 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,37.5 - parent: 2 - - uid: 7156 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,37.5 - parent: 2 - - uid: 7159 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,37.5 - parent: 2 - - uid: 7160 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,37.5 - parent: 2 - - uid: 7161 - components: - - type: Transform - rot: 3.141592653589793 rad pos: 51.5,36.5 parent: 2 - - uid: 7162 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,35.5 - parent: 2 - - uid: 7164 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,34.5 - parent: 2 - - uid: 7165 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,33.5 - parent: 2 - - uid: 7166 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,32.5 - parent: 2 - - uid: 7167 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,31.5 - parent: 2 - - uid: 7168 + - uid: 11321 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,30.5 parent: 2 -- proto: DisposalTrunk + - uid: 11322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,30.5 + parent: 2 +- proto: DisposalPipe entities: - - uid: 159 + - uid: 567 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,12.5 + pos: -6.5,12.5 parent: 2 - - uid: 1618 + - uid: 811 components: - type: Transform - pos: 26.5,35.5 + rot: -1.5707963267948966 rad + pos: 51.5,60.5 parent: 2 - - uid: 4938 + - uid: 845 components: - type: Transform - pos: 57.5,40.5 + rot: -1.5707963267948966 rad + pos: 54.5,60.5 parent: 2 - - uid: 5055 + - uid: 850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,60.5 + parent: 2 + - uid: 851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,60.5 + parent: 2 + - uid: 1393 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,23.5 + pos: 16.5,57.5 parent: 2 - - uid: 6614 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,5.5 - parent: 2 - - uid: 6647 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-3.5 - parent: 2 - - uid: 6688 + - uid: 1400 components: - type: Transform rot: -1.5707963267948966 rad - pos: 61.5,34.5 + pos: 50.5,60.5 parent: 2 - - uid: 6696 - components: - - type: Transform - pos: 22.5,7.5 - parent: 2 - - uid: 6704 + - uid: 1451 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,10.5 + pos: 17.5,60.5 parent: 2 - - uid: 6705 + - uid: 1456 components: - type: Transform - pos: 25.5,12.5 + rot: -1.5707963267948966 rad + pos: 49.5,60.5 parent: 2 - - uid: 6707 + - uid: 1676 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,9.5 + pos: 15.5,59.5 parent: 2 - - uid: 6739 + - uid: 1695 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,21.5 + rot: -1.5707963267948966 rad + pos: -5.5,12.5 parent: 2 - - uid: 6756 + - uid: 1746 components: - type: Transform - pos: 32.5,35.5 + rot: -1.5707963267948966 rad + pos: 47.5,60.5 + parent: 2 + - uid: 1747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,60.5 + parent: 2 + - uid: 1789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,60.5 + parent: 2 + - uid: 1939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,12.5 + parent: 2 + - uid: 3256 + components: + - type: Transform + pos: 15.5,58.5 + parent: 2 + - uid: 3330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,60.5 + parent: 2 + - uid: 3350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,12.5 + parent: 2 + - uid: 6766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,60.5 + parent: 2 + - uid: 6767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,60.5 + parent: 2 + - uid: 6768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,60.5 + parent: 2 + - uid: 6769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,60.5 + parent: 2 + - uid: 6770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,60.5 + parent: 2 + - uid: 6771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,60.5 parent: 2 - uid: 6772 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,20.5 + pos: 38.5,60.5 parent: 2 - - uid: 6809 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,28.5 - parent: 2 - - uid: 6822 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-9.5 - parent: 2 - - uid: 6860 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,2.5 - parent: 2 - - uid: 6868 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,5.5 - parent: 2 - - uid: 6874 - components: - - type: Transform - pos: 54.5,17.5 - parent: 2 - - uid: 6896 + - uid: 6773 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,-13.5 + pos: 37.5,60.5 parent: 2 - - uid: 6927 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,1.5 - parent: 2 - - uid: 6936 + - uid: 6774 components: - type: Transform rot: -1.5707963267948966 rad - pos: 63.5,2.5 + pos: 43.5,60.5 parent: 2 - - uid: 6973 + - uid: 6775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,60.5 + parent: 2 + - uid: 6776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,60.5 + parent: 2 + - uid: 6777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,60.5 + parent: 2 + - uid: 6778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,60.5 + parent: 2 + - uid: 6779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,60.5 + parent: 2 + - uid: 6780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,60.5 + parent: 2 + - uid: 6781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,60.5 + parent: 2 + - uid: 6782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,60.5 + parent: 2 + - uid: 6783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,60.5 + parent: 2 + - uid: 6784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,60.5 + parent: 2 + - uid: 6785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,60.5 + parent: 2 + - uid: 6786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,60.5 + parent: 2 + - uid: 6787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,60.5 + parent: 2 + - uid: 6788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,60.5 + parent: 2 + - uid: 6789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,60.5 + parent: 2 + - uid: 6790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,60.5 + parent: 2 + - uid: 6791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,60.5 + parent: 2 + - uid: 6792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,60.5 + parent: 2 + - uid: 6793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,60.5 + parent: 2 + - uid: 6794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,60.5 + parent: 2 + - uid: 6795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,58.5 + parent: 2 + - uid: 6796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,58.5 + parent: 2 + - uid: 6797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,58.5 + parent: 2 + - uid: 6798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,58.5 + parent: 2 + - uid: 11283 components: - type: Transform rot: 3.141592653589793 rad - pos: 53.5,28.5 + pos: 56.5,59.5 parent: 2 - - uid: 7101 + - uid: 11284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,57.5 + parent: 2 + - uid: 11285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,56.5 + parent: 2 + - uid: 11286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,55.5 + parent: 2 + - uid: 11287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,54.5 + parent: 2 + - uid: 11288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,53.5 + parent: 2 + - uid: 11289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,52.5 + parent: 2 + - uid: 11290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,51.5 + parent: 2 + - uid: 11291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,50.5 + parent: 2 + - uid: 11292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,49.5 + parent: 2 + - uid: 11293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,48.5 + parent: 2 + - uid: 11294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,47.5 + parent: 2 + - uid: 11295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,46.5 + parent: 2 + - uid: 11296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,45.5 + parent: 2 + - uid: 11297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,44.5 + parent: 2 + - uid: 11298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,43.5 + parent: 2 + - uid: 11299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,42.5 + parent: 2 + - uid: 11300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,41.5 + parent: 2 + - uid: 11301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,40.5 + parent: 2 + - uid: 11302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,39.5 + parent: 2 + - uid: 11303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,38.5 + parent: 2 + - uid: 11304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,37.5 + parent: 2 + - uid: 11307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,36.5 + parent: 2 + - uid: 11308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,36.5 + parent: 2 + - uid: 11309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,36.5 + parent: 2 + - uid: 11310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,36.5 + parent: 2 + - uid: 11311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,36.5 + parent: 2 + - uid: 11312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,36.5 + parent: 2 + - uid: 11313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,36.5 + parent: 2 + - uid: 11314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,36.5 + parent: 2 + - uid: 11315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,36.5 + parent: 2 + - uid: 11316 + components: + - type: Transform + pos: 51.5,35.5 + parent: 2 + - uid: 11317 + components: + - type: Transform + pos: 51.5,34.5 + parent: 2 + - uid: 11318 + components: + - type: Transform + pos: 51.5,33.5 + parent: 2 + - uid: 11319 + components: + - type: Transform + pos: 51.5,32.5 + parent: 2 + - uid: 11320 + components: + - type: Transform + pos: 51.5,31.5 + parent: 2 + - uid: 11323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,30.5 + parent: 2 + - uid: 11324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,30.5 + parent: 2 + - uid: 11325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,30.5 + parent: 2 + - uid: 11326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,30.5 + parent: 2 + - uid: 11327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,30.5 + parent: 2 + - uid: 11328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,30.5 + parent: 2 + - uid: 11329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,30.5 + parent: 2 + - uid: 11330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,30.5 + parent: 2 + - uid: 11331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,30.5 + parent: 2 + - uid: 11332 + components: + - type: Transform + pos: 61.5,31.5 + parent: 2 + - uid: 11333 + components: + - type: Transform + pos: 61.5,32.5 + parent: 2 + - uid: 11334 + components: + - type: Transform + pos: 61.5,33.5 + parent: 2 + - uid: 11537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,12.5 + parent: 2 +- proto: DisposalTrunk + entities: + - uid: 725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,12.5 + parent: 2 + - uid: 3335 components: - type: Transform pos: 17.5,58.5 parent: 2 + - uid: 11335 + components: + - type: Transform + pos: 61.5,34.5 + parent: 2 - proto: DisposalUnit entities: - uid: 160 @@ -18592,174 +24129,50 @@ entities: - type: Transform pos: 17.5,58.5 parent: 2 - - uid: 4850 - components: - - type: Transform - pos: 57.5,40.5 - parent: 2 - - uid: 5010 - components: - - type: Transform - pos: 49.5,-13.5 - parent: 2 - - uid: 5029 - components: - - type: Transform - pos: 41.5,5.5 - parent: 2 - - uid: 5054 - components: - - type: Transform - pos: 32.5,35.5 - parent: 2 - - uid: 5112 - components: - - type: Transform - pos: 54.5,17.5 - parent: 2 - - uid: 5135 - components: - - type: Transform - pos: 63.5,2.5 - parent: 2 - - uid: 6646 - components: - - type: Transform - pos: 4.5,-3.5 - parent: 2 - - uid: 6689 - components: - - type: Transform - pos: 10.5,9.5 - parent: 2 - - uid: 6690 - components: - - type: Transform - pos: 20.5,10.5 - parent: 2 - - uid: 6691 - components: - - type: Transform - pos: 11.5,28.5 - parent: 2 - - uid: 6692 - components: - - type: Transform - pos: 31.5,20.5 - parent: 2 - - uid: 6693 - components: - - type: Transform - pos: 25.5,12.5 - parent: 2 - - uid: 6737 - components: - - type: Transform - pos: 27.5,21.5 - parent: 2 - - uid: 6738 - components: - - type: Transform - pos: 26.5,35.5 - parent: 2 - - uid: 6821 - components: - - type: Transform - pos: 28.5,-9.5 - parent: 2 - uid: 6830 components: - type: Transform pos: 61.5,34.5 parent: 2 - - uid: 6859 - components: - - type: Transform - pos: 37.5,2.5 - parent: 2 - - uid: 6926 - components: - - type: Transform - pos: 48.5,1.5 - parent: 2 - - uid: 6972 - components: - - type: Transform - pos: 53.5,28.5 - parent: 2 - - uid: 7040 - components: - - type: Transform - pos: 37.5,23.5 - parent: 2 - - uid: 7460 - components: - - type: Transform - pos: 22.5,7.5 - parent: 2 -- proto: DisposalYJunction +- proto: DresserWardenFilled entities: - - uid: 6863 + - uid: 10432 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,4.5 - parent: 2 - - uid: 6962 - components: - - type: Transform - pos: 38.5,23.5 - parent: 2 -- proto: DogBed + pos: 32.5,-69.5 + parent: 3564 +- proto: DrinkCafeLatte entities: - - uid: 2283 + - uid: 1560 components: - type: Transform - pos: 47.5,27.5 + pos: 7.722795,34.250458 parent: 2 - - uid: 2404 - components: - - type: Transform - pos: 56.5,20.5 - parent: 2 -- proto: DoorElectronicsService +- proto: DrinkGlass entities: - - uid: 2186 + - uid: 10577 components: - type: Transform - pos: 9.5,-10.5 - parent: 2 - - uid: 2190 + pos: 11.5,-29.5 + parent: 3564 + - uid: 10578 components: - type: Transform - pos: 9.5,-10.5 - parent: 2 - - uid: 4220 - components: - - type: Transform - pos: 9.5,-10.5 - parent: 2 -- proto: DrinkBottleBeer - entities: - - uid: 2051 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.777023,12.639819 - parent: 2 + pos: 11.5,-29.5 + parent: 3564 - proto: DrinkGoldenCup entities: - - uid: 7734 + - uid: 7826 components: - type: Transform - pos: 62.5,5.5 + pos: 59.5,23.5 parent: 2 - proto: Dropper entities: - - uid: 2133 + - uid: 1514 components: - type: Transform - pos: 33.5,-5.5 + pos: 34.5,-2.5 parent: 2 - uid: 7325 components: @@ -18771,8 +24184,23 @@ entities: - type: Transform pos: 12.5,13.5 parent: 2 + - uid: 10342 + components: + - type: Transform + pos: 28.5,-16.5 + parent: 3564 + - uid: 10704 + components: + - type: Transform + pos: 37.5,-26.5 + parent: 3564 - proto: EmergencyOxygenTankFilled entities: + - uid: 5978 + components: + - type: Transform + pos: 11.5,26.5 + parent: 2 - uid: 7548 components: - type: Transform @@ -18790,20 +24218,6 @@ entities: - type: Transform pos: 28.42001,14.909441 parent: 2 -- proto: ExosuitFabricator - entities: - - uid: 1555 - components: - - type: Transform - pos: 52.5,9.5 - parent: 2 -- proto: ExtendedEmergencyOxygenTankFilled - entities: - - uid: 2427 - components: - - type: Transform - pos: 59.569664,22.772419 - parent: 2 - proto: FaxMachineBase entities: - uid: 8293 @@ -18811,12 +24225,21 @@ entities: - type: Transform pos: 60.5,31.5 parent: 2 -- proto: FaxMachineCaptain - entities: - - uid: 8292 + - type: FaxMachine + name: Bridge + - uid: 11365 components: - type: Transform - pos: 59.5,23.5 + pos: 32.5,-64.5 + parent: 3564 + - type: FaxMachine + name: Warden's Office +- proto: FaxMachineCaptain + entities: + - uid: 7336 + components: + - type: Transform + pos: 59.5,22.5 parent: 2 - proto: FireAlarm entities: @@ -18828,12 +24251,20 @@ entities: parent: 2 - type: DeviceList devices: - - 2920 + - 2897 - 2919 - 2918 - - 2917 - 2916 - 2922 + - uid: 35 + components: + - type: Transform + pos: 27.5,17.5 + parent: 2 + - type: DeviceList + devices: + - 2921 + - 3246 - uid: 433 components: - type: Transform @@ -18852,15 +24283,33 @@ entities: - 6540 - 2949 - 2950 + - uid: 2009 + components: + - type: Transform + pos: 39.5,3.5 + parent: 2 + - type: DeviceList + devices: + - 2944 + - uid: 2770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,40.5 + parent: 2 + - type: DeviceList + devices: + - 2406 + - 1741 + - 1735 - uid: 2967 components: - type: Transform - pos: 43.5,30.5 + pos: 44.5,30.5 parent: 2 - type: DeviceList devices: - 2972 - - 2971 - uid: 2982 components: - type: Transform @@ -18876,22 +24325,25 @@ entities: - 6541 - 2927 - 2926 + - uid: 5865 + components: + - type: Transform + pos: 33.5,-3.5 + parent: 2 + - type: DeviceList + devices: + - 2935 + - 2936 - uid: 6170 components: - type: Transform pos: 59.5,38.5 parent: 2 - - type: DeviceList - devices: - - 2977 - - 2978 - - 2980 - - 2979 - uid: 6528 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,21.5 + pos: 53.5,21.5 parent: 2 - type: DeviceList devices: @@ -18904,24 +24356,16 @@ entities: parent: 2 - type: DeviceList devices: - - 2936 - - 2940 - - 2939 - - 2938 - - 2937 - 2941 - 2942 - 2943 + - 2937 + - 2938 + - 2939 + - 2940 + - 2936 + - 2935 - 3246 - - uid: 6566 - components: - - type: Transform - pos: 35.5,-3.5 - parent: 2 - - type: DeviceList - devices: - - 2944 - - 8224 - uid: 6567 components: - type: Transform @@ -18971,16 +24415,13 @@ entities: parent: 2 - type: DeviceList devices: - - 2973 - - 2974 - - 2970 + - 8527 - 2964 - 2963 - 2962 - - 2897 - - 2896 - - 2971 + - 2970 - 2972 + - 2974 - uid: 6573 components: - type: Transform @@ -18990,58 +24431,6 @@ entities: - type: DeviceList devices: - 2912 - - uid: 6574 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,25.5 - parent: 2 - - type: DeviceList - devices: - - 2904 - - 2901 - - 2900 - - 2912 - - 2899 - - 2902 - - 2903 - - uid: 6575 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,24.5 - parent: 2 - - type: DeviceList - devices: - - 2898 - - 2900 - - 2901 - - 2907 - - 2908 - - 2906 - - 2905 - - 2911 - - 2910 - - 2909 - - uid: 6576 - components: - - type: Transform - pos: 28.5,39.5 - parent: 2 - - type: DeviceList - devices: - - 2904 - - uid: 6577 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,40.5 - parent: 2 - - type: DeviceList - devices: - - 2909 - - 2910 - - 2911 - uid: 6578 components: - type: Transform @@ -19049,52 +24438,8 @@ entities: parent: 2 - type: DeviceList devices: - - 2908 - - 2907 - - 2906 - - 2905 - 396 - - uid: 6579 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,26.5 - parent: 2 - - type: DeviceList - devices: - - 2915 - - 2914 - - 2913 - - uid: 6580 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,19.5 - parent: 2 - - type: DeviceList - devices: - - 2913 - - 2914 - - 2915 - - 2894 - - 2895 - - 2917 - - 2916 - - uid: 6581 - components: - - type: Transform - pos: 26.5,20.5 - parent: 2 - - type: DeviceList - devices: - - 2898 - - 2899 - - 2903 - - 2902 - - 2896 - - 2897 - - 2894 - - 2895 + - 8475 - uid: 6582 components: - type: Transform @@ -19127,11 +24472,6 @@ entities: rot: 1.5707963267948966 rad pos: 57.5,45.5 parent: 2 - - type: DeviceList - devices: - - 2980 - - 2979 - - 8221 - uid: 6586 components: - type: Transform @@ -19159,27 +24499,14 @@ entities: parent: 2 - type: DeviceList devices: - - 8224 - - 8226 - - 6540 - 8225 - 2947 - - uid: 6589 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-8.5 - parent: 2 - - type: DeviceList - devices: - - 8229 - - 8226 - - 2935 + - 6540 - uid: 6591 components: - type: Transform rot: -1.5707963267948966 rad - pos: 47.5,-8.5 + pos: 47.5,-7.5 parent: 2 - type: DeviceList devices: @@ -19207,8 +24534,8 @@ entities: - uid: 6594 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,8.5 + rot: 1.5707963267948966 rad + pos: 56.5,8.5 parent: 2 - type: DeviceList devices: @@ -19227,11 +24554,20 @@ entities: - 2961 - 2975 - 2976 - - uid: 7781 + - uid: 6642 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-12.5 + pos: 15.5,21.5 + parent: 2 + - type: DeviceList + devices: + - 8539 + - 8543 + - uid: 7781 + components: + - type: Transform + pos: 11.5,-9.5 parent: 2 - type: DeviceList devices: @@ -19256,9 +24592,8 @@ entities: - type: DeviceList devices: - 2974 - - 2973 - 2978 - - 2977 + - 8549 - uid: 8223 components: - type: Transform @@ -19276,15 +24611,12 @@ entities: parent: 2 - type: DeviceList devices: - - 8225 - - 8229 - 2931 - - 2932 - - 2930 + - 8225 - uid: 8232 components: - type: Transform - pos: 21.5,5.5 + pos: 25.5,8.5 parent: 2 - type: DeviceList devices: @@ -19296,16 +24628,6 @@ entities: - 2918 - 2919 - 2925 - - uid: 8234 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,14.5 - parent: 2 - - type: DeviceList - devices: - - 2921 - - 3246 - uid: 8235 components: - type: Transform @@ -19331,11 +24653,9 @@ entities: parent: 2 - type: DeviceList devices: - - 2932 - - 2931 - - 2930 - - 2929 - 2928 + - 2929 + - 2931 - uid: 8247 components: - type: Transform @@ -19353,20 +24673,251 @@ entities: - type: DeviceList devices: - 8245 -- proto: FireAxe - entities: - - uid: 7726 + - uid: 8307 components: - type: Transform - pos: 27.5,35.5 + pos: 30.5,32.5 parent: 2 + - type: DeviceList + devices: + - 2901 + - uid: 8356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,29.5 + parent: 2 + - type: DeviceList + devices: + - 8539 + - uid: 8528 + components: + - type: Transform + pos: 37.5,36.5 + parent: 2 + - type: DeviceList + devices: + - 2904 + - 8472 + - 8473 + - 8474 + - 8471 + - 7657 + - 1831 + - 8477 + - 2912 + - uid: 8529 + components: + - type: Transform + pos: 36.5,42.5 + parent: 2 + - type: DeviceList + devices: + - 2904 + - uid: 8531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,36.5 + parent: 2 + - type: DeviceList + devices: + - 8474 + - 8473 + - 8472 + - 2406 + - 1741 + - 1735 + - 8475 + - uid: 8533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 1606 + - 8527 + - 2901 + - 8471 + - 7657 + - 1831 + - 8477 + - uid: 8541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,21.5 + parent: 2 + - type: DeviceList + devices: + - 8543 + - uid: 10242 + components: + - type: Transform + pos: 15.5,-64.5 + parent: 3564 + - type: DeviceList + devices: + - 9647 + - 9646 + - uid: 10243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-61.5 + parent: 3564 + - type: DeviceList + devices: + - 9645 + - 9646 + - uid: 10244 + components: + - type: Transform + pos: 32.5,-62.5 + parent: 3564 + - type: DeviceList + devices: + - 9648 + - 9649 + - uid: 10245 + components: + - type: Transform + pos: 27.5,-56.5 + parent: 3564 + - type: DeviceList + devices: + - 9642 + - 9643 + - 9644 + - 9648 + - uid: 10246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-57.5 + parent: 3564 + - type: DeviceList + devices: + - 9641 + - 9640 + - 9645 + - 9642 + - 9643 + - 9644 + - 9649 + - 9647 + - 9650 + - uid: 10247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-31.5 + parent: 3564 + - type: DeviceList + devices: + - 9631 + - 9632 + - 9633 + - 9634 + - 9635 + - 9636 + - 9638 + - 9637 + - 9640 + - 9641 + - uid: 10248 + components: + - type: Transform + pos: 36.5,-24.5 + parent: 3564 + - type: DeviceList + devices: + - 9635 + - uid: 10249 + components: + - type: Transform + pos: 18.5,-19.5 + parent: 3564 + - type: DeviceList + devices: + - 9634 + - 9633 + - uid: 10250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-17.5 + parent: 3564 + - type: DeviceList + devices: + - 9631 + - 9632 + - uid: 10251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-42.5 + parent: 3564 + - type: DeviceList + devices: + - 9636 + - 9638 + - 9637 + - 9639 - proto: FireExtinguisher entities: + - uid: 1071 + components: + - type: Transform + pos: 47.5,35.5 + parent: 2 + - uid: 1288 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 2 + - uid: 1293 + components: + - type: Transform + pos: 16.5,-5.5 + parent: 2 + - uid: 2183 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 2 + - uid: 3950 + components: + - type: Transform + pos: 60.5,42.5 + parent: 2 - uid: 3962 components: - type: Transform pos: 54.471027,32.541878 parent: 2 + - uid: 5156 + components: + - type: Transform + pos: 18.5,20.5 + parent: 2 + - uid: 5166 + components: + - type: Transform + pos: 12.5,28.5 + parent: 2 + - uid: 6705 + components: + - type: Transform + pos: 32.5,-10.5 + parent: 2 + - uid: 6707 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 2 - uid: 7552 components: - type: Transform @@ -19382,6 +24933,36 @@ entities: - type: Transform pos: 15.5,-10.5 parent: 2 + - uid: 8226 + components: + - type: Transform + pos: 21.5,39.5 + parent: 2 + - uid: 8305 + components: + - type: Transform + pos: 30.5,24.5 + parent: 2 + - uid: 8362 + components: + - type: Transform + pos: 34.5,22.5 + parent: 2 + - uid: 8363 + components: + - type: Transform + pos: 39.5,33.5 + parent: 2 + - uid: 8364 + components: + - type: Transform + pos: 31.5,33.5 + parent: 2 + - uid: 11346 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 2 - proto: Firelock entities: - uid: 396 @@ -19392,94 +24973,78 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6578 - - 6555 - 433 - 6554 - - uid: 2894 + - 6578 + - 6555 + - uid: 1606 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,19.5 + pos: 31.5,20.5 parent: 2 - type: DeviceNetwork deviceLists: - - 6581 - - 6552 - - 6580 - - 6551 - - uid: 2895 + - 8533 + - 8532 + - uid: 1735 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,18.5 + pos: 23.5,40.5 parent: 2 - type: DeviceNetwork deviceLists: - - 6581 - - 6552 - - 6580 - - 6551 - - uid: 2896 + - 8531 + - 8509 + - 2770 + - 6556 + - uid: 1741 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,19.5 + pos: 24.5,40.5 parent: 2 - type: DeviceNetwork deviceLists: - - 6581 - - 6552 - - 6570 - - 6529 + - 8531 + - 8509 + - 2770 + - 6556 + - uid: 1831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8528 + - 6559 + - 8533 + - 8532 + - uid: 2406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8531 + - 8509 + - 2770 + - 6556 - uid: 2897 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,18.5 + pos: 21.5,11.5 parent: 2 - type: DeviceNetwork deviceLists: - - 6581 - - 6552 - - 6570 - - 6529 - - uid: 2898 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,23.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6575 - - 6553 - - 6581 - - 6552 - - uid: 2899 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,23.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6574 - - 6559 - - 6581 - - 6552 - - uid: 2900 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,29.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6574 - - 6559 - - 6575 - - 6553 + - 7 + - 7434 - uid: 2901 components: - type: Transform @@ -19488,34 +25053,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6574 - - 6559 - - 6575 - - 6553 - - uid: 2902 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,20.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6574 - - 6559 - - 6581 - - 6552 - - uid: 2903 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,20.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6574 - - 6559 - - 6581 - - 6552 + - 8533 + - 8532 + - 8307 + - 1602 - uid: 2904 components: - type: Transform @@ -19524,94 +25065,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6576 - - 6557 - - 6574 + - 8529 + - 5210 + - 8528 - 6559 - - uid: 2905 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,34.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6575 - - 6553 - - 6578 - - 6555 - - uid: 2906 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,33.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6575 - - 6553 - - 6578 - - 6555 - - uid: 2907 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,32.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6575 - - 6553 - - 6578 - - 6555 - - uid: 2908 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,32.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6575 - - 6553 - - 6578 - - 6555 - - uid: 2909 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,36.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6575 - - 6553 - - 6577 - - 6556 - - uid: 2910 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,36.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6575 - - 6553 - - 6577 - - 6556 - - uid: 2911 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,36.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6575 - - 6553 - - 6577 - - 6556 - uid: 2912 components: - type: Transform @@ -19620,46 +25077,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6574 + - 8528 - 6559 - 6573 - 6558 - - uid: 2913 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,25.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6580 - - 6551 - - 6579 - - 6550 - - uid: 2914 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6580 - - 6551 - - 6579 - - 6550 - - uid: 2915 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,21.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6580 - - 6551 - - 6579 - - 6550 - uid: 2916 components: - type: Transform @@ -19668,20 +25089,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6580 - - 6551 - - 7 - - 7434 - - uid: 2917 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,17.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6580 - - 6551 + - 8544 - 7 - 7434 - uid: 2918 @@ -19693,7 +25101,7 @@ entities: - type: DeviceNetwork deviceLists: - 8232 - - 6561 + - 56 - 7 - 7434 - uid: 2919 @@ -19705,17 +25113,7 @@ entities: - type: DeviceNetwork deviceLists: - 8232 - - 6561 - - 7 - - 7434 - - uid: 2920 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,11.5 - parent: 2 - - type: DeviceNetwork - deviceLists: + - 56 - 7 - 7434 - uid: 2921 @@ -19726,8 +25124,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 8234 - - 6548 + - 35 + - 3162 - uid: 2922 components: - type: Transform @@ -19736,10 +25134,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 7 - - 7434 - 8235 - 8236 + - 7 + - 7434 - uid: 2923 components: - type: Transform @@ -19775,10 +25173,10 @@ entities: - type: DeviceNetwork deviceLists: - 8232 - - 6561 - 2982 - 6165 - 6584 + - 56 - uid: 2926 components: - type: Transform @@ -19814,9 +25212,9 @@ entities: - type: DeviceNetwork deviceLists: - 8232 - - 6561 - 8242 - 8241 + - 56 - uid: 2929 components: - type: Transform @@ -19830,18 +25228,6 @@ entities: - 6584 - 8242 - 8241 - - uid: 2930 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 8230 - - 8231 - - 8242 - - 8241 - uid: 2931 components: - type: Transform @@ -19850,22 +25236,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 8230 - - 8231 - 8242 - 8241 - - uid: 2932 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - 8230 - 8231 - - 8242 - - 8241 - uid: 2934 components: - type: Transform @@ -19887,8 +25261,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6589 - - 6562 + - 5865 + - 5864 + - 6565 + - 6564 - uid: 2936 components: - type: Transform @@ -19897,6 +25273,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: + - 5865 + - 5864 - 6565 - 6564 - uid: 2937 @@ -19907,10 +25285,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: + - 56 + - 8232 - 6565 - 6564 - - 8232 - - 6561 - uid: 2938 components: - type: Transform @@ -19919,10 +25297,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: + - 56 + - 8232 - 6565 - 6564 - - 8232 - - 6561 - uid: 2939 components: - type: Transform @@ -19931,10 +25309,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: + - 56 + - 8232 - 6565 - 6564 - - 8232 - - 6561 - uid: 2940 components: - type: Transform @@ -19943,10 +25321,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: + - 56 + - 8232 - 6565 - 6564 - - 8232 - - 6561 - uid: 2941 components: - type: Transform @@ -19993,8 +25371,8 @@ entities: deviceLists: - 8222 - 6568 - - 6566 - 6563 + - 2009 - uid: 2947 components: - type: Transform @@ -20003,10 +25381,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6588 - - 6542 - 6587 - 6543 + - 6588 + - 6542 - uid: 2949 components: - type: Transform @@ -20146,10 +25524,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6570 - - 6529 - 6569 - 6572 + - 6570 + - 6529 - uid: 2963 components: - type: Transform @@ -20158,10 +25536,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6570 - - 6529 - 6569 - 6572 + - 6570 + - 6529 - uid: 2964 components: - type: Transform @@ -20170,10 +25548,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6570 - - 6529 - 6569 - 6572 + - 6570 + - 6529 - uid: 2965 components: - type: Transform @@ -20200,25 +25578,14 @@ entities: - uid: 2970 components: - type: Transform - pos: 43.5,21.5 + pos: 43.5,22.5 parent: 2 - type: DeviceNetwork deviceLists: - - 6570 - - 6529 - 6528 - 6532 - - uid: 2971 - components: - - type: Transform - pos: 45.5,26.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - 6570 - 6529 - - 6530 - - 2967 - uid: 2972 components: - type: Transform @@ -20226,21 +25593,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6570 - - 6529 - 6530 - 2967 - - uid: 2973 - components: - - type: Transform - pos: 50.5,28.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - 6570 - 6529 - - 8219 - - 6527 - uid: 2974 components: - type: Transform @@ -20248,10 +25604,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: + - 6527 + - 8219 - 6570 - 6529 - - 8219 - - 6527 - uid: 2975 components: - type: Transform @@ -20274,17 +25630,6 @@ entities: - 6534 - 6594 - 6535 - - uid: 2977 - components: - - type: Transform - pos: 54.5,37.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 8219 - - 6527 - - 2968 - - 6170 - uid: 2978 components: - type: Transform @@ -20292,10 +25637,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 8219 - - 6527 - 2968 - - 6170 + - 6527 + - 8219 - uid: 2979 components: - type: Transform @@ -20304,20 +25648,6 @@ entities: - type: DeviceNetwork deviceLists: - 2968 - - 6170 - - 8220 - - 6585 - - uid: 2980 - components: - - type: Transform - pos: 60.5,38.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 2968 - - 6170 - - 8220 - - 6585 - uid: 3246 components: - type: Transform @@ -20328,8 +25658,8 @@ entities: deviceLists: - 6565 - 6564 - - 8234 - - 6548 + - 35 + - 3162 - uid: 6540 components: - type: Transform @@ -20338,10 +25668,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6588 - - 6542 - 1968 - 6539 + - 6588 + - 6542 - uid: 6541 components: - type: Transform @@ -20355,6 +25685,18 @@ entities: - 6584 - 6587 - 6543 + - uid: 7657 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8528 + - 6559 + - 8533 + - 8532 - uid: 8221 components: - type: Transform @@ -20362,22 +25704,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6585 - - 8220 - 6526 - 8223 - - uid: 8224 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-8.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6566 - - 6563 - - 6588 - - 6542 - uid: 8225 components: - type: Transform @@ -20386,34 +25714,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6588 - - 6542 - 8230 - 8231 - - uid: 8226 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - 6588 - 6542 - - 6589 - - 6562 - - uid: 8229 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-8.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6589 - - 6562 - - 8230 - - 8231 - uid: 8237 components: - type: Transform @@ -20430,7 +25734,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,50.5 + pos: 41.5,50.5 parent: 2 - type: DeviceNetwork deviceLists: @@ -20450,43 +25754,391 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,57.5 + pos: 18.5,57.5 parent: 2 - type: DeviceNetwork deviceLists: - 8247 - 6524 -- proto: Fireplace - entities: - - uid: 2423 + - uid: 8471 components: - type: Transform - pos: 56.5,25.5 + rot: 1.5707963267948966 rad + pos: 32.5,32.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 8528 + - 6559 + - 8533 + - 8532 + - uid: 8472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8528 + - 6559 + - 8531 + - 8509 + - uid: 8473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8528 + - 6559 + - 8531 + - 8509 + - uid: 8474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8528 + - 6559 + - 8531 + - 8509 + - uid: 8475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8531 + - 8509 + - 6578 + - 6555 + - uid: 8477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8528 + - 6559 + - 8533 + - 8532 + - uid: 8527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8533 + - 8532 + - 6570 + - 6529 + - uid: 8539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8356 + - 6614 + - 6642 + - 8538 + - uid: 8543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6642 + - 8538 + - 8541 + - 8542 + - uid: 8549 + components: + - type: Transform + pos: 62.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6527 + - 8219 +- proto: FirelockGlass + entities: + - uid: 9631 + components: + - type: Transform + pos: 23.5,-24.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10250 + - 10235 + - 10247 + - 10233 + - uid: 9632 + components: + - type: Transform + pos: 24.5,-24.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10250 + - 10235 + - 10247 + - 10233 + - uid: 9633 + components: + - type: Transform + pos: 20.5,-26.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10247 + - 10233 + - 10236 + - 10249 + - uid: 9634 + components: + - type: Transform + pos: 20.5,-27.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10247 + - 10233 + - 10236 + - 10249 + - uid: 9635 + components: + - type: Transform + pos: 26.5,-28.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10247 + - 10233 + - 10248 + - 10234 + - uid: 9636 + components: + - type: Transform + pos: 19.5,-40.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10247 + - 10233 + - 10232 + - 10251 + - uid: 9637 + components: + - type: Transform + pos: 19.5,-42.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10247 + - 10233 + - 10232 + - 10251 + - uid: 9638 + components: + - type: Transform + pos: 19.5,-41.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10247 + - 10233 + - 10232 + - 10251 + - uid: 9639 + components: + - type: Transform + pos: 9.5,-41.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10232 + - 10251 + - uid: 9640 + components: + - type: Transform + pos: 22.5,-56.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10247 + - 10233 + - 10246 + - 10239 + - uid: 9641 + components: + - type: Transform + pos: 23.5,-56.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10247 + - 10233 + - 10246 + - 10239 + - uid: 9642 + components: + - type: Transform + pos: 26.5,-58.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10246 + - 10239 + - 10245 + - 10241 + - uid: 9643 + components: + - type: Transform + pos: 26.5,-59.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10246 + - 10239 + - 10245 + - 10241 + - uid: 9644 + components: + - type: Transform + pos: 26.5,-61.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10246 + - 10239 + - 10245 + - 10241 + - uid: 9645 + components: + - type: Transform + pos: 18.5,-60.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10246 + - 10239 + - 10243 + - 10238 + - uid: 9646 + components: + - type: Transform + pos: 13.5,-64.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10242 + - 10237 + - 10243 + - 10238 + - uid: 9647 + components: + - type: Transform + pos: 18.5,-67.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10246 + - 10239 + - 10242 + - 10237 + - uid: 9648 + components: + - type: Transform + pos: 28.5,-62.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10245 + - 10241 + - 10240 + - 10244 + - uid: 9649 + components: + - type: Transform + pos: 26.5,-66.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10246 + - 10239 + - 10240 + - 10244 + - uid: 9650 + components: + - type: Transform + pos: 22.5,-70.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10246 + - 10239 - proto: Flare entities: - - uid: 1579 + - uid: 1380 components: - type: Transform - pos: 28.5,35.5 + pos: 38.5,-9.5 parent: 2 - - uid: 1626 + - uid: 1721 components: - type: Transform - pos: 28.5,35.5 + pos: 38.5,-9.5 parent: 2 - - uid: 1637 + - uid: 3296 components: - type: Transform - pos: 28.5,35.5 + pos: 38.5,-9.5 parent: 2 - - uid: 1639 + - uid: 3297 components: - type: Transform - pos: 28.5,35.5 + pos: 38.5,-9.5 parent: 2 - proto: FlashlightLantern entities: + - uid: 3563 + components: + - type: Transform + pos: 37.5,-12.5 + parent: 2 + - uid: 6347 + components: + - type: Transform + pos: 45.5,35.5 + parent: 2 + - uid: 6709 + components: + - type: Transform + pos: 34.5,-10.5 + parent: 2 + - uid: 6711 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 2 - uid: 7232 components: - type: Transform @@ -20497,36 +26149,40 @@ entities: - type: Transform pos: 46.5,21.5 parent: 2 + - uid: 8282 + components: + - type: Transform + pos: 27.5,26.5 + parent: 2 + - uid: 11169 + components: + - type: Transform + pos: 44.5,29.5 + parent: 2 + - uid: 11175 + components: + - type: Transform + pos: 45.5,29.5 + parent: 2 + - uid: 11519 + components: + - type: Transform + pos: 12.5,34.5 + parent: 2 +- proto: FloorChasmEntity + entities: + - uid: 1536 + components: + - type: Transform + pos: 8.5,34.5 + parent: 2 - proto: FloorDrain entities: - - uid: 2412 + - uid: 1521 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-12.5 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 2864 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,0.5 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 3164 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,9.5 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 7659 - components: - - type: Transform - pos: -0.5,6.5 + pos: 31.5,10.5 parent: 2 - type: Fixtures fixtures: {} @@ -20549,50 +26205,26 @@ entities: - type: Transform pos: 45.5,21.5 parent: 2 -- proto: FoodGoldenApple +- proto: FoodPlatePlastic entities: - - uid: 7735 + - uid: 10575 components: - type: Transform - pos: 62.5,4.5 - parent: 2 -- proto: FoodPacketCupRamenTrash + pos: 11.5,-29.5 + parent: 3564 +- proto: FoodPlateSmallPlastic entities: - - uid: 2052 + - uid: 10576 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.347336,13.694507 - parent: 2 - - uid: 2053 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.222336,13.202319 - parent: 2 -- proto: FoodPacketDanDanTrash + pos: 11.5,-29.5 + parent: 3564 +- proto: FoodTinMRETrash entities: - - uid: 2048 + - uid: 3850 components: - type: Transform - pos: 53.745773,12.007007 - parent: 2 - - uid: 2049 - components: - - type: Transform - pos: 52.5739,12.686694 - parent: 2 - - uid: 2050 - components: - - type: Transform - pos: 52.972336,12.405444 - parent: 2 -- proto: FrezonCanister - entities: - - uid: 6611 - components: - - type: Transform - pos: 22.5,42.5 + pos: 9.8373785,33.69837 parent: 2 - proto: GameMasterCircuitBoard entities: @@ -20601,28 +26233,51 @@ entities: - type: Transform pos: 30.5,52.5 parent: 2 +- proto: GasAnalyzer + entities: + - uid: 6695 + components: + - type: Transform + pos: 31.5,-10.5 + parent: 2 + - uid: 6696 + components: + - type: Transform + pos: 32.5,-10.5 + parent: 2 + - uid: 6697 + components: + - type: Transform + pos: 34.5,-10.5 + parent: 2 + - uid: 6698 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 2 + - uid: 8266 + components: + - type: Transform + pos: 27.5,26.5 + parent: 2 - proto: GasFilter entities: - - uid: 1703 + - uid: 536 components: - type: Transform - pos: 20.5,30.5 - parent: 2 - - uid: 1709 - components: - - type: Transform - pos: 20.5,29.5 - parent: 2 -- proto: GasFilterFlipped - entities: - - uid: 1712 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,32.5 + rot: -1.5707963267948966 rad + pos: 27.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 1749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-2.5 + parent: 2 +- proto: GasFilterFlipped + entities: - uid: 6608 components: - type: Transform @@ -20633,77 +26288,108 @@ entities: color: '#990000FF' - proto: GasMinerNitrogenStation entities: - - uid: 1597 + - uid: 619 components: - type: Transform - pos: 17.5,28.5 + pos: 28.5,0.5 parent: 2 + - uid: 9669 + components: + - type: Transform + pos: 13.5,-57.5 + parent: 3564 - proto: GasMinerOxygenStation entities: - - uid: 1656 + - uid: 546 components: - type: Transform - pos: 17.5,31.5 + pos: 22.5,0.5 parent: 2 + - uid: 9670 + components: + - type: Transform + pos: 11.5,-57.5 + parent: 3564 - proto: GasMixer entities: - - uid: 1695 + - uid: 308 components: - type: Transform - pos: 21.5,27.5 + pos: 52.5,3.5 + parent: 2 + - uid: 2605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-3.5 + parent: 2 + - uid: 7651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,29.5 parent: 2 - proto: GasMixerFlipped entities: - - uid: 684 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,36.5 - parent: 2 - - uid: 1479 + - uid: 52 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,25.5 + pos: 25.5,-4.5 parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 58 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-3.5 + parent: 2 + - uid: 4063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-10.5 + parent: 2 + - uid: 9702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-61.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasOutletInjector entities: - - uid: 693 + - uid: 1375 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,31.5 + pos: 27.5,-0.5 parent: 2 - - uid: 852 + - uid: 2857 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,28.5 + pos: 22.5,-4.5 parent: 2 - - uid: 1347 + - uid: 3107 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,28.5 + pos: 23.5,-0.5 parent: 2 - - uid: 1707 + - uid: 5153 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,30.5 + rot: 3.141592653589793 rad + pos: 27.5,-12.5 parent: 2 - proto: GasPassiveVent entities: - - uid: 35 + - uid: 42 components: - type: Transform - pos: 23.5,-4.5 - parent: 2 - - uid: 36 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-5.5 + rot: -1.5707963267948966 rad + pos: 27.5,0.5 parent: 2 - uid: 65 components: @@ -20711,48 +26397,68 @@ entities: rot: -1.5707963267948966 rad pos: 42.5,-2.5 parent: 2 - - uid: 794 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,36.5 - parent: 2 - - uid: 1655 + - uid: 168 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,27.5 + pos: 23.5,0.5 parent: 2 - - uid: 1700 + - uid: 2422 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,31.5 + pos: 23.5,-5.5 parent: 2 - - uid: 1702 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,31.5 - parent: 2 - - uid: 1717 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,27.5 - parent: 2 - - uid: 8274 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,1.5 - parent: 2 - - uid: 8275 + - uid: 2755 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,1.5 parent: 2 + - uid: 5732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-12.5 + parent: 2 + - uid: 7653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,29.5 + parent: 2 + - uid: 7809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,1.5 + parent: 2 + - uid: 9577 + components: + - type: Transform + pos: 11.5,-58.5 + parent: 3564 + - uid: 9692 + components: + - type: Transform + pos: 13.5,-58.5 + parent: 3564 + - uid: 9693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-63.5 + parent: 3564 + - uid: 11560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,25.5 + parent: 2 + - uid: 11564 + components: + - type: Transform + pos: 24.5,29.5 + parent: 2 - proto: GasPipeBend entities: - uid: 18 @@ -20770,17 +26476,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 51 + - uid: 40 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,-8.5 - parent: 2 - - uid: 52 - components: - - type: Transform - pos: 28.5,-1.5 + pos: 28.5,-4.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 74 components: - type: Transform @@ -20793,58 +26496,24 @@ entities: rot: 1.5707963267948966 rad pos: 40.5,3.5 parent: 2 - - uid: 659 + - uid: 229 components: - type: Transform - pos: 18.5,37.5 - parent: 2 - - uid: 687 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 811 - components: - - type: Transform - pos: 22.5,32.5 - parent: 2 - - uid: 848 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,30.5 + pos: 28.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 850 - components: - - type: Transform - pos: 21.5,31.5 - parent: 2 - - uid: 853 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,28.5 - parent: 2 - - uid: 903 - components: - - type: Transform - pos: 28.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 932 + - uid: 259 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,37.5 + pos: 26.5,0.5 + parent: 2 + - uid: 357 + components: + - type: Transform + pos: 25.5,0.5 parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - uid: 1334 components: - type: Transform @@ -20853,14 +26522,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 1335 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 1336 components: - type: Transform @@ -20869,12 +26530,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 1382 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,29.5 - parent: 2 - uid: 1404 components: - type: Transform @@ -20882,14 +26537,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1636 + - uid: 1511 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,23.5 + pos: 17.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#947507FF' - uid: 1640 components: - type: Transform @@ -20897,6 +26551,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 1644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 1650 components: - type: Transform @@ -20905,24 +26567,64 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 1719 + - uid: 1654 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,31.5 - parent: 2 - - uid: 1732 - components: - - type: Transform - pos: 26.5,33.5 + pos: 20.5,38.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2690 + - uid: 1658 + components: + - type: Transform + pos: 17.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 1661 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,33.5 + pos: 25.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1702 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 2746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -20958,21 +26660,29 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2870 + - uid: 2891 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,33.5 + rot: -1.5707963267948966 rad + pos: 18.5,12.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3023 + - uid: 2917 components: - type: Transform - pos: 18.5,22.5 + rot: 3.141592653589793 rad + pos: 34.5,21.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 3016 + components: + - type: Transform + pos: 17.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3084 components: - type: Transform @@ -20981,14 +26691,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3113 + - uid: 3112 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-6.5 + rot: 1.5707963267948966 rad + pos: 22.5,-2.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3114 components: - type: Transform @@ -20997,14 +26705,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3124 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3127 components: - type: Transform @@ -21013,11 +26713,10 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3191 + - uid: 3169 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,12.5 + pos: 34.5,35.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -21043,44 +26742,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3260 + - uid: 3207 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-10.5 + pos: 25.5,-9.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3265 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3286 - components: - - type: Transform - pos: 31.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3287 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3288 - components: - - type: Transform - pos: 28.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3310 components: - type: Transform @@ -21089,18 +26755,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3324 - components: - - type: Transform - pos: 18.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3355 + - uid: 3334 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,-8.5 + pos: 17.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -21118,13 +26777,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3421 - components: - - type: Transform - pos: 0.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3430 components: - type: Transform @@ -21235,14 +26887,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3570 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3616 components: - type: Transform @@ -21259,22 +26903,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3698 + - uid: 3715 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,22.5 + pos: 38.5,23.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3699 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3720 components: - type: Transform @@ -21283,6 +26919,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 3765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3803 components: - type: Transform @@ -21344,22 +26988,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3920 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3923 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3973 components: - type: Transform @@ -21376,14 +27004,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3990 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4011 components: - type: Transform @@ -21392,6 +27012,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4019 components: - type: Transform @@ -21400,6 +27028,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4048 components: - type: Transform @@ -21522,6 +27158,74 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6449 + components: + - type: Transform + pos: 19.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6459 + components: + - type: Transform + pos: 18.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6670 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6728 + components: + - type: Transform + pos: 35.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6749 + components: + - type: Transform + pos: 37.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7110 components: - type: Transform @@ -21534,8 +27238,723 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,15.5 parent: 2 + - uid: 7416 + components: + - type: Transform + pos: 57.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-61.5 + parent: 3564 + - uid: 9800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9841 + components: + - type: Transform + pos: 34.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9842 + components: + - type: Transform + pos: 34.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-59.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9885 + components: + - type: Transform + pos: 36.5,-59.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-60.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-33.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10179 + components: + - type: Transform + pos: 37.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10183 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-18.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-18.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-23.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-23.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11498 + components: + - type: Transform + pos: 41.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBendAlt1 + entities: + - uid: 693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 853 + components: + - type: Transform + pos: 56.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1526 + components: + - type: Transform + pos: 21.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2985 + components: + - type: Transform + pos: 17.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6443 + components: + - type: Transform + pos: 22.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7731 + components: + - type: Transform + pos: 61.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11229 + components: + - type: Transform + pos: 23.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11244 + components: + - type: Transform + pos: 27.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11269 + components: + - type: Transform + pos: 37.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11278 + components: + - type: Transform + pos: 42.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11440 + components: + - type: Transform + pos: 3.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11526 + components: + - type: Transform + pos: 38.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeBendAlt2 + entities: + - uid: 1471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8465 + components: + - type: Transform + pos: 61.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8486 + components: + - type: Transform + pos: 34.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8553 + components: + - type: Transform + pos: 57.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11488 + components: + - type: Transform + pos: 32.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeFourway entities: + - uid: 1599 + components: + - type: Transform + pos: 33.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2726 components: - type: Transform @@ -21543,20 +27962,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3006 - components: - - type: Transform - pos: 18.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3029 - components: - - type: Transform - pos: 37.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3037 components: - type: Transform @@ -21571,20 +27976,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3358 - components: - - type: Transform - pos: 18.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3397 - components: - - type: Transform - pos: 17.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3633 components: - type: Transform @@ -21592,13 +27983,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3709 - components: - - type: Transform - pos: 51.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3869 components: - type: Transform @@ -21606,13 +27990,462 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' -- proto: GasPipeSensorDistribution + - uid: 9917 + components: + - type: Transform + pos: 22.5,-54.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9919 + components: + - type: Transform + pos: 23.5,-53.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9961 + components: + - type: Transform + pos: 22.5,-50.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9962 + components: + - type: Transform + pos: 23.5,-49.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9963 + components: + - type: Transform + pos: 22.5,-46.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9964 + components: + - type: Transform + pos: 23.5,-45.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9965 + components: + - type: Transform + pos: 22.5,-38.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9966 + components: + - type: Transform + pos: 23.5,-37.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10032 + components: + - type: Transform + pos: 23.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10050 + components: + - type: Transform + pos: 13.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10055 + components: + - type: Transform + pos: 22.5,-42.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10081 + components: + - type: Transform + pos: 23.5,-33.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10082 + components: + - type: Transform + pos: 22.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10119 + components: + - type: Transform + pos: 23.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10125 + components: + - type: Transform + pos: 22.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeFourwayAlt2 entities: - - uid: 138 + - uid: 7564 + components: + - type: Transform + pos: 33.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8515 + components: + - type: Transform + pos: 33.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeManifold + entities: + - uid: 1351 + components: + - type: Transform + pos: 20.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1438 + components: + - type: Transform + pos: 30.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1565 + components: + - type: Transform + pos: 33.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1572 + components: + - type: Transform + pos: 23.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1669 + components: + - type: Transform + pos: 19.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1701 + components: + - type: Transform + pos: 29.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4013 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,29.5 + pos: 50.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5162 + components: + - type: Transform + pos: 16.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6647 + components: + - type: Transform + pos: 18.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6652 + components: + - type: Transform + pos: 14.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6668 + components: + - type: Transform + pos: 13.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7413 + components: + - type: Transform + pos: 21.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8300 + components: + - type: Transform + pos: 43.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8522 + components: + - type: Transform + pos: 37.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11257 + components: + - type: Transform + pos: 30.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11279 + components: + - type: Transform + pos: 42.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11430 + components: + - type: Transform + pos: 0.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11448 + components: + - type: Transform + pos: 3.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11535 + components: + - type: Transform + pos: 36.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeSensorDistribution + entities: + - uid: 1685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -21628,67 +28461,37 @@ entities: color: '#03FCD3FF' - proto: GasPipeSensorTEGHot entities: - - uid: 1737 + - uid: 1663 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,35.5 + rot: 3.141592653589793 rad + pos: 17.5,34.5 parent: 2 - type: AtmosPipeColor color: '#947507FF' - proto: GasPipeSensorWaste entities: - - uid: 890 + - uid: 1683 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,30.5 + rot: 3.141592653589793 rad + pos: 30.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - proto: GasPipeStraight entities: - - uid: 37 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-7.5 - parent: 2 - uid: 38 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-5.5 + rot: 1.5707963267948966 rad + pos: 24.5,-2.5 parent: 2 - uid: 39 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,-6.5 - parent: 2 - - uid: 40 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-4.5 - parent: 2 - - uid: 41 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-3.5 - parent: 2 - - uid: 42 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-2.5 - parent: 2 - - uid: 53 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-8.5 + pos: 22.5,-3.5 parent: 2 - uid: 67 components: @@ -21714,44 +28517,41 @@ entities: rot: 3.141592653589793 rad pos: 40.5,2.5 parent: 2 - - uid: 136 - components: - - type: Transform - pos: 27.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 137 - components: - - type: Transform - pos: 27.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 148 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 465 + - uid: 182 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,31.5 + pos: 25.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 466 + - uid: 290 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,30.5 + pos: 27.5,-1.5 + parent: 2 + - uid: 307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,2.5 + parent: 2 + - uid: 375 + components: + - type: Transform + pos: 23.5,-1.5 + parent: 2 + - uid: 382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,0.5 + parent: 2 + - uid: 425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 469 components: - type: Transform @@ -21767,14 +28567,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 586 + - uid: 532 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,34.5 + rot: 3.141592653589793 rad + pos: 25.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 655 components: - type: Transform @@ -21783,42 +28581,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 661 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 670 - components: - - type: Transform - pos: 26.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 685 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 701 - components: - - type: Transform - pos: 20.5,31.5 - parent: 2 - - uid: 703 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - uid: 709 components: - type: Transform @@ -21837,7 +28599,8 @@ entities: - uid: 767 components: - type: Transform - pos: 23.5,35.5 + rot: -1.5707963267948966 rad + pos: 24.5,35.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -21868,50 +28631,27 @@ entities: - uid: 821 components: - type: Transform - pos: 28.5,33.5 + rot: -1.5707963267948966 rad + pos: 25.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' + - uid: 822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 833 components: - type: Transform - pos: 28.5,32.5 + rot: -1.5707963267948966 rad + pos: 27.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 844 - components: - - type: Transform - pos: 28.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 845 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,32.5 - parent: 2 - - uid: 851 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 854 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,28.5 - parent: 2 - - uid: 855 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,30.5 - parent: 2 + color: '#990000FF' - uid: 869 components: - type: Transform @@ -21928,32 +28668,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 919 + - uid: 925 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,36.5 - parent: 2 - - uid: 963 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1001 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1020 - components: - - type: Transform - pos: 23.5,36.5 + pos: 18.5,38.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -21993,6 +28712,18 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 1346 + components: + - type: Transform + pos: 17.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 1402 + components: + - type: Transform + pos: 23.5,-6.5 + parent: 2 - uid: 1421 components: - type: Transform @@ -22021,6 +28752,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 1453 + components: + - type: Transform + pos: 17.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 1454 components: - type: Transform @@ -22029,6 +28767,27 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 1466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,29.5 + parent: 2 + - uid: 1468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1470 + components: + - type: Transform + pos: 34.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 1485 components: - type: Transform @@ -22037,6 +28796,46 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 1556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 1591 components: - type: Transform @@ -22044,35 +28843,34 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 1647 + - uid: 1595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1600 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,39.5 + pos: 24.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1630 + components: + - type: Transform + pos: 18.5,32.5 parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 1648 + - uid: 1642 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,39.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 1649 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,39.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 1659 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,39.5 + rot: 3.141592653589793 rad + pos: 18.5,35.5 parent: 2 - type: AtmosPipeColor color: '#947507FF' @@ -22084,109 +28882,18 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1693 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,27.5 - parent: 2 - - uid: 1694 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,27.5 - parent: 2 - - uid: 1696 + - uid: 1665 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,29.5 - parent: 2 - - uid: 1698 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,31.5 + pos: 28.5,-3.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 1699 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,26.5 - parent: 2 - - uid: 1701 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,30.5 - parent: 2 - - uid: 1704 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,27.5 - parent: 2 - - uid: 1705 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1706 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,29.5 - parent: 2 - - uid: 1710 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,28.5 - parent: 2 - - uid: 1718 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,28.5 - parent: 2 - - uid: 1725 - components: - - type: Transform - pos: 26.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1726 - components: - - type: Transform - pos: 26.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1733 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1734 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1735 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,33.5 + pos: 61.5,42.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -22197,30 +28904,19 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 1741 + - uid: 1750 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,33.5 + rot: 3.141592653589793 rad + pos: 20.5,37.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 1747 + - uid: 1852 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,31.5 - parent: 2 - - uid: 1748 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,31.5 - parent: 2 - - uid: 1799 - components: - - type: Transform - pos: 26.5,28.5 + rot: 3.141592653589793 rad + pos: 30.5,27.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -22276,6 +28972,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2166 + components: + - type: Transform + pos: 30.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2192 components: - type: Transform @@ -22308,6 +29011,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 2275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2276 components: - type: Transform @@ -22324,22 +29035,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2363 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2364 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2365 components: - type: Transform @@ -22347,21 +29042,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2384 - components: - - type: Transform - pos: 28.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2406 + - uid: 2403 components: - type: Transform rot: -1.5707963267948966 rad - pos: 32.5,29.5 + pos: 51.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 2560 components: - type: Transform @@ -22370,6 +29058,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 2684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2685 components: - type: Transform @@ -22402,38 +29098,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2691 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2692 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 2693 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,36.5 + pos: 30.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 2694 + color: '#0055CCFF' + - uid: 2695 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,37.5 + pos: 30.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 2698 components: - type: Transform @@ -22458,74 +29138,38 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2730 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2731 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2732 - components: - - type: Transform - pos: 27.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2733 - components: - - type: Transform - pos: 27.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2734 - components: - - type: Transform - pos: 27.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2737 - components: - - type: Transform - pos: 27.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2739 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2740 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2760 + - uid: 2744 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,38.5 + pos: 18.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#947507FF' + color: '#990000FF' + - uid: 2745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2765 components: - type: Transform @@ -22534,14 +29178,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2770 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 2771 components: - type: Transform @@ -22550,14 +29186,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2790 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 2797 components: - type: Transform @@ -22590,14 +29218,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2802 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2804 components: - type: Transform @@ -22903,30 +29523,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2879 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2880 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2881 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2882 components: - type: Transform @@ -22935,30 +29531,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2883 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2884 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2885 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 2888 components: - type: Transform @@ -22967,11 +29539,51 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2889 + - uid: 2894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2913 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,19.5 + pos: 36.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -22979,7 +29591,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,19.5 + pos: 27.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -22987,7 +29599,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,19.5 + pos: 26.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -22995,7 +29607,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,19.5 + pos: 25.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -23003,7 +29615,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,19.5 + pos: 24.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -23011,7 +29623,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,19.5 + pos: 23.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -23019,7 +29631,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,19.5 + pos: 22.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -23027,15 +29639,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2994 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,19.5 + pos: 21.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -23119,14 +29723,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3008 + - uid: 3005 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,18.5 + pos: 31.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 3009 components: - type: Transform @@ -23143,50 +29747,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3011 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3012 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3013 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3014 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3015 - components: - - type: Transform - pos: 18.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3016 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,19.5 + pos: 32.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -23214,84 +29779,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3021 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3022 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3024 - components: - - type: Transform - pos: 18.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3025 - components: - - type: Transform - pos: 18.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3027 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3028 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,22.5 + pos: 14.5,25.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 3030 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,22.5 + pos: 37.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 3031 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,21.5 + pos: 37.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3032 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3033 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3035 components: - type: Transform @@ -23313,13 +29822,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3041 - components: - - type: Transform - pos: 38.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3042 components: - type: Transform @@ -23471,13 +29973,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3086 - components: - - type: Transform - pos: 34.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3088 components: - type: Transform @@ -23494,13 +29989,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3091 - components: - - type: Transform - pos: 34.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3093 components: - type: Transform @@ -23539,69 +30027,18 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3103 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3104 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-6.5 + rot: 1.5707963267948966 rad + pos: 26.5,-2.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3107 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3109 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-6.5 + rot: 3.141592653589793 rad + pos: 26.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3110 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3111 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3112 - components: - - type: Transform - pos: 34.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3115 components: - type: Transform @@ -23642,10 +30079,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3129 + - uid: 3124 components: - type: Transform - pos: 34.5,-8.5 + rot: 3.141592653589793 rad + pos: 13.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -23689,6 +30127,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 3136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-2.5 + parent: 2 - uid: 3137 components: - type: Transform @@ -23697,6 +30141,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 3138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3139 components: - type: Transform @@ -23729,14 +30181,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3147 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3148 components: - type: Transform @@ -23777,14 +30221,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3155 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3156 components: - type: Transform @@ -23856,14 +30292,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3169 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3170 components: - type: Transform @@ -23880,14 +30308,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3173 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3174 components: - type: Transform @@ -23907,8 +30327,8 @@ entities: - uid: 3176 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,12.5 + rot: -1.5707963267948966 rad + pos: 33.5,30.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -24043,13 +30463,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3207 - components: - - type: Transform - pos: 32.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3208 components: - type: Transform @@ -24174,14 +30587,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3235 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3236 components: - type: Transform @@ -24214,20 +30619,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3248 - components: - - type: Transform - pos: 34.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3250 - components: - - type: Transform - pos: 34.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3251 components: - type: Transform @@ -24268,14 +30659,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3256 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3257 components: - type: Transform @@ -24292,170 +30675,19 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3261 + - uid: 3276 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3262 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3267 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3268 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3269 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3270 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3271 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3278 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3279 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3280 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3289 - components: - - type: Transform pos: 28.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3290 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3291 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3293 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3294 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3295 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3296 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3297 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3298 components: - type: Transform rot: 3.141592653589793 rad - pos: 22.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3299 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3301 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-7.5 + pos: 28.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -24595,46 +30827,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3329 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3331 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3332 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3334 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3335 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3336 components: - type: Transform @@ -24691,94 +30883,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3347 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3349 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3352 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3353 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3354 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3356 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3357 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3359 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3361 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3362 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3363 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3365 components: - type: Transform @@ -24787,14 +30891,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3366 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3368 components: - type: Transform @@ -24811,22 +30907,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3371 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3372 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3373 components: - type: Transform @@ -25833,77 +31913,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3566 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3567 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3568 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3569 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3572 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3573 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3574 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3575 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3576 - components: - - type: Transform - pos: 40.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3578 components: - type: Transform @@ -26444,16 +32453,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3667 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 46.5,6.5 - parent: 2 - - type: Physics - canCollide: True - bodyType: Dynamic - uid: 3668 components: - type: Transform @@ -26593,8 +32592,8 @@ entities: - uid: 3694 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,22.5 + rot: 3.141592653589793 rad + pos: 38.5,22.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -26602,31 +32601,7 @@ entities: components: - type: Transform rot: -1.5707963267948966 rad - pos: 41.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3696 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3697 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3700 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,21.5 + pos: 40.5,23.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -26638,14 +32613,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3702 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3706 components: - type: Transform @@ -26670,75 +32637,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3710 - components: - - type: Transform - pos: 37.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3711 - components: - - type: Transform - pos: 37.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3712 - components: - - type: Transform - pos: 37.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3713 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3714 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3715 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3717 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3718 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3719 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3723 components: - type: Transform @@ -26827,62 +32725,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3739 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3740 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3741 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3742 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3743 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3744 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3745 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3748 components: - type: Transform @@ -26891,14 +32733,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3753 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3754 components: - type: Transform @@ -26915,38 +32749,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3758 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3759 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3760 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3761 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3762 components: - type: Transform @@ -26955,38 +32757,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3763 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3764 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3765 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3766 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3768 components: - type: Transform @@ -27075,14 +32845,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3784 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3785 components: - type: Transform @@ -27094,7 +32856,8 @@ entities: - uid: 3789 components: - type: Transform - pos: 56.5,32.5 + rot: 3.141592653589793 rad + pos: 33.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -27353,14 +33116,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3850 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3851 components: - type: Transform @@ -27605,14 +33360,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3900 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3903 components: - type: Transform @@ -27708,30 +33455,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3919 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3921 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3922 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3925 components: - type: Transform @@ -27746,20 +33469,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3927 - components: - - type: Transform - pos: 49.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3928 - components: - - type: Transform - pos: 49.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3930 components: - type: Transform @@ -27928,22 +33637,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3959 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3960 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3961 components: - type: Transform @@ -28032,14 +33725,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3984 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3985 components: - type: Transform @@ -28072,22 +33757,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3991 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3992 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3993 components: - type: Transform @@ -28112,17 +33781,19 @@ entities: - uid: 3996 components: - type: Transform - pos: 60.5,38.5 + rot: 1.5707963267948966 rad + pos: 40.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3997 components: - type: Transform - pos: 60.5,39.5 + rot: 3.141592653589793 rad + pos: 43.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 3998 components: - type: Transform @@ -28130,20 +33801,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3999 - components: - - type: Transform - pos: 60.5,40.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4000 - components: - - type: Transform - pos: 60.5,42.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4012 components: - type: Transform @@ -28151,34 +33808,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 4013 - components: - - type: Transform - pos: 60.5,41.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4014 - components: - - type: Transform - pos: 61.5,42.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4016 - components: - - type: Transform - pos: 60.5,43.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4020 - components: - - type: Transform - pos: 60.5,44.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4021 components: - type: Transform @@ -28221,13 +33850,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 4033 - components: - - type: Transform - pos: 61.5,50.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 4034 components: - type: Transform @@ -29056,91 +34678,469 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4229 components: - type: Transform - pos: 13.5,24.5 + rot: 1.5707963267948966 rad + pos: 35.5,18.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 4230 components: - type: Transform - pos: 13.5,23.5 + rot: 1.5707963267948966 rad + pos: 20.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,18.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 4234 + - uid: 4233 components: - type: Transform - pos: 13.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4235 - components: - - type: Transform - pos: 13.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4236 - components: - - type: Transform - pos: 13.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4237 - components: - - type: Transform - pos: 14.5,22.5 + pos: 17.5,19.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 4238 components: - type: Transform - pos: 14.5,24.5 + rot: 1.5707963267948966 rad + pos: 19.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 4239 components: - type: Transform - pos: 14.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4240 - components: - - type: Transform - pos: 14.5,26.5 + rot: 1.5707963267948966 rad + pos: 29.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 4241 components: - type: Transform - pos: 14.5,25.5 + rot: 3.141592653589793 rad + pos: 17.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4244 + - uid: 4716 components: - type: Transform - pos: 13.5,29.5 + rot: 3.141592653589793 rad + pos: 57.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4246 + color: '#0055CCFF' + - uid: 4717 components: - type: Transform rot: -1.5707963267948966 rad + pos: 44.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-11.5 + parent: 2 + - uid: 5163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5217 + components: + - type: Transform pos: 14.5,22.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 5734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-11.5 + parent: 2 + - uid: 5744 + components: + - type: Transform + pos: 14.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6672 + components: + - type: Transform + pos: 43.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6847 + components: + - type: Transform + pos: 56.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7106 components: - type: Transform @@ -29154,43 +35154,4418 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,15.5 parent: 2 - - uid: 8272 + - uid: 7652 components: - type: Transform rot: 3.141592653589793 rad - pos: 51.5,2.5 + pos: 30.5,25.5 parent: 2 - - uid: 8273 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7654 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,2.5 + rot: -1.5707963267948966 rad + pos: 25.5,29.5 parent: 2 -- proto: GasPipeTJunction - entities: - - uid: 464 + - uid: 7655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,29.5 + parent: 2 + - uid: 7660 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,33.5 + pos: 30.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,23.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 689 + - uid: 7663 components: - type: Transform - pos: 24.5,23.5 + rot: 3.141592653589793 rad + pos: 29.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,2.5 + parent: 2 + - uid: 8284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 690 + - uid: 8419 + components: + - type: Transform + pos: 14.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8447 + components: + - type: Transform + pos: 54.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8483 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,25.5 + pos: 36.5,31.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-59.5 + parent: 3564 + - uid: 9695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-59.5 + parent: 3564 + - uid: 9703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-61.5 + parent: 3564 + - uid: 9706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-62.5 + parent: 3564 + - uid: 9707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-60.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-60.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-60.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-60.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9711 + components: + - type: Transform + pos: 13.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9797 + components: + - type: Transform + pos: 13.5,-64.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9799 + components: + - type: Transform + pos: 13.5,-66.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-60.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-60.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9819 + components: + - type: Transform + pos: 27.5,-68.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9822 + components: + - type: Transform + pos: 21.5,-68.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9823 + components: + - type: Transform + pos: 25.5,-68.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9831 + components: + - type: Transform + pos: 22.5,-62.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9839 + components: + - type: Transform + pos: 34.5,-68.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9855 + components: + - type: Transform + pos: 23.5,-66.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9856 + components: + - type: Transform + pos: 23.5,-65.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9857 + components: + - type: Transform + pos: 23.5,-64.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9858 + components: + - type: Transform + pos: 23.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9859 + components: + - type: Transform + pos: 23.5,-62.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9862 + components: + - type: Transform + pos: 22.5,-59.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-66.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-65.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-64.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-62.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9875 + components: + - type: Transform + pos: 23.5,-59.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9876 + components: + - type: Transform + pos: 23.5,-60.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9877 + components: + - type: Transform + pos: 23.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-61.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-60.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-59.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-59.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-59.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-59.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-59.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-59.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-59.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9915 + components: + - type: Transform + pos: 22.5,-56.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9916 + components: + - type: Transform + pos: 22.5,-55.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9918 + components: + - type: Transform + pos: 22.5,-53.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9920 + components: + - type: Transform + pos: 23.5,-54.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9921 + components: + - type: Transform + pos: 23.5,-55.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9922 + components: + - type: Transform + pos: 23.5,-56.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-54.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-54.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-54.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-53.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-53.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-53.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-53.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-53.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-53.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-53.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-54.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-54.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-54.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-54.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-37.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-37.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-37.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-38.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-38.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-38.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-38.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-38.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9975 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-38.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-38.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9977 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-37.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-37.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-37.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-37.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-45.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-45.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-45.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-46.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-46.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-46.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-46.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-46.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-46.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9990 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-46.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-45.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-45.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-45.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-45.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-49.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-49.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-49.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-50.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-50.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-50.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-50.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-49.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-49.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-49.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-49.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-50.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-50.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-50.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10009 + components: + - type: Transform + pos: 22.5,-51.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10010 + components: + - type: Transform + pos: 23.5,-50.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10011 + components: + - type: Transform + pos: 23.5,-51.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10024 + components: + - type: Transform + pos: 22.5,-49.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10025 + components: + - type: Transform + pos: 22.5,-47.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10026 + components: + - type: Transform + pos: 22.5,-45.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10027 + components: + - type: Transform + pos: 23.5,-46.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10028 + components: + - type: Transform + pos: 23.5,-47.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10033 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10039 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10041 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10048 + components: + - type: Transform + pos: 10.5,-40.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10049 + components: + - type: Transform + pos: 10.5,-39.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10051 + components: + - type: Transform + pos: 13.5,-39.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10052 + components: + - type: Transform + pos: 13.5,-40.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10053 + components: + - type: Transform + pos: 13.5,-42.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10054 + components: + - type: Transform + pos: 13.5,-43.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-42.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-42.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10060 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-42.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-42.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-42.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-42.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10064 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-42.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-42.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-42.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10067 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-42.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10068 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-42.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10069 + components: + - type: Transform + pos: 23.5,-42.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10070 + components: + - type: Transform + pos: 23.5,-43.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10071 + components: + - type: Transform + pos: 22.5,-43.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10072 + components: + - type: Transform + pos: 22.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10074 + components: + - type: Transform + pos: 22.5,-39.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10076 + components: + - type: Transform + pos: 23.5,-39.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10077 + components: + - type: Transform + pos: 23.5,-38.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10078 + components: + - type: Transform + pos: 22.5,-37.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10083 + components: + - type: Transform + pos: 22.5,-35.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10084 + components: + - type: Transform + pos: 23.5,-35.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10085 + components: + - type: Transform + pos: 23.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10086 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-33.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10087 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-33.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-33.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10089 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10091 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-33.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-33.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-33.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-33.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10109 + components: + - type: Transform + pos: 13.5,-33.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10110 + components: + - type: Transform + pos: 18.5,-32.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10117 + components: + - type: Transform + pos: 22.5,-33.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10118 + components: + - type: Transform + pos: 22.5,-30.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10120 + components: + - type: Transform + pos: 22.5,-31.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10121 + components: + - type: Transform + pos: 23.5,-31.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10122 + components: + - type: Transform + pos: 23.5,-30.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10123 + components: + - type: Transform + pos: 22.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10126 + components: + - type: Transform + pos: 22.5,-27.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10127 + components: + - type: Transform + pos: 22.5,-26.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10205 + components: + - type: Transform + pos: 22.5,-24.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10206 + components: + - type: Transform + pos: 22.5,-23.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10207 + components: + - type: Transform + pos: 22.5,-22.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10208 + components: + - type: Transform + pos: 22.5,-20.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10209 + components: + - type: Transform + pos: 22.5,-19.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10210 + components: + - type: Transform + pos: 25.5,-19.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10211 + components: + - type: Transform + pos: 25.5,-20.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10212 + components: + - type: Transform + pos: 25.5,-22.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-23.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10216 + components: + - type: Transform + pos: 23.5,-24.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10217 + components: + - type: Transform + pos: 23.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10218 + components: + - type: Transform + pos: 23.5,-26.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10219 + components: + - type: Transform + pos: 23.5,-27.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11452 + components: + - type: Transform + pos: 28.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11453 + components: + - type: Transform + pos: 28.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,27.5 + parent: 2 + - uid: 11562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,26.5 + parent: 2 +- proto: GasPipeStraightAlt1 + entities: + - uid: 256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 804 + components: + - type: Transform + pos: 15.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 852 + components: + - type: Transform + pos: 61.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 854 + components: + - type: Transform + pos: 61.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1455 + components: + - type: Transform + pos: 15.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1457 + components: + - type: Transform + pos: 61.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1527 + components: + - type: Transform + pos: 61.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1566 + components: + - type: Transform + pos: 23.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1681 + components: + - type: Transform + pos: 61.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1682 + components: + - type: Transform + pos: 61.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1717 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1755 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1900 + components: + - type: Transform + pos: 61.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2068 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2407 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2671 + components: + - type: Transform + pos: 19.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2674 + components: + - type: Transform + pos: 18.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2890 + components: + - type: Transform + pos: 17.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2892 + components: + - type: Transform + pos: 17.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3015 + components: + - type: Transform + pos: 17.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4237 + components: + - type: Transform + pos: 13.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4242 + components: + - type: Transform + pos: 17.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6444 + components: + - type: Transform + pos: 22.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6461 + components: + - type: Transform + pos: 19.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6462 + components: + - type: Transform + pos: 19.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7355 + components: + - type: Transform + pos: 19.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7386 + components: + - type: Transform + pos: 19.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10340 + components: + - type: Transform + pos: 30.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11270 + components: + - type: Transform + pos: 37.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11271 + components: + - type: Transform + pos: 37.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11272 + components: + - type: Transform + pos: 37.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeStraightAlt2 + entities: + - uid: 152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3960 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3990 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8459 + components: + - type: Transform + pos: 61.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8460 + components: + - type: Transform + pos: 61.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8461 + components: + - type: Transform + pos: 61.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8462 + components: + - type: Transform + pos: 61.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8463 + components: + - type: Transform + pos: 61.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8464 + components: + - type: Transform + pos: 61.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8555 + components: + - type: Transform + pos: 57.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8556 + components: + - type: Transform + pos: 57.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8557 + components: + - type: Transform + pos: 57.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunction + entities: + - uid: 317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,3.5 + parent: 2 + - uid: 719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 803 components: - type: Transform @@ -29199,22 +39574,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 860 + - uid: 932 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,33.5 + rot: 1.5707963267948966 rad + pos: 18.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 867 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#947507FF' - uid: 1286 components: - type: Transform @@ -29231,14 +39598,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1378 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 1429 components: - type: Transform @@ -29247,20 +39606,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1446 + - uid: 1483 components: - type: Transform - pos: 22.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1528 - components: - - type: Transform - pos: 27.5,30.5 + rot: -1.5707963267948966 rad + pos: 30.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 1597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1619 components: - type: Transform @@ -29269,20 +39630,74 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1658 + - uid: 1639 components: - type: Transform - pos: 18.5,35.5 + rot: -1.5707963267948966 rad + pos: 17.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1646 + components: + - type: Transform + pos: 18.5,36.5 parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 1766 + - uid: 1651 components: - type: Transform - pos: 20.5,33.5 + pos: 14.5,38.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 1652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1670 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1687 + components: + - type: Transform + pos: 27.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2003 components: - type: Transform @@ -29291,28 +39706,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2135 + - uid: 2270 components: - type: Transform - pos: 16.5,39.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 2166 - components: - - type: Transform - pos: 14.5,38.5 + rot: 3.141592653589793 rad + pos: 51.5,25.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2438 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2523 components: - type: Transform @@ -29321,6 +39722,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 2673 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2688 components: - type: Transform @@ -29329,22 +39737,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2696 + - uid: 2747 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,38.5 + rot: 3.141592653589793 rad + pos: 18.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2736 + - uid: 2749 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,24.5 + rot: 3.141592653589793 rad + pos: 16.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 2808 components: - type: Transform @@ -29408,57 +39816,27 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2886 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2887 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2890 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2892 - components: - - type: Transform - pos: 32.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2985 - components: - - type: Transform - pos: 23.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2986 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3005 + - uid: 2893 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,19.5 + pos: 37.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -29470,6 +39848,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 3028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 3044 components: - type: Transform @@ -29541,6 +39935,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 3086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3102 components: - type: Transform @@ -29549,14 +39951,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3116 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3117 components: - type: Transform @@ -29588,6 +39982,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 3173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3181 components: - type: Transform @@ -29596,6 +39998,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 3191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3199 components: - type: Transform @@ -29641,50 +40051,10 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3259 + - uid: 3230 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3264 - components: - - type: Transform - pos: 29.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3276 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3283 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3284 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3300 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-6.5 + pos: 28.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -29703,14 +40073,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3330 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3333 components: - type: Transform @@ -29719,22 +40081,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3337 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3340 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3345 components: - type: Transform @@ -29743,22 +40089,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3346 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3364 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3367 components: - type: Transform @@ -29806,6 +40136,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 3421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3429 components: - type: Transform @@ -29900,29 +40238,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3565 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3571 - components: - - type: Transform - pos: 40.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3577 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3589 components: - type: Transform @@ -29992,14 +40307,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3693 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3703 components: - type: Transform @@ -30015,22 +40322,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3716 + - uid: 3713 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,23.5 + rot: -1.5707963267948966 rad + pos: 43.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3722 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 3747 components: - type: Transform @@ -30039,27 +40338,10 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3750 + - uid: 3764 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3756 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3767 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,29.5 + pos: 54.5,31.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -30216,14 +40498,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3950 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3972 components: - type: Transform @@ -30232,13 +40506,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3982 - components: - - type: Transform - pos: 57.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3983 components: - type: Transform @@ -30247,6 +40514,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 4000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4009 + components: + - type: Transform + pos: 27.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 4017 components: - type: Transform @@ -30279,6 +40561,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 4117 components: - type: Transform @@ -30302,30 +40600,18 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4232 + - uid: 4203 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,21.5 + pos: 26.5,-10.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4233 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4243 + - uid: 4204 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,28.5 + pos: 27.5,-10.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 4247 components: - type: Transform @@ -30334,19 +40620,42 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 4248 + - uid: 4667 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,33.5 + rot: -1.5707963267948966 rad + pos: 34.5,29.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 4694 + - uid: 5112 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,34.5 + pos: 33.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6577 + components: + - type: Transform + pos: 13.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,25.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -30356,6 +40665,61 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,14.5 parent: 2 + - uid: 6716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6849 + components: + - type: Transform + pos: 30.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7108 components: - type: Transform @@ -30368,38 +40732,540 @@ entities: rot: 3.141592653589793 rad pos: 9.5,14.5 parent: 2 -- proto: GasPort - entities: - - uid: 58 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-8.5 - parent: 2 - - uid: 60 + - uid: 7649 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-1.5 + pos: 29.5,30.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9699 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-62.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9700 + components: + - type: Transform + pos: 12.5,-62.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-62.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-60.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-65.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9813 + components: + - type: Transform + pos: 21.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-60.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9821 + components: + - type: Transform + pos: 25.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9829 + components: + - type: Transform + pos: 25.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-61.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9833 + components: + - type: Transform + pos: 27.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9840 + components: + - type: Transform + pos: 27.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-57.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-61.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-57.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-60.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-52.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-52.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-48.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-44.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-44.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-48.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-36.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-36.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-40.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-40.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-32.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-32.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-28.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-28.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10166 + components: + - type: Transform + pos: 27.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10171 + components: + - type: Transform + pos: 32.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10184 + components: + - type: Transform + pos: 32.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10185 + components: + - type: Transform + pos: 27.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-21.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-21.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunctionAlt1 + entities: + - uid: 1439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3268 + components: + - type: Transform + pos: 19.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeTJunctionAlt2 + entities: + - uid: 423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8436 + components: + - type: Transform + pos: 49.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: - uid: 64 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,3.5 parent: 2 - - uid: 1346 + - uid: 1381 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,36.5 + rot: -1.5707963267948966 rad + pos: 27.5,-4.5 parent: 2 - - uid: 1598 + - uid: 1653 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,37.5 + rot: -1.5707963267948966 rad + pos: 19.5,33.5 parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 1662 components: - type: Transform @@ -30408,49 +41274,110 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 1663 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,39.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 1757 + - uid: 1704 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,25.5 + pos: 28.5,-3.5 parent: 2 - - uid: 8268 - components: - - type: Transform - pos: 51.5,4.5 - parent: 2 - - uid: 8269 + - uid: 2267 components: - type: Transform pos: 52.5,4.5 parent: 2 -- proto: GasPressurePump - entities: - - uid: 56 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-8.5 - parent: 2 - - uid: 57 + - uid: 2863 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,-1.5 + pos: 33.5,8.5 parent: 2 + - uid: 4008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-9.5 + parent: 2 + - uid: 4662 + components: + - type: Transform + pos: 27.5,30.5 + parent: 2 + - uid: 5851 + components: + - type: Transform + pos: 28.5,-9.5 + parent: 2 + - uid: 6341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-4.5 + parent: 2 + - uid: 6710 + components: + - type: Transform + pos: 51.5,4.5 + parent: 2 + - uid: 7650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,29.5 + parent: 2 + - uid: 7821 + components: + - type: Transform + pos: 53.5,4.5 + parent: 2 + - uid: 11502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-10.5 + parent: 2 +- proto: GasPressurePump + entities: - uid: 63 components: - type: Transform pos: 40.5,-0.5 parent: 2 + - uid: 297 + components: + - type: Transform + pos: 26.5,-2.5 + parent: 2 + - uid: 1430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-4.5 + parent: 2 + - uid: 1475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-3.5 + parent: 2 + - uid: 1664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1760 + components: + - type: Transform + pos: 25.5,-2.5 + parent: 2 + - uid: 5850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-10.5 + parent: 2 - uid: 6612 components: - type: Transform @@ -30459,88 +41386,133 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8270 + - uid: 6740 components: - type: Transform - pos: 51.5,3.5 - parent: 2 - - uid: 8271 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,3.5 - parent: 2 -- proto: GasThermoMachineFreezer - entities: - - uid: 682 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,21.5 + pos: 25.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 7823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,3.5 + parent: 2 + - uid: 9696 + components: + - type: Transform + pos: 11.5,-60.5 + parent: 3564 + - uid: 9697 + components: + - type: Transform + pos: 13.5,-60.5 + parent: 3564 + - uid: 9704 + components: + - type: Transform + pos: 15.5,-61.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPressureRegulator + entities: + - uid: 11563 + components: + - type: Transform + pos: 24.5,28.5 + parent: 2 + - type: GasPressureRegulator + threshold: 95000 +- proto: GasThermoMachineFreezer + entities: + - uid: 255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4065 + components: + - type: Transform + pos: 26.5,-9.5 + parent: 2 - uid: 7112 components: - type: Transform pos: 9.5,16.5 parent: 2 -- proto: GasThermoMachineHeater - entities: - - uid: 1524 + - uid: 9674 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,21.5 + pos: 12.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasThermoMachineHeater + entities: + - uid: 1707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,3.5 + parent: 2 + - uid: 6764 + components: + - type: Transform + pos: 27.5,-9.5 + parent: 2 + - uid: 9673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasValve entities: - - uid: 54 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-8.5 - parent: 2 - - uid: 55 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-1.5 - parent: 2 - uid: 62 components: - type: Transform pos: 40.5,-1.5 parent: 2 - - uid: 795 + - uid: 1590 components: - type: Transform - pos: 21.5,22.5 + rot: 1.5707963267948966 rad + pos: 26.5,29.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1561 + - uid: 2759 components: - type: Transform - pos: 22.5,22.5 + rot: -1.5707963267948966 rad + pos: 19.5,36.5 parent: 2 + - type: GasValve + open: False - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1592 + color: '#990000FF' + - uid: 2768 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,38.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1752 - components: - - type: Transform - pos: 18.5,34.5 - parent: 2 + - type: GasValve + open: False - type: AtmosPipeColor color: '#990000FF' - proto: GasVentPump @@ -30553,7 +41525,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6556 + - 8509 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1309 @@ -30567,6 +41539,38 @@ entities: - 6556 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 1579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5864 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1934 + components: + - type: Transform + pos: 29.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - type: DeviceNetwork + deviceLists: + - 6559 + - uid: 2694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - type: DeviceNetwork + deviceLists: + - 1602 - uid: 2725 components: - type: Transform @@ -30578,28 +41582,16 @@ entities: - 6555 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2728 + - uid: 2760 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,22.5 + pos: 30.5,31.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 6553 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2729 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,25.5 - parent: 2 - type: DeviceNetwork deviceLists: - - 6553 - - type: AtmosPipeColor - color: '#0055CCFF' + - 1602 - uid: 2826 components: - type: Transform @@ -30607,7 +41599,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6557 + - 5210 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2827 @@ -30617,7 +41609,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6557 + - 5210 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2828 @@ -30627,7 +41619,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6557 + - 5210 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2849 @@ -30682,29 +41674,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6559 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2893 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,18.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6552 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2983 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,18.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6552 + - 8532 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3065 @@ -30729,16 +41699,6 @@ entities: - 6572 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3072 - components: - - type: Transform - pos: 17.5,22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6551 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3075 components: - type: Transform @@ -30758,7 +41718,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6548 + - 3162 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3119 @@ -30772,16 +41732,6 @@ entities: - 7434 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3128 - components: - - type: Transform - pos: 34.5,-6.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6563 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3146 components: - type: Transform @@ -30789,7 +41739,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6548 + - 3162 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3185 @@ -30811,7 +41761,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6561 + - 56 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3244 @@ -30824,38 +41774,6 @@ entities: - 6564 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3281 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-9.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6562 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3282 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-9.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6562 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3285 - components: - - type: Transform - pos: 22.5,-3.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6562 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3323 components: - type: Transform @@ -30864,18 +41782,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6561 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3350 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 8241 + - 56 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3370 @@ -31028,27 +41935,6 @@ entities: - 6542 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3563 - components: - - type: Transform - pos: 38.5,-9.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6542 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3564 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-12.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6542 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3610 components: - type: Transform @@ -31146,16 +42032,6 @@ entities: - 6529 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3731 - components: - - type: Transform - pos: 41.5,24.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6529 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3746 components: - type: Transform @@ -31301,11 +42177,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3929 + - uid: 3927 components: - type: Transform rot: 3.141592653589793 rad - pos: 49.5,0.5 + pos: 49.5,2.5 parent: 2 - type: DeviceNetwork deviceLists: @@ -31375,15 +42251,23 @@ entities: - 2968 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 3999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - type: DeviceNetwork + deviceLists: + - 6529 - uid: 4010 components: - type: Transform rot: -1.5707963267948966 rad pos: 61.5,45.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8220 - type: AtmosPipeColor color: '#0055CCFF' - uid: 4043 @@ -31392,9 +42276,6 @@ entities: rot: -1.5707963267948966 rad pos: 61.5,51.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8220 - type: AtmosPipeColor color: '#0055CCFF' - uid: 4051 @@ -31458,42 +42339,604 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6553 + - 8509 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4228 + - uid: 6463 + components: + - type: Transform + pos: 17.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8241 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6643 components: - type: Transform rot: 1.5707963267948966 rad + pos: 16.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8542 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8538 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6654 + components: + - type: Transform + rot: 3.141592653589793 rad pos: 13.5,21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 6550 + - 8538 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4242 + - uid: 6659 components: - type: Transform - pos: 14.5,27.5 + pos: 13.5,28.5 parent: 2 - type: DeviceNetwork deviceLists: - - 6550 + - 6614 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5864 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5864 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5864 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - type: DeviceNetwork + deviceLists: + - 8532 + - uid: 8508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - type: DeviceNetwork + deviceLists: + - 8532 + - uid: 8545 + components: + - type: Transform + pos: 12.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - type: DeviceNetwork + deviceLists: + - 7434 + - uid: 8559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - type: DeviceNetwork + deviceLists: + - 6527 + - uid: 9807 + components: + - type: Transform + pos: 13.5,-61.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10238 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-65.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10237 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-69.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10239 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9836 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-69.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10240 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-69.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10240 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-69.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10239 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-61.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10239 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-57.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10239 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-61.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10241 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-61.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10241 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9926 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-52.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-53.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-53.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-49.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-45.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-37.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-49.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-45.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-37.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-33.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-48.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-44.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-36.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10029 + components: + - type: Transform + pos: 13.5,-38.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10232 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-44.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10232 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10031 + components: + - type: Transform + pos: 10.5,-38.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10232 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10056 + components: + - type: Transform + pos: 14.5,-40.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10232 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-40.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10094 + components: + - type: Transform + pos: 18.5,-31.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-28.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-32.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10132 + components: + - type: Transform + pos: 19.5,-28.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10236 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10133 + components: + - type: Transform + pos: 14.5,-28.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10236 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10134 + components: + - type: Transform + pos: 9.5,-28.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10236 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-30.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10234 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-30.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10234 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-30.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10234 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-21.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10235 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-18.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10235 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8236 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7434 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11454 + components: + - type: Transform + pos: 28.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3162 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5864 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6563 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6563 - type: AtmosPipeColor color: '#0055CCFF' - proto: GasVentScrubber entities: - - uid: 925 - components: - - type: Transform - pos: 17.5,39.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6555 - - type: AtmosPipeColor - color: '#990000FF' - uid: 1278 components: - type: Transform @@ -31502,7 +42945,18 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6556 + - 8509 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6524 - type: AtmosPipeColor color: '#990000FF' - uid: 1554 @@ -31516,6 +42970,34 @@ entities: - 6555 - type: AtmosPipeColor color: '#990000FF' + - uid: 1558 + components: + - type: Transform + pos: 30.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8509 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1624 + components: + - type: Transform + pos: 17.5,39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6555 + - type: AtmosPipeColor + color: '#990000FF' - uid: 1629 components: - type: Transform @@ -31527,28 +43009,60 @@ entities: - 6165 - type: AtmosPipeColor color: '#990000FF' - - uid: 2738 + - uid: 1752 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,24.5 + pos: 29.5,31.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 6553 - type: AtmosPipeColor color: '#990000FF' - - uid: 2741 + - type: DeviceNetwork + deviceLists: + - 1602 + - uid: 1758 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,22.5 + pos: 29.5,22.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 6553 - type: AtmosPipeColor color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 1602 + - uid: 2073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 6526 + - uid: 2464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 6523 + - uid: 2802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 7434 - uid: 2874 components: - type: Transform @@ -31557,38 +43071,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6559 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2891 - components: - - type: Transform - pos: 35.5,19.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6552 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2984 - components: - - type: Transform - pos: 22.5,19.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6552 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3007 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,18.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6551 + - 8532 - type: AtmosPipeColor color: '#990000FF' - uid: 3038 @@ -31635,34 +43118,15 @@ entities: - 8222 - type: AtmosPipeColor color: '#990000FF' - - uid: 3082 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6563 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3092 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-6.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6563 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3094 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,0.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 6563 - type: AtmosPipeColor color: '#990000FF' - uid: 3097 @@ -31683,7 +43147,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6548 + - 3162 - type: AtmosPipeColor color: '#990000FF' - uid: 3118 @@ -31705,7 +43169,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6548 + - 3162 - type: AtmosPipeColor color: '#990000FF' - uid: 3145 @@ -31715,7 +43179,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6548 + - 3162 - type: AtmosPipeColor color: '#990000FF' - uid: 3184 @@ -31761,36 +43225,6 @@ entities: - 6564 - type: AtmosPipeColor color: '#990000FF' - - uid: 3263 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6562 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3266 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-5.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6562 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3277 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3315 components: - type: Transform @@ -31799,7 +43233,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6561 + - 56 - type: AtmosPipeColor color: '#990000FF' - uid: 3316 @@ -31820,7 +43254,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6561 + - 56 - type: AtmosPipeColor color: '#990000FF' - uid: 3348 @@ -31873,9 +43307,6 @@ entities: rot: 3.141592653589793 rad pos: 17.5,-12.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 6542 - type: AtmosPipeColor color: '#990000FF' - uid: 3390 @@ -32181,11 +43612,11 @@ entities: - 6537 - type: AtmosPipeColor color: '#990000FF' - - uid: 3924 + - uid: 3922 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,1.5 + rot: 1.5707963267948966 rad + pos: 49.5,4.5 parent: 2 - type: DeviceNetwork deviceLists: @@ -32211,7 +43642,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6559 + - 8532 - type: AtmosPipeColor color: '#990000FF' - uid: 3963 @@ -32241,9 +43672,6 @@ entities: rot: 1.5707963267948966 rad pos: 60.5,44.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8220 - type: AtmosPipeColor color: '#990000FF' - uid: 4035 @@ -32251,103 +43679,587 @@ entities: - type: Transform pos: 61.5,52.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8220 - type: AtmosPipeColor color: '#990000FF' - - uid: 4227 + - uid: 6644 components: - type: Transform - pos: 13.5,30.5 + pos: 18.5,23.5 parent: 2 - type: DeviceNetwork deviceLists: - - 6550 + - 8542 - type: AtmosPipeColor color: '#990000FF' - - uid: 4231 + - uid: 6651 + components: + - type: Transform + pos: 14.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8538 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8538 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6614 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6713 + components: + - type: Transform + pos: 37.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5864 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6714 + components: + - type: Transform + pos: 44.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5864 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5864 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6735 + components: + - type: Transform + pos: 33.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5864 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 6559 + - uid: 7733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 6524 + - uid: 8395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6558 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 6558 + - uid: 8507 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,22.5 + pos: 33.5,29.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 6550 - type: AtmosPipeColor color: '#990000FF' - - uid: 4245 + - type: DeviceNetwork + deviceLists: + - 8532 + - uid: 8510 + components: + - type: Transform + pos: 33.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 5210 + - uid: 8511 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,28.5 + pos: 27.5,38.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 6550 - type: AtmosPipeColor color: '#990000FF' - - uid: 4275 + - type: DeviceNetwork + deviceLists: + - 5210 + - uid: 8512 components: - type: Transform - pos: 24.5,34.5 + pos: 37.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 5210 + - uid: 8546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 7434 + - uid: 9809 + components: + - type: Transform + pos: 15.5,-59.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10238 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-64.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10239 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-64.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10239 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-64.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10240 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-64.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10240 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-61.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10239 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-57.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10239 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9878 + components: + - type: Transform + pos: 27.5,-57.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10241 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9879 + components: + - type: Transform + pos: 36.5,-57.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10241 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-54.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-54.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-50.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-46.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-42.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-38.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-38.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-46.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9960 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-50.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-48.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-44.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-36.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-42.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10232 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-40.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10093 + components: + - type: Transform + pos: 13.5,-32.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-28.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-32.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10129 + components: + - type: Transform + pos: 19.5,-24.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10236 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10130 + components: + - type: Transform + pos: 14.5,-24.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10236 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10131 + components: + - type: Transform + pos: 9.5,-24.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10236 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-26.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10234 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-26.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10234 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-26.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10234 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-21.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10235 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-18.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10235 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-2.5 parent: 2 - type: DeviceNetwork deviceLists: - - 6553 + - 6563 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3162 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3162 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5864 - type: AtmosPipeColor color: '#990000FF' - proto: GasVolumePump entities: - - uid: 804 + - uid: 1648 components: - type: Transform - pos: 21.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 856 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,31.5 - parent: 2 - - uid: 1351 - components: - - type: Transform - pos: 16.5,37.5 + rot: 3.141592653589793 rad + pos: 18.5,34.5 parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 1697 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,27.5 - parent: 2 - - uid: 1708 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1715 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1755 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,25.5 - parent: 2 - uid: 2131 components: - type: Transform @@ -32355,28 +44267,25 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 2695 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,36.5 - parent: 2 -- proto: GoldenPlunger +- proto: GrassBattlemap entities: - - uid: 7733 + - uid: 10315 components: - type: Transform - pos: 62.5,6.5 - parent: 2 + pos: 29.5,-50.5 + parent: 3564 - proto: GravityGenerator entities: - - uid: 1723 + - uid: 1605 components: - type: Transform - pos: 46.5,40.5 + pos: 46.5,33.5 parent: 2 - - type: PowerCharge - charge: 100 + - uid: 9660 + components: + - type: Transform + pos: 16.5,-57.5 + parent: 3564 - proto: Grille entities: - uid: 70 @@ -32384,6 +44293,11 @@ entities: - type: Transform pos: 21.5,13.5 parent: 2 + - uid: 134 + components: + - type: Transform + pos: 68.5,-23.5 + parent: 2 - uid: 153 components: - type: Transform @@ -32464,11 +44378,6 @@ entities: - type: Transform pos: 2.5,-4.5 parent: 2 - - uid: 250 - components: - - type: Transform - pos: -7.5,4.5 - parent: 2 - uid: 262 components: - type: Transform @@ -32519,21 +44428,6 @@ entities: - type: Transform pos: -7.5,8.5 parent: 2 - - uid: 305 - components: - - type: Transform - pos: -8.5,13.5 - parent: 2 - - uid: 306 - components: - - type: Transform - pos: -8.5,11.5 - parent: 2 - - uid: 359 - components: - - type: Transform - pos: -7.5,6.5 - parent: 2 - uid: 363 components: - type: Transform @@ -32564,11 +44458,6 @@ entities: - type: Transform pos: 43.5,-15.5 parent: 2 - - uid: 375 - components: - - type: Transform - pos: -5.5,6.5 - parent: 2 - uid: 384 components: - type: Transform @@ -32644,33 +44533,16 @@ entities: - type: Transform pos: 40.5,-15.5 parent: 2 - - uid: 457 + - uid: 464 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,24.5 + pos: 21.5,24.5 parent: 2 - uid: 511 components: - type: Transform pos: 21.5,15.5 parent: 2 - - uid: 545 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,24.5 - parent: 2 - - uid: 553 - components: - - type: Transform - pos: 26.5,8.5 - parent: 2 - - uid: 554 - components: - - type: Transform - pos: 24.5,8.5 - parent: 2 - uid: 593 components: - type: Transform @@ -32696,49 +44568,11 @@ entities: - type: Transform pos: 3.5,36.5 parent: 2 - - uid: 674 - components: - - type: Transform - pos: 9.5,27.5 - parent: 2 - - uid: 676 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,37.5 - parent: 2 - uid: 683 components: - type: Transform pos: 16.5,3.5 parent: 2 - - uid: 691 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,36.5 - parent: 2 - - uid: 692 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,35.5 - parent: 2 - - uid: 706 - components: - - type: Transform - pos: 62.5,59.5 - parent: 2 - - uid: 725 - components: - - type: Transform - pos: 10.5,27.5 - parent: 2 - - uid: 726 - components: - - type: Transform - pos: 25.5,8.5 - parent: 2 - uid: 727 components: - type: Transform @@ -32769,6 +44603,11 @@ entities: - type: Transform pos: 8.5,33.5 parent: 2 + - uid: 879 + components: + - type: Transform + pos: 68.5,-22.5 + parent: 2 - uid: 887 components: - type: Transform @@ -32964,80 +44803,50 @@ entities: - type: Transform pos: 41.5,-1.5 parent: 2 - - uid: 1442 + - uid: 1448 components: - type: Transform - pos: -1.5,-11.5 + pos: 68.5,-14.5 parent: 2 - - uid: 1443 + - uid: 1489 components: - type: Transform - pos: -1.5,-9.5 + pos: 37.5,-16.5 parent: 2 - - uid: 1452 + - uid: 1490 components: - type: Transform - pos: 26.5,-10.5 + pos: 36.5,-16.5 parent: 2 - - uid: 1459 + - uid: 1492 components: - type: Transform - pos: 30.5,-10.5 + pos: 35.5,-16.5 parent: 2 - - uid: 1460 + - uid: 1493 components: - type: Transform - pos: 29.5,-10.5 + pos: 34.5,-16.5 parent: 2 - - uid: 1476 + - uid: 1532 components: - type: Transform - pos: 25.5,-10.5 + pos: 65.5,-5.5 parent: 2 - - uid: 1500 + - uid: 1538 components: - type: Transform - pos: 28.5,-10.5 - parent: 2 - - uid: 1514 - components: - - type: Transform - pos: 32.5,-6.5 - parent: 2 - - uid: 1521 - components: - - type: Transform - pos: 32.5,-4.5 - parent: 2 - - uid: 1523 - components: - - type: Transform - pos: 32.5,-7.5 + pos: 51.5,18.5 parent: 2 - uid: 1580 components: - type: Transform pos: 0.5,31.5 parent: 2 - - uid: 1630 + - uid: 1637 components: - type: Transform - pos: 18.5,38.5 - parent: 2 - - uid: 1646 - components: - - type: Transform - pos: 19.5,38.5 - parent: 2 - - uid: 1750 - components: - - type: Transform - pos: 20.5,38.5 - parent: 2 - - uid: 1776 - components: - - type: Transform - pos: 8.5,27.5 + pos: 68.5,-13.5 parent: 2 - uid: 1820 components: @@ -33159,27 +44968,11 @@ entities: - type: Transform pos: 12.5,40.5 parent: 2 - - uid: 1911 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,24.5 - parent: 2 - - uid: 1924 - components: - - type: Transform - pos: 10.5,28.5 - parent: 2 - uid: 1947 components: - type: Transform pos: -0.5,36.5 parent: 2 - - uid: 1949 - components: - - type: Transform - pos: 10.5,20.5 - parent: 2 - uid: 2038 components: - type: Transform @@ -33230,11 +45023,6 @@ entities: - type: Transform pos: 50.5,38.5 parent: 2 - - uid: 2110 - components: - - type: Transform - pos: 8.5,21.5 - parent: 2 - uid: 2111 components: - type: Transform @@ -33255,30 +45043,10 @@ entities: - type: Transform pos: 8.5,17.5 parent: 2 - - uid: 2115 - components: - - type: Transform - pos: 31.5,17.5 - parent: 2 - - uid: 2116 - components: - - type: Transform - pos: 29.5,17.5 - parent: 2 - - uid: 2117 - components: - - type: Transform - pos: 10.5,21.5 - parent: 2 - - uid: 2118 - components: - - type: Transform - pos: 9.5,21.5 - parent: 2 - uid: 2119 components: - type: Transform - pos: 35.5,15.5 + pos: 33.5,-16.5 parent: 2 - uid: 2120 components: @@ -33290,10 +45058,10 @@ entities: - type: Transform pos: 51.5,-17.5 parent: 2 - - uid: 2138 + - uid: 2133 components: - type: Transform - pos: 30.5,17.5 + pos: 32.5,-16.5 parent: 2 - uid: 2145 components: @@ -33386,51 +45154,109 @@ entities: - type: Transform pos: 57.5,63.5 parent: 2 - - uid: 2673 - components: - - type: Transform - pos: 0.5,-9.5 - parent: 2 - - uid: 2674 - components: - - type: Transform - pos: 0.5,-11.5 - parent: 2 - uid: 2681 components: - type: Transform pos: -0.5,-11.5 parent: 2 - - uid: 2746 + - uid: 2782 components: - type: Transform - pos: 59.5,64.5 + pos: 68.5,-16.5 parent: 2 - - uid: 2747 + - uid: 2783 components: - type: Transform - pos: 59.5,65.5 + pos: 68.5,-20.5 parent: 2 - - uid: 2748 + - uid: 2784 components: - type: Transform - pos: 57.5,65.5 + pos: 68.5,-18.5 parent: 2 - - uid: 2749 + - uid: 3260 components: - type: Transform - pos: 57.5,64.5 + pos: 58.5,-18.5 + parent: 2 + - uid: 3261 + components: + - type: Transform + pos: 58.5,-19.5 + parent: 2 + - uid: 3262 + components: + - type: Transform + pos: 58.5,-20.5 + parent: 2 + - uid: 3263 + components: + - type: Transform + pos: 56.5,-18.5 + parent: 2 + - uid: 3264 + components: + - type: Transform + pos: 56.5,-19.5 + parent: 2 + - uid: 3265 + components: + - type: Transform + pos: 56.5,-20.5 + parent: 2 + - uid: 3573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-39.5 + parent: 3564 + - uid: 3574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-40.5 + parent: 3564 + - uid: 3575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-42.5 + parent: 3564 + - uid: 3576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-43.5 + parent: 3564 + - uid: 3588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-44.5 + parent: 3564 + - uid: 3700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-45.5 + parent: 3564 + - uid: 3923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,34.5 + parent: 2 + - uid: 3924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,34.5 parent: 2 - uid: 4024 components: - type: Transform pos: 58.5,-17.5 parent: 2 - - uid: 4025 - components: - - type: Transform - pos: 57.5,-17.5 - parent: 2 - uid: 4026 components: - type: Transform @@ -33456,30 +45282,207 @@ entities: - type: Transform pos: 24.5,-16.5 parent: 2 - - uid: 4491 - components: - - type: Transform - pos: 53.5,61.5 - parent: 2 - - uid: 4492 - components: - - type: Transform - pos: 54.5,61.5 - parent: 2 - uid: 4493 components: - type: Transform pos: 55.5,61.5 parent: 2 - - uid: 4497 + - uid: 4698 components: - type: Transform - pos: 53.5,59.5 + pos: 20.5,32.5 parent: 2 - - uid: 4498 + - uid: 4699 components: - type: Transform - pos: 54.5,59.5 + pos: 19.5,32.5 + parent: 2 + - uid: 4735 + components: + - type: Transform + pos: 39.5,51.5 + parent: 2 + - uid: 4736 + components: + - type: Transform + pos: 39.5,49.5 + parent: 2 + - uid: 5759 + components: + - type: Transform + pos: 18.5,32.5 + parent: 2 + - uid: 5999 + components: + - type: Transform + pos: 17.5,32.5 + parent: 2 + - uid: 6000 + components: + - type: Transform + pos: 22.5,32.5 + parent: 2 + - uid: 6344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,32.5 + parent: 2 + - uid: 6673 + components: + - type: Transform + pos: 23.5,-1.5 + parent: 2 + - uid: 6814 + components: + - type: Transform + pos: 31.5,-16.5 + parent: 2 + - uid: 6842 + components: + - type: Transform + pos: 23.5,32.5 + parent: 2 + - uid: 7153 + components: + - type: Transform + pos: 24.5,32.5 + parent: 2 + - uid: 7155 + components: + - type: Transform + pos: 25.5,32.5 + parent: 2 + - uid: 7156 + components: + - type: Transform + pos: 25.5,25.5 + parent: 2 + - uid: 7159 + components: + - type: Transform + pos: 25.5,24.5 + parent: 2 + - uid: 7160 + components: + - type: Transform + pos: 25.5,23.5 + parent: 2 + - uid: 7185 + components: + - type: Transform + pos: 25.5,22.5 + parent: 2 + - uid: 7226 + components: + - type: Transform + pos: 68.5,-19.5 + parent: 2 + - uid: 7227 + components: + - type: Transform + pos: 68.5,-15.5 + parent: 2 + - uid: 7234 + components: + - type: Transform + pos: 68.5,-21.5 + parent: 2 + - uid: 7235 + components: + - type: Transform + pos: 68.5,-17.5 + parent: 2 + - uid: 7390 + components: + - type: Transform + pos: 68.5,-24.5 + parent: 2 + - uid: 7391 + components: + - type: Transform + pos: 68.5,-25.5 + parent: 2 + - uid: 7392 + components: + - type: Transform + pos: 68.5,-26.5 + parent: 2 + - uid: 7393 + components: + - type: Transform + pos: 68.5,-27.5 + parent: 2 + - uid: 7394 + components: + - type: Transform + pos: 64.5,-19.5 + parent: 2 + - uid: 7406 + components: + - type: Transform + pos: 68.5,-28.5 + parent: 2 + - uid: 7407 + components: + - type: Transform + pos: 68.5,-29.5 + parent: 2 + - uid: 7408 + components: + - type: Transform + pos: 67.5,-29.5 + parent: 2 + - uid: 7410 + components: + - type: Transform + pos: 66.5,-29.5 + parent: 2 + - uid: 7460 + components: + - type: Transform + pos: 24.5,-0.5 + parent: 2 + - uid: 7573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,26.5 + parent: 2 + - uid: 7656 + components: + - type: Transform + pos: 65.5,-29.5 + parent: 2 + - uid: 7748 + components: + - type: Transform + pos: 21.5,23.5 + parent: 2 + - uid: 7750 + components: + - type: Transform + pos: 64.5,-29.5 + parent: 2 + - uid: 7754 + components: + - type: Transform + pos: 21.5,22.5 + parent: 2 + - uid: 7777 + components: + - type: Transform + pos: 63.5,-29.5 + parent: 2 + - uid: 7790 + components: + - type: Transform + pos: 62.5,-29.5 + parent: 2 + - uid: 7824 + components: + - type: Transform + pos: 61.5,-29.5 parent: 2 - uid: 7830 components: @@ -33526,10 +45529,70 @@ entities: - type: Transform pos: 65.5,-6.5 parent: 2 - - uid: 7839 + - uid: 7840 components: - type: Transform - pos: 65.5,-5.5 + pos: 30.5,-16.5 + parent: 2 + - uid: 7841 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 2 + - uid: 7842 + components: + - type: Transform + pos: 27.5,-16.5 + parent: 2 + - uid: 7843 + components: + - type: Transform + pos: 26.5,-16.5 + parent: 2 + - uid: 7844 + components: + - type: Transform + pos: 25.5,-16.5 + parent: 2 + - uid: 7845 + components: + - type: Transform + pos: 28.5,-16.5 + parent: 2 + - uid: 7846 + components: + - type: Transform + pos: 18.5,-16.5 + parent: 2 + - uid: 7847 + components: + - type: Transform + pos: 17.5,-16.5 + parent: 2 + - uid: 7848 + components: + - type: Transform + pos: 16.5,-16.5 + parent: 2 + - uid: 7849 + components: + - type: Transform + pos: 15.5,-16.5 + parent: 2 + - uid: 7850 + components: + - type: Transform + pos: 14.5,-16.5 + parent: 2 + - uid: 7851 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 2 + - uid: 7852 + components: + - type: Transform + pos: -0.5,-18.5 parent: 2 - uid: 7853 components: @@ -33556,6 +45619,31 @@ entities: - type: Transform pos: 19.5,-16.5 parent: 2 + - uid: 7858 + components: + - type: Transform + pos: -0.5,-19.5 + parent: 2 + - uid: 7859 + components: + - type: Transform + pos: -1.5,-19.5 + parent: 2 + - uid: 7860 + components: + - type: Transform + pos: -2.5,-19.5 + parent: 2 + - uid: 7861 + components: + - type: Transform + pos: -3.5,-19.5 + parent: 2 + - uid: 7862 + components: + - type: Transform + pos: -4.5,-19.5 + parent: 2 - uid: 7863 components: - type: Transform @@ -33631,6 +45719,91 @@ entities: - type: Transform pos: -0.5,-16.5 parent: 2 + - uid: 7878 + components: + - type: Transform + pos: -3.5,-18.5 + parent: 2 + - uid: 7879 + components: + - type: Transform + pos: -5.5,-19.5 + parent: 2 + - uid: 7880 + components: + - type: Transform + pos: -6.5,-19.5 + parent: 2 + - uid: 7881 + components: + - type: Transform + pos: 68.5,-12.5 + parent: 2 + - uid: 7882 + components: + - type: Transform + pos: -6.5,-18.5 + parent: 2 + - uid: 7883 + components: + - type: Transform + pos: -6.5,-17.5 + parent: 2 + - uid: 7884 + components: + - type: Transform + pos: -6.5,-16.5 + parent: 2 + - uid: 7885 + components: + - type: Transform + pos: -6.5,-15.5 + parent: 2 + - uid: 7886 + components: + - type: Transform + pos: -6.5,-14.5 + parent: 2 + - uid: 7887 + components: + - type: Transform + pos: -6.5,-13.5 + parent: 2 + - uid: 7888 + components: + - type: Transform + pos: 68.5,-11.5 + parent: 2 + - uid: 7889 + components: + - type: Transform + pos: 68.5,-10.5 + parent: 2 + - uid: 7890 + components: + - type: Transform + pos: 68.5,-9.5 + parent: 2 + - uid: 7891 + components: + - type: Transform + pos: 68.5,-8.5 + parent: 2 + - uid: 7892 + components: + - type: Transform + pos: 68.5,-7.5 + parent: 2 + - uid: 7893 + components: + - type: Transform + pos: 68.5,-6.5 + parent: 2 + - uid: 7894 + components: + - type: Transform + pos: 68.5,-5.5 + parent: 2 - uid: 7895 components: - type: Transform @@ -33756,6 +45929,536 @@ entities: - type: Transform pos: -1.5,-7.5 parent: 2 + - uid: 7920 + components: + - type: Transform + pos: 68.5,-4.5 + parent: 2 + - uid: 7921 + components: + - type: Transform + pos: 68.5,-3.5 + parent: 2 + - uid: 7922 + components: + - type: Transform + pos: 68.5,-2.5 + parent: 2 + - uid: 7923 + components: + - type: Transform + pos: 68.5,-1.5 + parent: 2 + - uid: 7924 + components: + - type: Transform + pos: 68.5,-0.5 + parent: 2 + - uid: 7925 + components: + - type: Transform + pos: 68.5,0.5 + parent: 2 + - uid: 7926 + components: + - type: Transform + pos: 68.5,1.5 + parent: 2 + - uid: 7927 + components: + - type: Transform + pos: 68.5,2.5 + parent: 2 + - uid: 7928 + components: + - type: Transform + pos: 68.5,3.5 + parent: 2 + - uid: 7929 + components: + - type: Transform + pos: 67.5,3.5 + parent: 2 + - uid: 7930 + components: + - type: Transform + pos: 66.5,3.5 + parent: 2 + - uid: 7931 + components: + - type: Transform + pos: 65.5,3.5 + parent: 2 + - uid: 7932 + components: + - type: Transform + pos: 65.5,4.5 + parent: 2 + - uid: 7933 + components: + - type: Transform + pos: 64.5,4.5 + parent: 2 + - uid: 7934 + components: + - type: Transform + pos: 64.5,5.5 + parent: 2 + - uid: 7935 + components: + - type: Transform + pos: 64.5,6.5 + parent: 2 + - uid: 7936 + components: + - type: Transform + pos: 64.5,7.5 + parent: 2 + - uid: 7937 + components: + - type: Transform + pos: 64.5,8.5 + parent: 2 + - uid: 7938 + components: + - type: Transform + pos: 64.5,9.5 + parent: 2 + - uid: 7939 + components: + - type: Transform + pos: 64.5,10.5 + parent: 2 + - uid: 7940 + components: + - type: Transform + pos: 64.5,11.5 + parent: 2 + - uid: 7941 + components: + - type: Transform + pos: 64.5,12.5 + parent: 2 + - uid: 7942 + components: + - type: Transform + pos: 64.5,13.5 + parent: 2 + - uid: 7943 + components: + - type: Transform + pos: 64.5,14.5 + parent: 2 + - uid: 7944 + components: + - type: Transform + pos: 64.5,15.5 + parent: 2 + - uid: 7945 + components: + - type: Transform + pos: 64.5,16.5 + parent: 2 + - uid: 7946 + components: + - type: Transform + pos: 64.5,17.5 + parent: 2 + - uid: 7947 + components: + - type: Transform + pos: 64.5,18.5 + parent: 2 + - uid: 7948 + components: + - type: Transform + pos: 64.5,19.5 + parent: 2 + - uid: 7949 + components: + - type: Transform + pos: 64.5,20.5 + parent: 2 + - uid: 7950 + components: + - type: Transform + pos: 64.5,21.5 + parent: 2 + - uid: 7951 + components: + - type: Transform + pos: 64.5,22.5 + parent: 2 + - uid: 7952 + components: + - type: Transform + pos: 64.5,23.5 + parent: 2 + - uid: 7953 + components: + - type: Transform + pos: 64.5,24.5 + parent: 2 + - uid: 7954 + components: + - type: Transform + pos: 64.5,25.5 + parent: 2 + - uid: 7955 + components: + - type: Transform + pos: 64.5,26.5 + parent: 2 + - uid: 7956 + components: + - type: Transform + pos: 64.5,36.5 + parent: 2 + - uid: 7957 + components: + - type: Transform + pos: 63.5,36.5 + parent: 2 + - uid: 7958 + components: + - type: Transform + pos: 63.5,37.5 + parent: 2 + - uid: 7959 + components: + - type: Transform + pos: 63.5,38.5 + parent: 2 + - uid: 7960 + components: + - type: Transform + pos: 63.5,39.5 + parent: 2 + - uid: 7961 + components: + - type: Transform + pos: 63.5,40.5 + parent: 2 + - uid: 7962 + components: + - type: Transform + pos: 63.5,41.5 + parent: 2 + - uid: 7963 + components: + - type: Transform + pos: 63.5,42.5 + parent: 2 + - uid: 7964 + components: + - type: Transform + pos: 63.5,43.5 + parent: 2 + - uid: 7965 + components: + - type: Transform + pos: 63.5,44.5 + parent: 2 + - uid: 7966 + components: + - type: Transform + pos: 63.5,45.5 + parent: 2 + - uid: 7967 + components: + - type: Transform + pos: 63.5,46.5 + parent: 2 + - uid: 7968 + components: + - type: Transform + pos: 63.5,50.5 + parent: 2 + - uid: 7969 + components: + - type: Transform + pos: 63.5,51.5 + parent: 2 + - uid: 7970 + components: + - type: Transform + pos: 63.5,52.5 + parent: 2 + - uid: 7971 + components: + - type: Transform + pos: 63.5,53.5 + parent: 2 + - uid: 7972 + components: + - type: Transform + pos: 63.5,54.5 + parent: 2 + - uid: 7973 + components: + - type: Transform + pos: 63.5,55.5 + parent: 2 + - uid: 7974 + components: + - type: Transform + pos: 63.5,56.5 + parent: 2 + - uid: 7975 + components: + - type: Transform + pos: 63.5,57.5 + parent: 2 + - uid: 7976 + components: + - type: Transform + pos: 63.5,58.5 + parent: 2 + - uid: 7977 + components: + - type: Transform + pos: 64.5,63.5 + parent: 2 + - uid: 7978 + components: + - type: Transform + pos: 63.5,60.5 + parent: 2 + - uid: 7979 + components: + - type: Transform + pos: 62.5,63.5 + parent: 2 + - uid: 7980 + components: + - type: Transform + pos: 62.5,62.5 + parent: 2 + - uid: 7981 + components: + - type: Transform + pos: 62.5,61.5 + parent: 2 + - uid: 7982 + components: + - type: Transform + pos: 63.5,63.5 + parent: 2 + - uid: 7983 + components: + - type: Transform + pos: 63.5,62.5 + parent: 2 + - uid: 7984 + components: + - type: Transform + pos: 63.5,61.5 + parent: 2 + - uid: 7985 + components: + - type: Transform + pos: 65.5,63.5 + parent: 2 + - uid: 7986 + components: + - type: Transform + pos: 66.5,63.5 + parent: 2 + - uid: 7987 + components: + - type: Transform + pos: 67.5,63.5 + parent: 2 + - uid: 7988 + components: + - type: Transform + pos: 67.5,64.5 + parent: 2 + - uid: 7989 + components: + - type: Transform + pos: 67.5,65.5 + parent: 2 + - uid: 7990 + components: + - type: Transform + pos: 67.5,66.5 + parent: 2 + - uid: 7991 + components: + - type: Transform + pos: 67.5,67.5 + parent: 2 + - uid: 7992 + components: + - type: Transform + pos: 67.5,68.5 + parent: 2 + - uid: 7993 + components: + - type: Transform + pos: 67.5,69.5 + parent: 2 + - uid: 7994 + components: + - type: Transform + pos: 67.5,70.5 + parent: 2 + - uid: 7995 + components: + - type: Transform + pos: 66.5,70.5 + parent: 2 + - uid: 7996 + components: + - type: Transform + pos: 65.5,70.5 + parent: 2 + - uid: 7997 + components: + - type: Transform + pos: 64.5,70.5 + parent: 2 + - uid: 7998 + components: + - type: Transform + pos: 63.5,70.5 + parent: 2 + - uid: 7999 + components: + - type: Transform + pos: 62.5,70.5 + parent: 2 + - uid: 8000 + components: + - type: Transform + pos: 61.5,70.5 + parent: 2 + - uid: 8001 + components: + - type: Transform + pos: 60.5,70.5 + parent: 2 + - uid: 8002 + components: + - type: Transform + pos: 59.5,70.5 + parent: 2 + - uid: 8003 + components: + - type: Transform + pos: 58.5,70.5 + parent: 2 + - uid: 8004 + components: + - type: Transform + pos: 57.5,70.5 + parent: 2 + - uid: 8005 + components: + - type: Transform + pos: 56.5,70.5 + parent: 2 + - uid: 8006 + components: + - type: Transform + pos: 54.5,70.5 + parent: 2 + - uid: 8007 + components: + - type: Transform + pos: 53.5,70.5 + parent: 2 + - uid: 8008 + components: + - type: Transform + pos: 52.5,70.5 + parent: 2 + - uid: 8009 + components: + - type: Transform + pos: 51.5,70.5 + parent: 2 + - uid: 8010 + components: + - type: Transform + pos: 50.5,70.5 + parent: 2 + - uid: 8011 + components: + - type: Transform + pos: 49.5,70.5 + parent: 2 + - uid: 8012 + components: + - type: Transform + pos: 55.5,70.5 + parent: 2 + - uid: 8013 + components: + - type: Transform + pos: 49.5,69.5 + parent: 2 + - uid: 8014 + components: + - type: Transform + pos: 49.5,68.5 + parent: 2 + - uid: 8015 + components: + - type: Transform + pos: 49.5,67.5 + parent: 2 + - uid: 8016 + components: + - type: Transform + pos: 49.5,66.5 + parent: 2 + - uid: 8017 + components: + - type: Transform + pos: 49.5,65.5 + parent: 2 + - uid: 8018 + components: + - type: Transform + pos: 49.5,64.5 + parent: 2 + - uid: 8019 + components: + - type: Transform + pos: 49.5,63.5 + parent: 2 + - uid: 8020 + components: + - type: Transform + pos: 50.5,63.5 + parent: 2 + - uid: 8021 + components: + - type: Transform + pos: 51.5,63.5 + parent: 2 + - uid: 8022 + components: + - type: Transform + pos: 52.5,63.5 + parent: 2 + - uid: 8023 + components: + - type: Transform + pos: 53.5,63.5 + parent: 2 + - uid: 8024 + components: + - type: Transform + pos: 54.5,63.5 + parent: 2 + - uid: 8025 + components: + - type: Transform + pos: 6.5,-33.5 + parent: 3564 - uid: 8036 components: - type: Transform @@ -34672,842 +47375,1472 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,37.5 parent: 2 -- proto: GrilleSpawner - entities: - - uid: 7840 + - uid: 8214 components: - type: Transform - pos: 37.5,-16.5 + pos: 60.5,-29.5 parent: 2 - - uid: 7841 + - uid: 8215 components: - type: Transform - pos: 36.5,-16.5 + pos: 64.5,-20.5 parent: 2 - - uid: 7842 + - uid: 8216 components: - type: Transform - pos: 35.5,-16.5 + pos: 65.5,-20.5 parent: 2 - - uid: 7843 + - uid: 8217 components: - type: Transform - pos: 34.5,-16.5 + pos: 65.5,-21.5 parent: 2 - - uid: 7844 + - uid: 8297 components: - type: Transform - pos: 33.5,-16.5 + pos: 65.5,-22.5 parent: 2 - - uid: 7845 + - uid: 8298 components: - type: Transform - pos: 32.5,-16.5 + pos: 65.5,-23.5 parent: 2 - - uid: 7846 + - uid: 8301 components: - type: Transform - pos: 31.5,-16.5 + pos: 24.5,-1.5 parent: 2 - - uid: 7847 + - uid: 8308 components: - type: Transform - pos: 30.5,-16.5 + pos: 65.5,-24.5 parent: 2 - - uid: 7848 - components: - - type: Transform - pos: 29.5,-16.5 - parent: 2 - - uid: 7849 - components: - - type: Transform - pos: 27.5,-16.5 - parent: 2 - - uid: 7850 - components: - - type: Transform - pos: 26.5,-16.5 - parent: 2 - - uid: 7851 - components: - - type: Transform - pos: 25.5,-16.5 - parent: 2 - - uid: 7852 - components: - - type: Transform - pos: 28.5,-16.5 - parent: 2 - - uid: 7858 - components: - - type: Transform - pos: 18.5,-16.5 - parent: 2 - - uid: 7859 - components: - - type: Transform - pos: 17.5,-16.5 - parent: 2 - - uid: 7860 - components: - - type: Transform - pos: 16.5,-16.5 - parent: 2 - - uid: 7861 - components: - - type: Transform - pos: 15.5,-16.5 - parent: 2 - - uid: 7862 - components: - - type: Transform - pos: 14.5,-16.5 - parent: 2 - - uid: 7878 - components: - - type: Transform - pos: -0.5,-17.5 - parent: 2 - - uid: 7879 - components: - - type: Transform - pos: -0.5,-18.5 - parent: 2 - - uid: 7880 - components: - - type: Transform - pos: -0.5,-19.5 - parent: 2 - - uid: 7881 - components: - - type: Transform - pos: -1.5,-19.5 - parent: 2 - - uid: 7882 - components: - - type: Transform - pos: -2.5,-19.5 - parent: 2 - - uid: 7883 - components: - - type: Transform - pos: -3.5,-19.5 - parent: 2 - - uid: 7884 - components: - - type: Transform - pos: -4.5,-19.5 - parent: 2 - - uid: 7885 - components: - - type: Transform - pos: -3.5,-18.5 - parent: 2 - - uid: 7886 - components: - - type: Transform - pos: -5.5,-19.5 - parent: 2 - - uid: 7887 - components: - - type: Transform - pos: -6.5,-19.5 - parent: 2 - - uid: 7888 - components: - - type: Transform - pos: 68.5,-12.5 - parent: 2 - - uid: 7889 - components: - - type: Transform - pos: -6.5,-18.5 - parent: 2 - - uid: 7890 - components: - - type: Transform - pos: -6.5,-17.5 - parent: 2 - - uid: 7891 - components: - - type: Transform - pos: -6.5,-16.5 - parent: 2 - - uid: 7892 - components: - - type: Transform - pos: -6.5,-15.5 - parent: 2 - - uid: 7893 - components: - - type: Transform - pos: -6.5,-14.5 - parent: 2 - - uid: 7894 - components: - - type: Transform - pos: -6.5,-13.5 - parent: 2 - - uid: 7920 - components: - - type: Transform - pos: 68.5,-11.5 - parent: 2 - - uid: 7921 - components: - - type: Transform - pos: 68.5,-10.5 - parent: 2 - - uid: 7922 - components: - - type: Transform - pos: 68.5,-9.5 - parent: 2 - - uid: 7923 - components: - - type: Transform - pos: 68.5,-8.5 - parent: 2 - - uid: 7924 - components: - - type: Transform - pos: 68.5,-7.5 - parent: 2 - - uid: 7925 - components: - - type: Transform - pos: 68.5,-6.5 - parent: 2 - - uid: 7926 - components: - - type: Transform - pos: 68.5,-5.5 - parent: 2 - - uid: 7927 - components: - - type: Transform - pos: 68.5,-4.5 - parent: 2 - - uid: 7928 - components: - - type: Transform - pos: 68.5,-3.5 - parent: 2 - - uid: 7929 - components: - - type: Transform - pos: 68.5,-2.5 - parent: 2 - - uid: 7930 - components: - - type: Transform - pos: 68.5,-1.5 - parent: 2 - - uid: 7931 - components: - - type: Transform - pos: 68.5,-0.5 - parent: 2 - - uid: 7932 - components: - - type: Transform - pos: 68.5,0.5 - parent: 2 - - uid: 7933 - components: - - type: Transform - pos: 68.5,1.5 - parent: 2 - - uid: 7934 - components: - - type: Transform - pos: 68.5,2.5 - parent: 2 - - uid: 7935 - components: - - type: Transform - pos: 68.5,3.5 - parent: 2 - - uid: 7936 - components: - - type: Transform - pos: 67.5,3.5 - parent: 2 - - uid: 7937 - components: - - type: Transform - pos: 66.5,3.5 - parent: 2 - - uid: 7938 - components: - - type: Transform - pos: 65.5,3.5 - parent: 2 - - uid: 7939 - components: - - type: Transform - pos: 65.5,4.5 - parent: 2 - - uid: 7940 - components: - - type: Transform - pos: 64.5,4.5 - parent: 2 - - uid: 7941 - components: - - type: Transform - pos: 64.5,5.5 - parent: 2 - - uid: 7942 - components: - - type: Transform - pos: 64.5,6.5 - parent: 2 - - uid: 7943 - components: - - type: Transform - pos: 64.5,7.5 - parent: 2 - - uid: 7944 - components: - - type: Transform - pos: 64.5,8.5 - parent: 2 - - uid: 7945 - components: - - type: Transform - pos: 64.5,9.5 - parent: 2 - - uid: 7946 - components: - - type: Transform - pos: 64.5,10.5 - parent: 2 - - uid: 7947 - components: - - type: Transform - pos: 64.5,11.5 - parent: 2 - - uid: 7948 - components: - - type: Transform - pos: 64.5,12.5 - parent: 2 - - uid: 7949 - components: - - type: Transform - pos: 64.5,13.5 - parent: 2 - - uid: 7950 - components: - - type: Transform - pos: 64.5,14.5 - parent: 2 - - uid: 7951 - components: - - type: Transform - pos: 64.5,15.5 - parent: 2 - - uid: 7952 - components: - - type: Transform - pos: 64.5,16.5 - parent: 2 - - uid: 7953 - components: - - type: Transform - pos: 64.5,17.5 - parent: 2 - - uid: 7954 - components: - - type: Transform - pos: 64.5,18.5 - parent: 2 - - uid: 7955 - components: - - type: Transform - pos: 64.5,19.5 - parent: 2 - - uid: 7956 - components: - - type: Transform - pos: 64.5,20.5 - parent: 2 - - uid: 7957 - components: - - type: Transform - pos: 64.5,21.5 - parent: 2 - - uid: 7958 - components: - - type: Transform - pos: 64.5,22.5 - parent: 2 - - uid: 7959 - components: - - type: Transform - pos: 64.5,23.5 - parent: 2 - - uid: 7960 - components: - - type: Transform - pos: 64.5,24.5 - parent: 2 - - uid: 7961 - components: - - type: Transform - pos: 64.5,25.5 - parent: 2 - - uid: 7962 - components: - - type: Transform - pos: 64.5,26.5 - parent: 2 - - uid: 7963 - components: - - type: Transform - pos: 64.5,36.5 - parent: 2 - - uid: 7964 - components: - - type: Transform - pos: 63.5,36.5 - parent: 2 - - uid: 7965 - components: - - type: Transform - pos: 63.5,37.5 - parent: 2 - - uid: 7966 - components: - - type: Transform - pos: 63.5,38.5 - parent: 2 - - uid: 7967 - components: - - type: Transform - pos: 63.5,39.5 - parent: 2 - - uid: 7968 - components: - - type: Transform - pos: 63.5,40.5 - parent: 2 - - uid: 7969 - components: - - type: Transform - pos: 63.5,41.5 - parent: 2 - - uid: 7970 - components: - - type: Transform - pos: 63.5,42.5 - parent: 2 - - uid: 7971 - components: - - type: Transform - pos: 63.5,43.5 - parent: 2 - - uid: 7972 - components: - - type: Transform - pos: 63.5,44.5 - parent: 2 - - uid: 7973 - components: - - type: Transform - pos: 63.5,45.5 - parent: 2 - - uid: 7974 - components: - - type: Transform - pos: 63.5,46.5 - parent: 2 - - uid: 7975 - components: - - type: Transform - pos: 63.5,50.5 - parent: 2 - - uid: 7976 - components: - - type: Transform - pos: 63.5,51.5 - parent: 2 - - uid: 7977 - components: - - type: Transform - pos: 63.5,52.5 - parent: 2 - - uid: 7978 - components: - - type: Transform - pos: 63.5,53.5 - parent: 2 - - uid: 7979 - components: - - type: Transform - pos: 63.5,54.5 - parent: 2 - - uid: 7980 - components: - - type: Transform - pos: 63.5,55.5 - parent: 2 - - uid: 7981 - components: - - type: Transform - pos: 63.5,56.5 - parent: 2 - - uid: 7982 - components: - - type: Transform - pos: 63.5,57.5 - parent: 2 - - uid: 7983 - components: - - type: Transform - pos: 63.5,58.5 - parent: 2 - - uid: 7984 - components: - - type: Transform - pos: 64.5,63.5 - parent: 2 - - uid: 7985 - components: - - type: Transform - pos: 63.5,60.5 - parent: 2 - - uid: 7986 - components: - - type: Transform - pos: 62.5,63.5 - parent: 2 - - uid: 7987 - components: - - type: Transform - pos: 62.5,62.5 - parent: 2 - - uid: 7988 - components: - - type: Transform - pos: 62.5,61.5 - parent: 2 - - uid: 7989 - components: - - type: Transform - pos: 63.5,63.5 - parent: 2 - - uid: 7990 - components: - - type: Transform - pos: 63.5,62.5 - parent: 2 - - uid: 7991 - components: - - type: Transform - pos: 63.5,61.5 - parent: 2 - - uid: 7992 - components: - - type: Transform - pos: 65.5,63.5 - parent: 2 - - uid: 7993 - components: - - type: Transform - pos: 66.5,63.5 - parent: 2 - - uid: 7994 - components: - - type: Transform - pos: 67.5,63.5 - parent: 2 - - uid: 7995 - components: - - type: Transform - pos: 67.5,64.5 - parent: 2 - - uid: 7996 - components: - - type: Transform - pos: 67.5,65.5 - parent: 2 - - uid: 7997 - components: - - type: Transform - pos: 67.5,66.5 - parent: 2 - - uid: 7998 - components: - - type: Transform - pos: 67.5,67.5 - parent: 2 - - uid: 7999 - components: - - type: Transform - pos: 67.5,68.5 - parent: 2 - - uid: 8000 - components: - - type: Transform - pos: 67.5,69.5 - parent: 2 - - uid: 8001 - components: - - type: Transform - pos: 67.5,70.5 - parent: 2 - - uid: 8002 - components: - - type: Transform - pos: 66.5,70.5 - parent: 2 - - uid: 8003 - components: - - type: Transform - pos: 65.5,70.5 - parent: 2 - - uid: 8004 - components: - - type: Transform - pos: 64.5,70.5 - parent: 2 - - uid: 8005 - components: - - type: Transform - pos: 63.5,70.5 - parent: 2 - - uid: 8006 - components: - - type: Transform - pos: 62.5,70.5 - parent: 2 - - uid: 8007 - components: - - type: Transform - pos: 61.5,70.5 - parent: 2 - - uid: 8008 - components: - - type: Transform - pos: 60.5,70.5 - parent: 2 - - uid: 8009 - components: - - type: Transform - pos: 59.5,70.5 - parent: 2 - - uid: 8010 - components: - - type: Transform - pos: 58.5,70.5 - parent: 2 - - uid: 8011 - components: - - type: Transform - pos: 57.5,70.5 - parent: 2 - - uid: 8012 - components: - - type: Transform - pos: 56.5,70.5 - parent: 2 - - uid: 8013 - components: - - type: Transform - pos: 54.5,70.5 - parent: 2 - - uid: 8014 - components: - - type: Transform - pos: 53.5,70.5 - parent: 2 - - uid: 8015 - components: - - type: Transform - pos: 52.5,70.5 - parent: 2 - - uid: 8016 - components: - - type: Transform - pos: 51.5,70.5 - parent: 2 - - uid: 8017 - components: - - type: Transform - pos: 50.5,70.5 - parent: 2 - - uid: 8018 - components: - - type: Transform - pos: 49.5,70.5 - parent: 2 - - uid: 8019 - components: - - type: Transform - pos: 55.5,70.5 - parent: 2 - - uid: 8020 - components: - - type: Transform - pos: 49.5,69.5 - parent: 2 - - uid: 8021 - components: - - type: Transform - pos: 49.5,68.5 - parent: 2 - - uid: 8022 - components: - - type: Transform - pos: 49.5,67.5 - parent: 2 - - uid: 8023 - components: - - type: Transform - pos: 49.5,66.5 - parent: 2 - - uid: 8024 - components: - - type: Transform - pos: 49.5,65.5 - parent: 2 - - uid: 8025 - components: - - type: Transform - pos: 49.5,64.5 - parent: 2 - - uid: 8026 - components: - - type: Transform - pos: 49.5,63.5 - parent: 2 - - uid: 8027 - components: - - type: Transform - pos: 50.5,63.5 - parent: 2 - - uid: 8028 - components: - - type: Transform - pos: 51.5,63.5 - parent: 2 - - uid: 8029 - components: - - type: Transform - pos: 52.5,63.5 - parent: 2 - - uid: 8030 - components: - - type: Transform - pos: 53.5,63.5 - parent: 2 - - uid: 8031 - components: - - type: Transform - pos: 54.5,63.5 - parent: 2 -- proto: GunpetInstrument - entities: - uid: 8310 components: - type: Transform - pos: 52.5,21.5 + rot: 3.141592653589793 rad + pos: 46.5,26.5 + parent: 2 + - uid: 8311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,26.5 + parent: 2 + - uid: 8314 + components: + - type: Transform + pos: 65.5,-25.5 + parent: 2 + - uid: 8315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,26.5 + parent: 2 + - uid: 8495 + components: + - type: Transform + pos: 22.5,-1.5 + parent: 2 + - uid: 8497 + components: + - type: Transform + pos: 24.5,0.5 + parent: 2 + - uid: 8499 + components: + - type: Transform + pos: 26.5,0.5 + parent: 2 + - uid: 8500 + components: + - type: Transform + pos: 26.5,-0.5 + parent: 2 + - uid: 8501 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 2 + - uid: 8502 + components: + - type: Transform + pos: 27.5,-1.5 + parent: 2 + - uid: 8842 + components: + - type: Transform + pos: 6.5,-32.5 + parent: 3564 + - uid: 8843 + components: + - type: Transform + pos: 6.5,-31.5 + parent: 3564 + - uid: 8844 + components: + - type: Transform + pos: 6.5,-30.5 + parent: 3564 + - uid: 8845 + components: + - type: Transform + pos: 6.5,-29.5 + parent: 3564 + - uid: 8846 + components: + - type: Transform + pos: 6.5,-28.5 + parent: 3564 + - uid: 8847 + components: + - type: Transform + pos: 6.5,-27.5 + parent: 3564 + - uid: 8848 + components: + - type: Transform + pos: 6.5,-26.5 + parent: 3564 + - uid: 8849 + components: + - type: Transform + pos: 6.5,-25.5 + parent: 3564 + - uid: 8850 + components: + - type: Transform + pos: 6.5,-24.5 + parent: 3564 + - uid: 8851 + components: + - type: Transform + pos: 6.5,-23.5 + parent: 3564 + - uid: 8852 + components: + - type: Transform + pos: 6.5,-22.5 + parent: 3564 + - uid: 8853 + components: + - type: Transform + pos: 6.5,-21.5 + parent: 3564 + - uid: 8854 + components: + - type: Transform + pos: 6.5,-20.5 + parent: 3564 + - uid: 8855 + components: + - type: Transform + pos: 5.5,-22.5 + parent: 3564 + - uid: 8856 + components: + - type: Transform + pos: 6.5,-19.5 + parent: 3564 + - uid: 8857 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 3564 + - uid: 8858 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 3564 + - uid: 8859 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 3564 + - uid: 8860 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 3564 + - uid: 8861 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 3564 + - uid: 8862 + components: + - type: Transform + pos: 6.5,-13.5 + parent: 3564 + - uid: 8863 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 3564 + - uid: 8864 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 3564 + - uid: 8865 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 3564 + - uid: 8866 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 3564 + - uid: 8867 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 3564 + - uid: 8868 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 3564 + - uid: 8869 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 3564 + - uid: 8870 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 3564 + - uid: 8871 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 3564 + - uid: 8872 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 3564 + - uid: 8873 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 3564 + - uid: 8874 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 3564 + - uid: 8875 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 3564 + - uid: 8876 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 3564 + - uid: 8877 + components: + - type: Transform + pos: 6.5,0.5 + parent: 3564 + - uid: 8878 + components: + - type: Transform + pos: 5.5,0.5 + parent: 3564 + - uid: 8879 + components: + - type: Transform + pos: 4.5,0.5 + parent: 3564 + - uid: 8880 + components: + - type: Transform + pos: 3.5,0.5 + parent: 3564 + - uid: 8881 + components: + - type: Transform + pos: 2.5,0.5 + parent: 3564 + - uid: 8882 + components: + - type: Transform + pos: 1.5,0.5 + parent: 3564 + - uid: 8883 + components: + - type: Transform + pos: 0.5,0.5 + parent: 3564 + - uid: 8884 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 3564 + - uid: 8885 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 3564 + - uid: 8886 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 3564 + - uid: 8887 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 3564 + - uid: 8888 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 3564 + - uid: 8889 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 3564 + - uid: 8890 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 3564 + - uid: 8891 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 3564 + - uid: 8892 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 3564 + - uid: 8893 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 3564 + - uid: 8894 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 3564 + - uid: 8895 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 3564 + - uid: 8896 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 3564 + - uid: 8897 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 3564 + - uid: 8898 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 3564 + - uid: 8899 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 3564 + - uid: 8900 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 3564 + - uid: 8901 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 3564 + - uid: 8902 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 3564 + - uid: 8903 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 3564 + - uid: 8904 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 3564 + - uid: 8905 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 3564 + - uid: 8906 + components: + - type: Transform + pos: 0.5,-22.5 + parent: 3564 + - uid: 8907 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 3564 + - uid: 8908 + components: + - type: Transform + pos: 0.5,-24.5 + parent: 3564 + - uid: 8909 + components: + - type: Transform + pos: 0.5,-25.5 + parent: 3564 + - uid: 8910 + components: + - type: Transform + pos: 0.5,-26.5 + parent: 3564 + - uid: 8911 + components: + - type: Transform + pos: 0.5,-27.5 + parent: 3564 + - uid: 8912 + components: + - type: Transform + pos: 0.5,-28.5 + parent: 3564 + - uid: 8913 + components: + - type: Transform + pos: 0.5,-29.5 + parent: 3564 + - uid: 8914 + components: + - type: Transform + pos: 0.5,-30.5 + parent: 3564 + - uid: 8915 + components: + - type: Transform + pos: 0.5,-31.5 + parent: 3564 + - uid: 8916 + components: + - type: Transform + pos: 0.5,-32.5 + parent: 3564 + - uid: 8917 + components: + - type: Transform + pos: 0.5,-33.5 + parent: 3564 + - uid: 8918 + components: + - type: Transform + pos: 0.5,-34.5 + parent: 3564 + - uid: 8919 + components: + - type: Transform + pos: 0.5,-35.5 + parent: 3564 + - uid: 8920 + components: + - type: Transform + pos: 0.5,-36.5 + parent: 3564 + - uid: 8921 + components: + - type: Transform + pos: 0.5,-37.5 + parent: 3564 + - uid: 8922 + components: + - type: Transform + pos: 0.5,-38.5 + parent: 3564 + - uid: 8923 + components: + - type: Transform + pos: 0.5,-39.5 + parent: 3564 + - uid: 8924 + components: + - type: Transform + pos: 0.5,-40.5 + parent: 3564 + - uid: 8925 + components: + - type: Transform + pos: 0.5,-41.5 + parent: 3564 + - uid: 8926 + components: + - type: Transform + pos: 0.5,-42.5 + parent: 3564 + - uid: 8927 + components: + - type: Transform + pos: 1.5,-42.5 + parent: 3564 + - uid: 8928 + components: + - type: Transform + pos: 0.5,-43.5 + parent: 3564 + - uid: 8929 + components: + - type: Transform + pos: 0.5,-44.5 + parent: 3564 + - uid: 8930 + components: + - type: Transform + pos: 0.5,-45.5 + parent: 3564 + - uid: 8931 + components: + - type: Transform + pos: 0.5,-46.5 + parent: 3564 + - uid: 8932 + components: + - type: Transform + pos: 0.5,-47.5 + parent: 3564 + - uid: 8933 + components: + - type: Transform + pos: 0.5,-48.5 + parent: 3564 + - uid: 8934 + components: + - type: Transform + pos: 0.5,-49.5 + parent: 3564 + - uid: 8935 + components: + - type: Transform + pos: 0.5,-50.5 + parent: 3564 + - uid: 8936 + components: + - type: Transform + pos: 0.5,-51.5 + parent: 3564 + - uid: 8937 + components: + - type: Transform + pos: 0.5,-52.5 + parent: 3564 + - uid: 8938 + components: + - type: Transform + pos: 0.5,-53.5 + parent: 3564 + - uid: 8939 + components: + - type: Transform + pos: 0.5,-54.5 + parent: 3564 + - uid: 8940 + components: + - type: Transform + pos: 0.5,-55.5 + parent: 3564 + - uid: 8941 + components: + - type: Transform + pos: 0.5,-56.5 + parent: 3564 + - uid: 8942 + components: + - type: Transform + pos: 0.5,-57.5 + parent: 3564 + - uid: 8943 + components: + - type: Transform + pos: 0.5,-58.5 + parent: 3564 + - uid: 8944 + components: + - type: Transform + pos: 0.5,-59.5 + parent: 3564 + - uid: 8945 + components: + - type: Transform + pos: 0.5,-60.5 + parent: 3564 + - uid: 8946 + components: + - type: Transform + pos: 0.5,-61.5 + parent: 3564 + - uid: 8947 + components: + - type: Transform + pos: 0.5,-62.5 + parent: 3564 + - uid: 8948 + components: + - type: Transform + pos: 0.5,-63.5 + parent: 3564 + - uid: 8949 + components: + - type: Transform + pos: 0.5,-64.5 + parent: 3564 + - uid: 8950 + components: + - type: Transform + pos: 0.5,-65.5 + parent: 3564 + - uid: 8951 + components: + - type: Transform + pos: 0.5,-66.5 + parent: 3564 + - uid: 8952 + components: + - type: Transform + pos: 0.5,-67.5 + parent: 3564 + - uid: 8953 + components: + - type: Transform + pos: 0.5,-68.5 + parent: 3564 + - uid: 8954 + components: + - type: Transform + pos: 0.5,-69.5 + parent: 3564 + - uid: 8955 + components: + - type: Transform + pos: 0.5,-70.5 + parent: 3564 + - uid: 8956 + components: + - type: Transform + pos: 0.5,-71.5 + parent: 3564 + - uid: 8957 + components: + - type: Transform + pos: 0.5,-72.5 + parent: 3564 + - uid: 8958 + components: + - type: Transform + pos: 0.5,-73.5 + parent: 3564 + - uid: 8959 + components: + - type: Transform + pos: 0.5,-74.5 + parent: 3564 + - uid: 8960 + components: + - type: Transform + pos: 0.5,-75.5 + parent: 3564 + - uid: 8961 + components: + - type: Transform + pos: 0.5,-76.5 + parent: 3564 + - uid: 8962 + components: + - type: Transform + pos: 0.5,-77.5 + parent: 3564 + - uid: 8963 + components: + - type: Transform + pos: 0.5,-78.5 + parent: 3564 + - uid: 8964 + components: + - type: Transform + pos: 0.5,-79.5 + parent: 3564 + - uid: 8965 + components: + - type: Transform + pos: 0.5,-80.5 + parent: 3564 + - uid: 8966 + components: + - type: Transform + pos: 0.5,-81.5 + parent: 3564 + - uid: 8967 + components: + - type: Transform + pos: 0.5,-82.5 + parent: 3564 + - uid: 8968 + components: + - type: Transform + pos: 0.5,-83.5 + parent: 3564 + - uid: 8969 + components: + - type: Transform + pos: 0.5,-84.5 + parent: 3564 + - uid: 8970 + components: + - type: Transform + pos: 0.5,-85.5 + parent: 3564 + - uid: 8971 + components: + - type: Transform + pos: 0.5,-86.5 + parent: 3564 + - uid: 8972 + components: + - type: Transform + pos: 0.5,-88.5 + parent: 3564 + - uid: 8973 + components: + - type: Transform + pos: 0.5,-89.5 + parent: 3564 + - uid: 8974 + components: + - type: Transform + pos: 0.5,-90.5 + parent: 3564 + - uid: 8975 + components: + - type: Transform + pos: 0.5,-91.5 + parent: 3564 + - uid: 8976 + components: + - type: Transform + pos: 0.5,-92.5 + parent: 3564 + - uid: 8977 + components: + - type: Transform + pos: 0.5,-87.5 + parent: 3564 + - uid: 8978 + components: + - type: Transform + pos: 1.5,-92.5 + parent: 3564 + - uid: 8979 + components: + - type: Transform + pos: 2.5,-92.5 + parent: 3564 + - uid: 8980 + components: + - type: Transform + pos: 3.5,-92.5 + parent: 3564 + - uid: 8981 + components: + - type: Transform + pos: 4.5,-92.5 + parent: 3564 + - uid: 8982 + components: + - type: Transform + pos: 5.5,-92.5 + parent: 3564 + - uid: 8983 + components: + - type: Transform + pos: 6.5,-92.5 + parent: 3564 + - uid: 8984 + components: + - type: Transform + pos: 6.5,-91.5 + parent: 3564 + - uid: 8985 + components: + - type: Transform + pos: 6.5,-90.5 + parent: 3564 + - uid: 8986 + components: + - type: Transform + pos: 6.5,-89.5 + parent: 3564 + - uid: 8987 + components: + - type: Transform + pos: 6.5,-88.5 + parent: 3564 + - uid: 8988 + components: + - type: Transform + pos: 6.5,-87.5 + parent: 3564 + - uid: 8989 + components: + - type: Transform + pos: 6.5,-86.5 + parent: 3564 + - uid: 8990 + components: + - type: Transform + pos: 6.5,-85.5 + parent: 3564 + - uid: 8991 + components: + - type: Transform + pos: 6.5,-84.5 + parent: 3564 + - uid: 8992 + components: + - type: Transform + pos: 6.5,-83.5 + parent: 3564 + - uid: 8993 + components: + - type: Transform + pos: 6.5,-82.5 + parent: 3564 + - uid: 8994 + components: + - type: Transform + pos: 6.5,-81.5 + parent: 3564 + - uid: 8995 + components: + - type: Transform + pos: 6.5,-80.5 + parent: 3564 + - uid: 8996 + components: + - type: Transform + pos: 5.5,-80.5 + parent: 3564 + - uid: 8997 + components: + - type: Transform + pos: 6.5,-79.5 + parent: 3564 + - uid: 8998 + components: + - type: Transform + pos: 6.5,-78.5 + parent: 3564 + - uid: 8999 + components: + - type: Transform + pos: 6.5,-77.5 + parent: 3564 + - uid: 9000 + components: + - type: Transform + pos: 6.5,-76.5 + parent: 3564 + - uid: 9001 + components: + - type: Transform + pos: 6.5,-75.5 + parent: 3564 + - uid: 9002 + components: + - type: Transform + pos: 6.5,-74.5 + parent: 3564 + - uid: 9003 + components: + - type: Transform + pos: 6.5,-73.5 + parent: 3564 + - uid: 9004 + components: + - type: Transform + pos: 6.5,-72.5 + parent: 3564 + - uid: 9005 + components: + - type: Transform + pos: 5.5,-72.5 + parent: 3564 + - uid: 9006 + components: + - type: Transform + pos: 6.5,-71.5 + parent: 3564 + - uid: 9007 + components: + - type: Transform + pos: 6.5,-70.5 + parent: 3564 + - uid: 9008 + components: + - type: Transform + pos: 6.5,-69.5 + parent: 3564 + - uid: 9009 + components: + - type: Transform + pos: 6.5,-68.5 + parent: 3564 + - uid: 9010 + components: + - type: Transform + pos: 6.5,-67.5 + parent: 3564 + - uid: 9011 + components: + - type: Transform + pos: 6.5,-66.5 + parent: 3564 + - uid: 9012 + components: + - type: Transform + pos: 6.5,-65.5 + parent: 3564 + - uid: 9013 + components: + - type: Transform + pos: 6.5,-64.5 + parent: 3564 + - uid: 9014 + components: + - type: Transform + pos: 6.5,-63.5 + parent: 3564 + - uid: 9015 + components: + - type: Transform + pos: 6.5,-62.5 + parent: 3564 + - uid: 9016 + components: + - type: Transform + pos: 6.5,-61.5 + parent: 3564 + - uid: 9017 + components: + - type: Transform + pos: 6.5,-60.5 + parent: 3564 + - uid: 9018 + components: + - type: Transform + pos: 6.5,-59.5 + parent: 3564 + - uid: 9019 + components: + - type: Transform + pos: 6.5,-58.5 + parent: 3564 + - uid: 9020 + components: + - type: Transform + pos: 6.5,-57.5 + parent: 3564 + - uid: 9021 + components: + - type: Transform + pos: 6.5,-56.5 + parent: 3564 + - uid: 9022 + components: + - type: Transform + pos: 6.5,-55.5 + parent: 3564 + - uid: 9023 + components: + - type: Transform + pos: 6.5,-53.5 + parent: 3564 + - uid: 9024 + components: + - type: Transform + pos: 6.5,-52.5 + parent: 3564 + - uid: 9025 + components: + - type: Transform + pos: 6.5,-51.5 + parent: 3564 + - uid: 9026 + components: + - type: Transform + pos: 6.5,-50.5 + parent: 3564 + - uid: 9027 + components: + - type: Transform + pos: 6.5,-49.5 + parent: 3564 + - uid: 9028 + components: + - type: Transform + pos: 6.5,-48.5 + parent: 3564 + - uid: 9029 + components: + - type: Transform + pos: 6.5,-47.5 + parent: 3564 + - uid: 9030 + components: + - type: Transform + pos: 6.5,-54.5 + parent: 3564 + - uid: 9031 + components: + - type: Transform + pos: 5.5,-55.5 + parent: 3564 + - uid: 9032 + components: + - type: Transform + pos: 26.5,-30.5 + parent: 3564 + - uid: 9033 + components: + - type: Transform + pos: 19.5,-44.5 + parent: 3564 + - uid: 9034 + components: + - type: Transform + pos: 19.5,-45.5 + parent: 3564 + - uid: 9035 + components: + - type: Transform + pos: 26.5,-44.5 + parent: 3564 + - uid: 9036 + components: + - type: Transform + pos: 26.5,-45.5 + parent: 3564 + - uid: 9037 + components: + - type: Transform + pos: 26.5,-48.5 + parent: 3564 + - uid: 9038 + components: + - type: Transform + pos: 26.5,-49.5 + parent: 3564 + - uid: 9039 + components: + - type: Transform + pos: 19.5,-48.5 + parent: 3564 + - uid: 9040 + components: + - type: Transform + pos: 19.5,-49.5 + parent: 3564 + - uid: 9041 + components: + - type: Transform + pos: 19.5,-52.5 + parent: 3564 + - uid: 9042 + components: + - type: Transform + pos: 19.5,-53.5 + parent: 3564 + - uid: 9043 + components: + - type: Transform + pos: 26.5,-52.5 + parent: 3564 + - uid: 9044 + components: + - type: Transform + pos: 26.5,-53.5 + parent: 3564 + - uid: 9045 + components: + - type: Transform + pos: 19.5,-34.5 + parent: 3564 + - uid: 9046 + components: + - type: Transform + pos: 19.5,-33.5 + parent: 3564 + - uid: 9047 + components: + - type: Transform + pos: 26.5,-32.5 + parent: 3564 + - uid: 9048 + components: + - type: Transform + pos: 26.5,-33.5 + parent: 3564 + - uid: 9049 + components: + - type: Transform + pos: 26.5,-36.5 + parent: 3564 + - uid: 9050 + components: + - type: Transform + pos: 26.5,-37.5 + parent: 3564 + - uid: 9051 + components: + - type: Transform + pos: 19.5,-36.5 + parent: 3564 + - uid: 9052 + components: + - type: Transform + pos: 19.5,-37.5 + parent: 3564 + - uid: 9053 + components: + - type: Transform + pos: 26.5,-29.5 + parent: 3564 + - uid: 9054 + components: + - type: Transform + pos: 26.5,-25.5 + parent: 3564 + - uid: 9055 + components: + - type: Transform + pos: 26.5,-26.5 + parent: 3564 + - uid: 9056 + components: + - type: Transform + pos: 26.5,-27.5 + parent: 3564 + - uid: 9057 + components: + - type: Transform + pos: 25.5,-24.5 + parent: 3564 + - uid: 9058 + components: + - type: Transform + pos: 20.5,-24.5 + parent: 3564 + - uid: 9059 + components: + - type: Transform + pos: 20.5,-25.5 + parent: 3564 + - uid: 9060 + components: + - type: Transform + pos: 20.5,-28.5 + parent: 3564 + - uid: 9061 + components: + - type: Transform + pos: 20.5,-29.5 + parent: 3564 + - uid: 9062 + components: + - type: Transform + pos: 20.5,-30.5 + parent: 3564 + - uid: 9063 + components: + - type: Transform + pos: 21.5,-24.5 + parent: 3564 + - uid: 9065 + components: + - type: Transform + pos: 20.5,-56.5 + parent: 3564 + - uid: 9066 + components: + - type: Transform + pos: 21.5,-56.5 + parent: 3564 + - uid: 9067 + components: + - type: Transform + pos: 25.5,-56.5 + parent: 3564 + - uid: 9068 + components: + - type: Transform + pos: 24.5,-56.5 + parent: 3564 + - uid: 9069 + components: + - type: Transform + pos: 20.5,-62.5 + parent: 3564 + - uid: 9070 + components: + - type: Transform + pos: 21.5,-62.5 + parent: 3564 + - uid: 9071 + components: + - type: Transform + pos: 24.5,-62.5 + parent: 3564 + - uid: 9072 + components: + - type: Transform + pos: 25.5,-62.5 + parent: 3564 + - uid: 9073 + components: + - type: Transform + pos: 26.5,-63.5 + parent: 3564 + - uid: 9074 + components: + - type: Transform + pos: 26.5,-64.5 + parent: 3564 + - uid: 9075 + components: + - type: Transform + pos: 26.5,-65.5 + parent: 3564 + - uid: 9076 + components: + - type: Transform + pos: 26.5,-67.5 + parent: 3564 + - uid: 9077 + components: + - type: Transform + pos: 26.5,-68.5 + parent: 3564 + - uid: 9078 + components: + - type: Transform + pos: 26.5,-69.5 + parent: 3564 + - uid: 9133 + components: + - type: Transform + pos: 10.5,-46.5 + parent: 3564 + - uid: 9136 + components: + - type: Transform + pos: 7.5,-46.5 + parent: 3564 + - uid: 9727 + components: + - type: Transform + pos: 31.5,-18.5 + parent: 3564 + - uid: 9730 + components: + - type: Transform + pos: 22.5,-24.5 + parent: 3564 + - uid: 9756 + components: + - type: Transform + pos: 26.5,-40.5 + parent: 3564 + - uid: 9757 + components: + - type: Transform + pos: 26.5,-41.5 + parent: 3564 + - uid: 9925 + components: + - type: Transform + pos: 65.5,-26.5 + parent: 2 + - uid: 10614 + components: + - type: Transform + pos: 65.5,-27.5 + parent: 2 + - uid: 11213 + components: + - type: Transform + pos: 50.5,-1.5 + parent: 2 + - uid: 11219 + components: + - type: Transform + pos: 28.5,-1.5 + parent: 2 + - uid: 11220 + components: + - type: Transform + pos: 24.5,-3.5 + parent: 2 + - uid: 11369 + components: + - type: Transform + pos: 23.5,-3.5 + parent: 2 + - uid: 11540 + components: + - type: Transform + pos: 22.5,-3.5 + parent: 2 + - uid: 11541 + components: + - type: Transform + pos: 24.5,-4.5 + parent: 2 + - uid: 11542 + components: + - type: Transform + pos: 24.5,-5.5 + parent: 2 + - uid: 11543 + components: + - type: Transform + pos: 24.5,-6.5 + parent: 2 + - uid: 11544 + components: + - type: Transform + pos: 23.5,-6.5 + parent: 2 + - uid: 11545 + components: + - type: Transform + pos: 22.5,-6.5 + parent: 2 + - uid: 11546 + components: + - type: Transform + pos: 29.5,-11.5 + parent: 2 + - uid: 11547 + components: + - type: Transform + pos: 28.5,-11.5 + parent: 2 + - uid: 11548 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 2 + - uid: 11557 + components: + - type: Transform + pos: 21.5,25.5 + parent: 2 + - uid: 11558 + components: + - type: Transform + pos: 23.5,26.5 + parent: 2 +- proto: GunpetInstrument + entities: + - uid: 11127 + components: + - type: Transform + pos: 54.5,20.5 parent: 2 - proto: GunSafeDisabler entities: - - uid: 1002 + - uid: 9698 components: - type: Transform - pos: 41.5,-4.5 - parent: 2 + pos: 32.5,-57.5 + parent: 3564 - proto: GunSafeLaserCarbine entities: - - uid: 1363 + - uid: 10445 components: - type: Transform - pos: 43.5,-7.5 - parent: 2 -- proto: GunSafePistolMk58 - entities: - - uid: 1365 - components: - - type: Transform - pos: 41.5,-7.5 - parent: 2 + pos: 33.5,-57.5 + parent: 3564 - proto: GunSafeRifleLecter entities: - - uid: 960 + - uid: 10448 components: - type: Transform - pos: 42.5,-7.5 - parent: 2 -- proto: GunSafeShotgunEnforcer - entities: - - uid: 1260 - components: - - type: Transform - pos: 43.5,-4.5 - parent: 2 + pos: 36.5,-57.5 + parent: 3564 - proto: GunSafeShotgunKammerer entities: - - uid: 1298 + - uid: 10447 components: - type: Transform - pos: 44.5,-7.5 - parent: 2 + pos: 35.5,-57.5 + parent: 3564 - proto: GunSafeSubMachineGunDrozd entities: - - uid: 1345 + - uid: 10446 components: - type: Transform - pos: 42.5,-4.5 - parent: 2 -- proto: GunSafeSubMachineGunWt550 - entities: - - uid: 7652 - components: - - type: Transform - pos: 44.5,-4.5 - parent: 2 + pos: 34.5,-57.5 + parent: 3564 - proto: Handcuffs entities: + - uid: 1104 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 2 - uid: 1509 components: - type: Transform pos: 10.5,-8.5 parent: 2 - - uid: 2224 + - uid: 1593 components: - type: Transform - pos: 33.5,-6.5 + pos: 35.5,-2.5 parent: 2 - - uid: 2281 + - uid: 1762 components: - type: Transform - pos: 33.5,-6.5 + pos: 34.5,-2.5 parent: 2 - - uid: 7120 + - uid: 1767 components: - type: Transform - pos: 33.5,-5.5 + pos: 35.5,-2.5 parent: 2 - - uid: 7203 + - uid: 1811 components: - type: Transform - pos: 33.5,-5.5 + pos: 34.5,-2.5 parent: 2 - - uid: 7258 + - uid: 1813 components: - type: Transform - pos: 33.5,-4.5 - parent: 2 - - uid: 7259 - components: - - type: Transform - pos: 33.5,-4.5 + pos: 33.5,-2.5 parent: 2 - uid: 7511 components: @@ -35524,6 +48857,203 @@ entities: - type: Transform pos: 48.5,19.5 parent: 2 + - uid: 10435 + components: + - type: Transform + pos: 30.5,-60.5 + parent: 3564 + - uid: 10436 + components: + - type: Transform + pos: 30.5,-60.5 + parent: 3564 + - uid: 10437 + components: + - type: Transform + pos: 30.5,-60.5 + parent: 3564 + - uid: 10438 + components: + - type: Transform + pos: 30.5,-61.5 + parent: 3564 + - uid: 10439 + components: + - type: Transform + pos: 30.5,-61.5 + parent: 3564 + - uid: 10440 + components: + - type: Transform + pos: 30.5,-61.5 + parent: 3564 + - uid: 10625 + components: + - type: Transform + pos: 36.5,-27.5 + parent: 3564 + - uid: 10626 + components: + - type: Transform + pos: 36.5,-27.5 + parent: 3564 + - uid: 10627 + components: + - type: Transform + pos: 36.5,-27.5 + parent: 3564 + - uid: 10628 + components: + - type: Transform + pos: 36.5,-27.5 + parent: 3564 + - uid: 10629 + components: + - type: Transform + pos: 36.5,-28.5 + parent: 3564 + - uid: 10630 + components: + - type: Transform + pos: 36.5,-28.5 + parent: 3564 + - uid: 10631 + components: + - type: Transform + pos: 36.5,-28.5 + parent: 3564 + - uid: 10632 + components: + - type: Transform + pos: 36.5,-28.5 + parent: 3564 + - uid: 10633 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 3564 + - uid: 10634 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 3564 + - uid: 10635 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 3564 + - uid: 10636 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 3564 + - uid: 10637 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 3564 + - uid: 10638 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - uid: 10639 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - uid: 10640 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - uid: 10641 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - uid: 10642 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - uid: 10643 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 3564 + - uid: 10644 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 3564 + - uid: 10645 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 3564 + - uid: 10646 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 3564 + - uid: 10647 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 3564 + - uid: 10648 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 3564 + - uid: 10649 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 3564 + - uid: 10650 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 3564 + - uid: 10651 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 3564 + - uid: 10652 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 3564 + - uid: 10653 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 3564 + - uid: 10654 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 3564 + - uid: 10655 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - uid: 10656 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 3564 +- proto: HandheldHealthAnalyzer + entities: + - uid: 10341 + components: + - type: Transform + pos: 28.5,-16.5 + parent: 3564 - proto: HandheldHealthAnalyzerUnpowered entities: - uid: 7446 @@ -35533,10 +49063,17 @@ entities: parent: 2 - proto: HandLabeler entities: - - uid: 7421 + - uid: 60 components: - type: Transform - pos: 31.5,10.5 + pos: 29.5,8.5 + parent: 2 +- proto: HandTeleporter + entities: + - uid: 11347 + components: + - type: Transform + pos: -5.5,5.5 parent: 2 - proto: HeatExchanger entities: @@ -35638,11 +49175,189 @@ entities: rot: 3.141592653589793 rad pos: 13.5,47.5 parent: 2 - - uid: 1644 + - uid: 7568 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,38.5 + pos: 17.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 7572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,30.5 + parent: 2 + - uid: 7591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,29.5 + parent: 2 + - uid: 7592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,28.5 + parent: 2 + - uid: 7593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,29.5 + parent: 2 + - uid: 7598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,30.5 + parent: 2 + - uid: 7602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 7603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,29.5 + parent: 2 + - uid: 7606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,30.5 + parent: 2 + - uid: 7608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,29.5 + parent: 2 + - uid: 7610 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,28.5 + parent: 2 + - uid: 7611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,28.5 + parent: 2 + - uid: 7613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,28.5 + parent: 2 + - uid: 7614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,28.5 + parent: 2 + - uid: 7632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,30.5 + parent: 2 + - uid: 7633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,30.5 + parent: 2 + - uid: 7634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,30.5 + parent: 2 + - uid: 7635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,30.5 + parent: 2 + - uid: 7636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,31.5 + parent: 2 + - uid: 7637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,31.5 + parent: 2 + - uid: 7638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,31.5 + parent: 2 + - uid: 7639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,31.5 + parent: 2 + - uid: 7640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,31.5 + parent: 2 + - uid: 7642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,27.5 + parent: 2 + - uid: 7643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,27.5 + parent: 2 + - uid: 7644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,27.5 + parent: 2 + - uid: 7645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,27.5 + parent: 2 + - uid: 7646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,27.5 + parent: 2 + - uid: 7647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,27.5 + parent: 2 + - uid: 7648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,27.5 parent: 2 - proto: HeatExchangerBend entities: @@ -35659,14 +49374,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 783 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - uid: 800 components: - type: Transform @@ -35747,408 +49454,370 @@ entities: - type: Transform pos: 12.5,47.5 parent: 2 - - uid: 1642 + - uid: 7487 components: - type: Transform - pos: 21.5,39.5 + pos: 25.5,31.5 parent: 2 - - type: AtmosPipeColor - color: '#947507FF' + - uid: 7489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,30.5 + parent: 2 + - uid: 7500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,27.5 + parent: 2 + - uid: 7535 + components: + - type: Transform + pos: 25.5,28.5 + parent: 2 + - uid: 7536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,31.5 + parent: 2 + - uid: 7553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,28.5 + parent: 2 + - uid: 7563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,28.5 + parent: 2 + - uid: 7565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,30.5 + parent: 2 + - uid: 7566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,28.5 + parent: 2 + - uid: 7641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,27.5 + parent: 2 +- proto: HighSecArmoryLocked + entities: + - uid: 10396 + components: + - type: Transform + pos: 31.5,-58.5 + parent: 3564 + - uid: 10397 + components: + - type: Transform + pos: 31.5,-59.5 + parent: 3564 - proto: HighSecCommandLocked entities: - - uid: 2171 + - uid: 1896 components: - type: Transform - pos: 59.5,6.5 + pos: 36.5,54.5 parent: 2 - - uid: 2787 - components: - - type: Transform - pos: 11.5,-11.5 - parent: 2 -- proto: HolopadAiCore - entities: - - uid: 7782 - components: - - type: Transform - pos: 45.5,49.5 - parent: 2 -- proto: HolopadAiUpload - entities: - - uid: 7783 - components: - - type: Transform - pos: 32.5,53.5 - parent: 2 -- proto: HolopadCargoBay - entities: - - uid: 7796 - components: - - type: Transform - pos: 12.5,24.5 - parent: 2 -- proto: HolopadCargoFront - entities: - - uid: 7797 - components: - - type: Transform - pos: 17.5,24.5 - parent: 2 -- proto: HolopadCommandBridge - entities: - - uid: 7793 - components: - - type: Transform - pos: 57.5,31.5 - parent: 2 -- proto: HolopadCommandBridgeHallway +- proto: HolopadAiMain entities: - uid: 7792 components: - type: Transform - pos: 49.5,33.5 + pos: 45.5,50.5 parent: 2 +- proto: HolopadAiUpload + entities: + - uid: 7793 + components: + - type: Transform + pos: 31.5,54.5 + parent: 2 +- proto: HolopadCommandBridge + entities: + - uid: 7546 + components: + - type: Transform + pos: 57.5,31.5 + parent: 2 + - type: Label + currentLabel: Command - Control Room - proto: HolopadCommandCaptain entities: - - uid: 7795 + - uid: 7545 components: - type: Transform - pos: 59.5,21.5 - parent: 2 -- proto: HolopadCommandCe - entities: - - uid: 7798 - components: - - type: Transform - pos: 44.5,32.5 - parent: 2 -- proto: HolopadCommandCmo - entities: - - uid: 7801 - components: - - type: Transform - pos: 23.5,15.5 + pos: 57.5,22.5 parent: 2 + - type: Label + currentLabel: Command - Secure Storage - proto: HolopadCommandHop entities: - - uid: 7810 + - uid: 2392 components: - type: Transform - pos: 43.5,28.5 + pos: 45.5,27.5 parent: 2 -- proto: HolopadCommandQm +- proto: HolopadEngineeringAME entities: - - uid: 7817 + - uid: 7786 components: - type: Transform - pos: 15.5,31.5 - parent: 2 -- proto: HolopadCommandRd - entities: - - uid: 7818 - components: - - type: Transform - pos: 52.5,13.5 - parent: 2 -- proto: HolopadCommandVault - entities: - - uid: 7826 - components: - - type: Transform - pos: 60.5,7.5 - parent: 2 -- proto: HolopadEngineeringAtmosFront - entities: - - uid: 7788 - components: - - type: Transform - pos: 29.5,26.5 + pos: 45.5,36.5 parent: 2 - proto: HolopadEngineeringAtmosMain entities: - - uid: 7789 + - uid: 7782 components: - type: Transform - pos: 21.5,34.5 + pos: 28.5,-8.5 parent: 2 - proto: HolopadEngineeringAtmosTeg entities: - - uid: 7823 + - uid: 1562 components: - type: Transform - pos: 15.5,37.5 - parent: 2 -- proto: HolopadEngineeringFront - entities: - - uid: 7805 - components: - - type: Transform - pos: 30.5,23.5 + pos: 20.5,33.5 parent: 2 - proto: HolopadEngineeringMain entities: - - uid: 7806 + - uid: 5342 components: - type: Transform - pos: 35.5,32.5 + pos: 33.5,31.5 parent: 2 - proto: HolopadEngineeringStorage entities: - - uid: 7807 + - uid: 4742 components: - type: Transform - pos: 34.5,38.5 + pos: 20.5,41.5 parent: 2 -- proto: HolopadEngineeringTechVault +- proto: HolopadEngineeringTelecoms entities: - - uid: 7824 + - uid: 1505 components: - type: Transform - pos: 7.5,-11.5 + pos: -4.5,6.5 parent: 2 - proto: HolopadGeneralArrivals entities: - - uid: 7786 + - uid: 7783 components: - type: Transform pos: 60.5,48.5 parent: 2 - proto: HolopadGeneralCryosleep entities: - - uid: 7803 + - uid: 5211 components: - type: Transform - pos: 1.5,-0.5 - parent: 2 -- proto: HolopadGeneralDisposals - entities: - - uid: 7804 - components: - - type: Transform - pos: -6.5,5.5 + pos: 2.5,-1.5 parent: 2 - proto: HolopadGeneralEvac entities: - - uid: 7809 + - uid: 3048 components: - type: Transform pos: 59.5,-0.5 parent: 2 + - uid: 7751 + components: + - type: Transform + pos: 47.5,-14.5 + parent: 2 + - type: Label + currentLabel: General - Observation - proto: HolopadGeneralEVAStorage entities: - - uid: 7808 + - uid: 3753 components: - type: Transform pos: 51.5,40.5 parent: 2 -- proto: HolopadGeneralLounge - entities: - - uid: 7813 - components: - - type: Transform - pos: 16.5,1.5 - parent: 2 -- proto: HolopadGeneralTools - entities: - - uid: 7825 - components: - - type: Transform - pos: 44.5,20.5 - parent: 2 -- proto: HolopadMedicalBreakroom - entities: - - uid: 7815 - components: - - type: Transform - pos: 27.5,15.5 - parent: 2 - proto: HolopadMedicalChemistry entities: - - uid: 7800 + - uid: 5862 components: - type: Transform - pos: 31.5,9.5 + pos: 32.5,10.5 parent: 2 -- proto: HolopadMedicalFront +- proto: HolopadMedicalMedbay entities: - - uid: 7814 + - uid: 2191 components: - type: Transform - pos: 14.5,12.5 + pos: 17.5,11.5 parent: 2 - proto: HolopadMedicalMorgue entities: - - uid: 7816 + - uid: 2047 components: - type: Transform pos: 3.5,14.5 parent: 2 -- proto: HolopadScienceAnomaly - entities: - - uid: 7784 - components: - - type: Transform - pos: 47.5,12.5 - parent: 2 -- proto: HolopadScienceArtifact - entities: - - uid: 7787 - components: - - type: Transform - pos: 50.5,3.5 - parent: 2 - proto: HolopadScienceFront entities: - - uid: 7820 + - uid: 1539 components: - type: Transform - pos: 46.5,7.5 - parent: 2 -- proto: HolopadScienceRobotics - entities: - - uid: 7819 - components: - - type: Transform - pos: 54.5,8.5 - parent: 2 -- proto: HolopadSecurityArmory - entities: - - uid: 7785 - components: - - type: Transform - pos: 41.5,-5.5 - parent: 2 -- proto: HolopadSecurityBreakroom - entities: - - uid: 7822 - components: - - type: Transform - pos: 34.5,-5.5 - parent: 2 -- proto: HolopadSecurityBrig - entities: - - uid: 7794 - components: - - type: Transform - pos: 43.5,-0.5 + pos: 51.5,5.5 parent: 2 - proto: HolopadSecurityCourtroom entities: - - uid: 7802 + - uid: 5345 components: - type: Transform pos: 58.5,15.5 parent: 2 + - type: Label + currentLabel: Security - Assembly Room - proto: HolopadSecurityFront entities: - - uid: 7821 + - uid: 1535 components: - type: Transform - pos: 37.5,1.5 - parent: 2 -- proto: HolopadServiceBar - entities: - - uid: 7791 - components: - - type: Transform - pos: 25.5,-4.5 - parent: 2 -- proto: HolopadServiceBotany - entities: - - uid: 7790 - components: - - type: Transform - pos: 14.5,-7.5 + pos: 38.5,0.5 parent: 2 - proto: HolopadServiceChapel entities: - - uid: 7799 + - uid: 6177 components: - type: Transform pos: -1.5,12.5 parent: 2 -- proto: HolopadServiceJanitor +- proto: HydroponicsToolMiniHoe entities: - - uid: 7811 + - uid: 10556 components: - type: Transform - pos: 0.5,7.5 - parent: 2 -- proto: HolopadServiceKitchen + pos: 11.5,-20.5 + parent: 3564 +- proto: HydroponicsTrayEmpty entities: - - uid: 7812 + - uid: 10548 components: - type: Transform - pos: 23.5,-9.5 - parent: 2 -- proto: hydroponicsTray - entities: - - uid: 140 + pos: 10.5,-22.5 + parent: 3564 + - uid: 10549 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-7.5 - parent: 2 - - uid: 1293 + pos: 11.5,-22.5 + parent: 3564 + - uid: 10550 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-7.5 - parent: 2 - - uid: 1384 + pos: 12.5,-22.5 + parent: 3564 + - uid: 10551 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-6.5 - parent: 2 - - uid: 1440 + pos: 10.5,-23.5 + parent: 3564 + - uid: 10552 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-6.5 - parent: 2 - - uid: 7656 + pos: 11.5,-23.5 + parent: 3564 + - uid: 10553 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-7.5 - parent: 2 - - uid: 8314 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-6.5 - parent: 2 -- proto: IDComputerCircuitboard - entities: - - uid: 2187 - components: - - type: Transform - pos: 13.5,-11.5 - parent: 2 + pos: 12.5,-23.5 + parent: 3564 - proto: Igniter entities: + - uid: 1487 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 7170 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 7411 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 7567 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 - uid: 7722 components: - type: Transform pos: 44.5,19.5 parent: 2 - - uid: 7723 + - uid: 8275 components: - type: Transform - pos: 47.5,20.5 + pos: 52.5,9.5 parent: 2 - - uid: 7724 + - uid: 8277 components: - type: Transform - pos: 48.5,20.5 + pos: 52.5,9.5 parent: 2 -- proto: IngotGold1 - entities: - - uid: 2162 + - uid: 8316 components: - type: Transform - pos: 62.642864,9.959549 + pos: 52.5,9.5 + parent: 2 + - uid: 8399 + components: + - type: Transform + pos: 38.5,30.5 + parent: 2 + - uid: 8406 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 8412 + components: + - type: Transform + pos: 38.5,29.5 + parent: 2 + - uid: 11132 + components: + - type: Transform + pos: 49.5,20.5 + parent: 2 + - uid: 11135 + components: + - type: Transform + pos: 51.5,20.5 + parent: 2 + - uid: 11215 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 11216 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 11217 + components: + - type: Transform + pos: 52.5,9.5 parent: 2 - proto: IntercomCommand entities: @@ -36170,11 +49839,22 @@ entities: parent: 2 - proto: IntercomCommon entities: + - uid: 36 + components: + - type: Transform + pos: 26.5,8.5 + parent: 2 - uid: 4185 components: - type: Transform pos: 46.5,52.5 parent: 2 + - uid: 4930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,22.5 + parent: 2 - uid: 7492 components: - type: Transform @@ -36192,24 +49872,12 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,-0.5 parent: 2 - - uid: 7553 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,9.5 - parent: 2 - uid: 7554 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-11.5 parent: 2 - - uid: 7571 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-6.5 - parent: 2 - uid: 7577 components: - type: Transform @@ -36221,30 +49889,73 @@ entities: rot: -1.5707963267948966 rad pos: 63.5,15.5 parent: 2 - - uid: 7596 + - uid: 8537 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,27.5 + pos: 11.5,28.5 parent: 2 - - uid: 7597 +- proto: IntercomEngineering + entities: + - uid: 846 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,28.5 + pos: 29.5,32.5 parent: 2 - - uid: 7606 + - uid: 3008 components: - type: Transform + pos: 15.5,40.5 + parent: 2 + - uid: 3072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,20.5 + parent: 2 + - uid: 5122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-7.5 + parent: 2 + - uid: 6553 + components: + - type: Transform + rot: 3.141592653589793 rad pos: 34.5,36.5 parent: 2 - - uid: 7607 + - uid: 6557 components: - type: Transform - pos: 21.5,35.5 + rot: 1.5707963267948966 rad + pos: 31.5,25.5 + parent: 2 + - uid: 6598 + components: + - type: Transform + pos: 31.5,36.5 + parent: 2 + - uid: 7482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,33.5 + parent: 2 + - uid: 8563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,1.5 parent: 2 - proto: IntercomMedical entities: + - uid: 1913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,12.5 + parent: 2 - uid: 7443 components: - type: Transform @@ -36258,130 +49969,139 @@ entities: - type: Transform pos: 45.5,52.5 parent: 2 -- proto: JanitorialTrolley +- proto: JetpackBlueFilled entities: - - uid: 1881 + - uid: 8636 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,6.5 + pos: 51.5,41.5 parent: 2 -- proto: Jukebox - entities: - - uid: 4065 + - uid: 8637 components: - type: Transform - pos: 31.5,-4.5 + pos: 52.5,41.5 parent: 2 + - uid: 8638 + components: + - type: Transform + pos: 53.5,41.5 + parent: 2 + - uid: 8639 + components: + - type: Transform + pos: 54.5,41.5 + parent: 2 + - uid: 10483 + components: + - type: Transform + pos: 25.5,-69.5 + parent: 3564 + - uid: 10484 + components: + - type: Transform + pos: 24.5,-69.5 + parent: 3564 + - uid: 10485 + components: + - type: Transform + pos: 21.5,-69.5 + parent: 3564 + - uid: 10486 + components: + - type: Transform + pos: 20.5,-69.5 + parent: 3564 + - uid: 10487 + components: + - type: Transform + pos: 19.5,-69.5 + parent: 3564 - proto: KitchenElectricGrill entities: - - uid: 2856 + - uid: 10568 components: - type: Transform - pos: 24.5,-10.5 - parent: 2 -- proto: KitchenKnife - entities: - - uid: 7118 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.422783,13.597005 - parent: 2 + pos: 12.5,-29.5 + parent: 3564 - proto: KitchenMicrowave entities: - - uid: 2854 + - uid: 10573 components: - type: Transform - pos: 22.5,-10.5 - parent: 2 + pos: 9.5,-28.5 + parent: 3564 - proto: KitchenReagentGrinder entities: - - uid: 135 + - uid: 41 components: - type: Transform - pos: 14.5,-8.5 + pos: 34.5,10.5 parent: 2 - - uid: 764 - components: - - type: Transform - pos: 30.5,8.5 - parent: 2 - - uid: 2855 - components: - - type: Transform - pos: 23.5,-10.5 - parent: 2 -- proto: KitchenSpike +- proto: LampInterrogator entities: - - uid: 2378 + - uid: 10326 components: - type: Transform - pos: 29.5,-12.5 + pos: 15.5,-32.5 + parent: 3564 +- proto: LightReplacer + entities: + - uid: 11556 + components: + - type: Transform + pos: 42.5,21.5 parent: 2 - proto: LockerAtmosphericsFilled entities: - - uid: 1688 + - uid: 3815 components: - type: Transform - pos: 30.5,35.5 + pos: 39.5,-9.5 parent: 2 - - uid: 1689 + - uid: 3817 components: - type: Transform - pos: 29.5,35.5 + pos: 40.5,-9.5 parent: 2 - - uid: 1722 + - uid: 3819 components: - type: Transform - pos: 31.5,35.5 + pos: 41.5,-9.5 parent: 2 -- proto: LockerBoozeFilled +- proto: LockerBrigmedicFilled entities: - - uid: 1498 + - uid: 10332 components: - type: Transform - pos: 23.5,0.5 - parent: 2 -- proto: LockerBotanistFilled - entities: - - uid: 1018 - components: - - type: Transform - pos: 15.5,-5.5 - parent: 2 - - uid: 1631 - components: - - type: Transform - pos: 14.5,-5.5 - parent: 2 + pos: 23.5,-16.5 + parent: 3564 - proto: LockerCaptainFilledNoLaser entities: - - uid: 2385 + - uid: 6176 components: - type: Transform - pos: 60.5,25.5 + pos: 59.5,24.5 parent: 2 - proto: LockerChemistryFilled entities: - - uid: 699 + - uid: 1105 components: - type: Transform - pos: 34.5,8.5 + pos: 30.5,12.5 parent: 2 -- proto: LockerChiefEngineerFilled +- proto: LockerChiefEngineerFilledHardsuit entities: - - uid: 1609 + - uid: 8325 components: - type: Transform - pos: 47.5,34.5 + pos: 18.5,42.5 parent: 2 - proto: LockerChiefMedicalOfficerFilledHardsuit entities: - - uid: 68 + - uid: 2855 components: - type: Transform - pos: 22.5,13.5 + pos: 22.5,16.5 parent: 2 - proto: LockerDetectiveFilled entities: @@ -36390,95 +50110,148 @@ entities: - type: Transform pos: 36.5,2.5 parent: 2 -- proto: LockerElectricalSupplies - entities: - - uid: 7648 + - uid: 10502 components: - type: Transform - pos: 34.5,39.5 - parent: 2 + pos: 33.5,-25.5 + parent: 3564 - proto: LockerElectricalSuppliesFilled entities: - - uid: 1599 + - uid: 1726 components: - type: Transform - pos: 39.5,38.5 + pos: 22.5,42.5 parent: 2 - proto: LockerEngineerFilled entities: - - uid: 1566 + - uid: 1715 components: - type: Transform - pos: 39.5,41.5 + pos: 21.5,42.5 parent: 2 - - uid: 1567 + - uid: 4674 components: - type: Transform - pos: 39.5,40.5 + pos: 19.5,42.5 parent: 2 - - uid: 1783 + - uid: 4694 components: - type: Transform - pos: 39.5,39.5 + pos: 20.5,42.5 parent: 2 +- proto: LockerEvidence + entities: + - uid: 10503 + components: + - type: Transform + pos: 27.5,-25.5 + parent: 3564 + - uid: 10504 + components: + - type: Transform + pos: 28.5,-25.5 + parent: 3564 + - uid: 10505 + components: + - type: Transform + pos: 29.5,-25.5 + parent: 3564 + - uid: 10506 + components: + - type: Transform + pos: 30.5,-25.5 + parent: 3564 + - uid: 10507 + components: + - type: Transform + pos: 32.5,-25.5 + parent: 3564 + - uid: 10508 + components: + - type: Transform + pos: 27.5,-30.5 + parent: 3564 + - uid: 10509 + components: + - type: Transform + pos: 28.5,-30.5 + parent: 3564 + - uid: 10510 + components: + - type: Transform + pos: 29.5,-30.5 + parent: 3564 - proto: LockerFreezerVaultFilled entities: - - uid: 2165 + - uid: 7723 components: - type: Transform - pos: 61.5,10.5 + pos: 56.5,23.5 parent: 2 - proto: LockerHeadOfPersonnelFilled entities: - - uid: 2277 + - uid: 8317 components: - type: Transform pos: 41.5,29.5 parent: 2 -- proto: LockerHeadOfSecurityFilled +- proto: LockerHeadOfSecurityFilledHardsuit entities: - - uid: 6814 + - uid: 54 components: - type: Transform pos: 33.5,-0.5 parent: 2 +- proto: LockerMedicalFilled + entities: + - uid: 1533 + components: + - type: Transform + pos: 29.5,13.5 + parent: 2 + - uid: 2156 + components: + - type: Transform + pos: 29.5,16.5 + parent: 2 + - uid: 10335 + components: + - type: Transform + pos: 26.5,-23.5 + parent: 3564 + - uid: 10336 + components: + - type: Transform + pos: 27.5,-23.5 + parent: 3564 - proto: LockerMedicineFilled entities: - - uid: 626 + - uid: 2856 components: - type: Transform - pos: 26.5,16.5 - parent: 2 - - uid: 766 - components: - - type: Transform - pos: 27.5,16.5 + pos: 29.5,12.5 parent: 2 - uid: 7444 components: - type: Transform pos: 12.5,16.5 parent: 2 -- proto: LockerParamedicFilled - entities: - - uid: 3161 + - uid: 10333 components: - type: Transform - pos: 28.5,16.5 - parent: 2 -- proto: LockerQuarterMasterFilled - entities: - - uid: 7635 + pos: 22.5,-16.5 + parent: 3564 + - uid: 10334 components: - type: Transform - pos: 11.5,32.5 - parent: 2 -- proto: LockerResearchDirectorFilled + pos: 21.5,-16.5 + parent: 3564 +- proto: LockerResearchDirectorFilledHardsuit entities: - - uid: 1542 + - uid: 1563 components: - type: Transform - pos: 50.5,14.5 + pos: 49.5,9.5 parent: 2 - proto: LockerScienceFilled entities: @@ -36509,6 +50282,113 @@ entities: - type: Transform pos: 8.5,-5.5 parent: 2 +- proto: LockerSteel + entities: + - uid: 935 + components: + - type: Transform + pos: 58.5,48.5 + parent: 2 + - uid: 1018 + components: + - type: Transform + pos: 58.5,47.5 + parent: 2 + - uid: 2618 + components: + - type: Transform + pos: 13.5,7.5 + parent: 2 + - uid: 7372 + components: + - type: Transform + pos: 58.5,51.5 + parent: 2 + - uid: 7373 + components: + - type: Transform + pos: 58.5,50.5 + parent: 2 + - uid: 7376 + components: + - type: Transform + pos: 58.5,46.5 + parent: 2 + - uid: 7384 + components: + - type: Transform + pos: 58.5,49.5 + parent: 2 + - uid: 8575 + components: + - type: Transform + pos: 8.5,2.5 + parent: 2 + - uid: 8576 + components: + - type: Transform + pos: 12.5,2.5 + parent: 2 + - uid: 8577 + components: + - type: Transform + pos: 12.5,7.5 + parent: 2 + - uid: 8578 + components: + - type: Transform + pos: 11.5,7.5 + parent: 2 + - uid: 8579 + components: + - type: Transform + pos: 10.5,7.5 + parent: 2 + - uid: 8580 + components: + - type: Transform + pos: 9.5,7.5 + parent: 2 + - uid: 8581 + components: + - type: Transform + pos: 8.5,7.5 + parent: 2 + - uid: 8582 + components: + - type: Transform + pos: 7.5,7.5 + parent: 2 + - uid: 8583 + components: + - type: Transform + pos: 6.5,7.5 + parent: 2 + - uid: 8584 + components: + - type: Transform + pos: 4.5,7.5 + parent: 2 + - uid: 10498 + components: + - type: Transform + pos: 30.5,-30.5 + parent: 3564 + - uid: 10499 + components: + - type: Transform + pos: 31.5,-30.5 + parent: 3564 + - uid: 10500 + components: + - type: Transform + pos: 32.5,-30.5 + parent: 3564 + - uid: 10501 + components: + - type: Transform + pos: 33.5,-30.5 + parent: 3564 - proto: LockerWardenFilled entities: - uid: 1353 @@ -36516,18 +50396,34 @@ entities: - type: Transform pos: 33.5,0.5 parent: 2 +- proto: LockerWardenFilledHardsuit + entities: + - uid: 10431 + components: + - type: Transform + pos: 31.5,-69.5 + parent: 3564 - proto: LockerWeldingSuppliesFilled entities: - - uid: 1600 + - uid: 1728 components: - type: Transform - pos: 39.5,37.5 + pos: 23.5,42.5 parent: 2 - - uid: 7647 +- proto: LogicGateOr + entities: + - uid: 6692 components: - type: Transform - pos: 33.5,39.5 + pos: 12.5,30.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 2984: + - - Output + - DoorBolt - proto: LogicGateXor entities: - uid: 1839 @@ -36562,52 +50458,57 @@ entities: 1848: - - Output - DoorBolt - - uid: 6658 + - uid: 3235 components: - type: Transform - anchored: True - pos: 63.5,48.5 + pos: 57.5,-19.5 parent: 2 - - type: Physics - canCollide: False - bodyType: Static - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 2502: + 3232: - - Output - DoorBolt -- proto: MachineAnomalyGenerator +- proto: LootSpawnerArmory entities: - - uid: 1326 + - uid: 10455 components: - type: Transform - pos: 47.5,13.5 - parent: 2 + pos: 35.5,-59.5 + parent: 3564 +- proto: LootSpawnerArmoryArmorOnly + entities: + - uid: 10456 + components: + - type: Transform + pos: 34.5,-59.5 + parent: 3564 +- proto: LootSpawnerArmoryGunsOnly + entities: + - uid: 10457 + components: + - type: Transform + pos: 36.5,-59.5 + parent: 3564 - proto: MachineAnomalyVessel entities: - - uid: 1515 + - uid: 2379 components: - type: Transform - pos: 47.5,11.5 - parent: 2 - - uid: 2341 - components: - - type: Transform - pos: 46.5,11.5 + pos: 48.5,2.5 parent: 2 - proto: MachineAPE entities: - - uid: 1544 + - uid: 6762 components: - type: Transform - pos: 48.5,9.5 + pos: 48.5,4.5 parent: 2 - - uid: 1556 + - uid: 11210 components: - type: Transform - pos: 49.5,9.5 + pos: 48.5,3.5 parent: 2 - proto: MachineArtifactAnalyzer entities: @@ -36616,22 +50517,36 @@ entities: - type: Transform pos: 53.5,0.5 parent: 2 -- proto: MagazinePistolSubMachineGunUranium +- proto: MachineCentrifuge entities: - - uid: 718 + - uid: 2809 components: - type: Transform - pos: 62.593937,23.56012 + pos: 34.5,9.5 parent: 2 - - uid: 741 +- proto: MachineElectrolysisUnit + entities: + - uid: 1657 components: - type: Transform - pos: 62.500187,24.52887 + pos: 31.5,8.5 parent: 2 - - uid: 790 +- proto: MagazinePistolSubMachineGun + entities: + - uid: 1914 components: - type: Transform - pos: 62.578312,25.481995 + pos: 62.5,23.5 + parent: 2 + - uid: 1927 + components: + - type: Transform + pos: 62.5,24.5 + parent: 2 + - uid: 1931 + components: + - type: Transform + pos: 62.5,25.5 parent: 2 - proto: MaintenanceFluffSpawner entities: @@ -36642,10 +50557,20 @@ entities: parent: 2 - proto: MaintenanceInsulsSpawner entities: - - uid: 8311 + - uid: 4689 components: - type: Transform - pos: 51.5,19.5 + pos: 11.5,-10.5 + parent: 2 + - uid: 5934 + components: + - type: Transform + pos: 14.5,31.5 + parent: 2 + - uid: 11129 + components: + - type: Transform + pos: 54.5,20.5 parent: 2 - proto: MaintenancePlantSpawner entities: @@ -36654,44 +50579,36 @@ entities: - type: Transform pos: 61.5,23.5 parent: 2 - - uid: 7677 - components: - - type: Transform - pos: 33.5,-9.5 - parent: 2 -- proto: MaintenanceToolSpawner +- proto: MaintenanceWeaponSpawner entities: - - uid: 7676 + - uid: 5977 components: - type: Transform - pos: 37.5,-12.5 + pos: 17.5,24.5 + parent: 2 +- proto: MaterialBiomass1 + entities: + - uid: 6691 + components: + - type: Transform + pos: 11.5,26.5 parent: 2 - proto: MaterialCloth10 entities: - - uid: 7715 + - uid: 2948 components: - type: Transform - pos: 47.5,20.5 - parent: 2 - - uid: 7716 - components: - - type: Transform - pos: 44.5,19.5 + pos: 45.5,21.5 parent: 2 - proto: MaterialWoodPlank10 entities: - - uid: 7695 + - uid: 11142 components: - type: Transform - pos: 46.5,19.5 + pos: 50.5,19.5 parent: 2 - proto: MedicalBed entities: - - uid: 608 - components: - - type: Transform - pos: 15.5,9.5 - parent: 2 - uid: 637 components: - type: Transform @@ -36707,53 +50624,89 @@ entities: - type: Transform pos: 13.5,9.5 parent: 2 + - uid: 9064 + components: + - type: Transform + pos: 22.5,-23.5 + parent: 3564 + - uid: 9731 + components: + - type: Transform + pos: 21.5,-23.5 + parent: 3564 - proto: MedicalTechFab entities: - - uid: 7268 + - uid: 2331 components: - type: Transform - pos: 29.5,16.5 + pos: 22.5,14.5 parent: 2 -- proto: MedkitBrute + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices +- proto: MedkitBruteFilled entities: - - uid: 7367 + - uid: 6464 components: - type: Transform pos: 33.5,16.5 parent: 2 - - uid: 7374 + - uid: 6465 components: - type: Transform pos: 33.5,16.5 parent: 2 -- proto: MedkitBurn +- proto: MedkitBurnFilled entities: - - uid: 7361 + - uid: 6466 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 2 + - uid: 6467 components: - type: Transform pos: 19.5,16.5 parent: 2 - - uid: 7362 + - uid: 6468 components: - type: Transform pos: 19.5,16.5 parent: 2 - - uid: 7515 + - uid: 7187 components: - type: Transform pos: 10.5,-6.5 parent: 2 + - uid: 7342 + components: + - type: Transform + pos: 34.5,24.5 + parent: 2 + - uid: 7344 + components: + - type: Transform + pos: 34.5,24.5 + parent: 2 - proto: MedkitFilled entities: - - uid: 7184 + - uid: 1765 components: - type: Transform - pos: 7.5,-10.5 + pos: 35.5,-2.5 parent: 2 - - uid: 7197 + - uid: 6349 components: - type: Transform - pos: 33.5,-6.5 + pos: 47.5,35.5 + parent: 2 + - uid: 6704 + components: + - type: Transform + pos: 32.5,-10.5 parent: 2 - uid: 7223 components: @@ -36770,6 +50723,11 @@ entities: - type: Transform pos: 20.5,16.5 parent: 2 + - uid: 7365 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 2 - uid: 7540 components: - type: Transform @@ -36780,48 +50738,123 @@ entities: - type: Transform pos: 56.5,17.5 parent: 2 -- proto: MedkitO2 + - uid: 8286 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 8403 + components: + - type: Transform + pos: 38.5,30.5 + parent: 2 + - uid: 10337 + components: + - type: Transform + pos: 24.5,-16.5 + parent: 3564 + - uid: 10338 + components: + - type: Transform + pos: 25.5,-16.5 + parent: 3564 + - uid: 10574 + components: + - type: Transform + pos: 10.5,-29.5 + parent: 3564 + - uid: 10703 + components: + - type: Transform + pos: 37.5,-25.5 + parent: 3564 + - uid: 11153 + components: + - type: Transform + pos: 44.5,20.5 + parent: 2 + - uid: 11186 + components: + - type: Transform + pos: 47.5,29.5 + parent: 2 +- proto: MedkitOxygenFilled entities: - - uid: 7375 + - uid: 7354 components: - type: Transform pos: 33.5,16.5 parent: 2 + - uid: 7361 + components: + - type: Transform + pos: 33.5,16.5 + parent: 2 +- proto: MedkitRadiationFilled + entities: + - uid: 7362 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 + - uid: 7367 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 +- proto: MedkitToxinFilled + entities: + - uid: 3287 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 + - uid: 7374 + components: + - type: Transform + pos: 18.5,16.5 + parent: 2 + - uid: 7375 + components: + - type: Transform + pos: 18.5,16.5 + parent: 2 - uid: 7377 components: - type: Transform - pos: 33.5,16.5 + pos: 13.5,-10.5 parent: 2 -- proto: MedkitRadiation - entities: - uid: 7378 components: - type: Transform - pos: 34.5,16.5 + pos: 34.5,23.5 parent: 2 - uid: 7379 + components: + - type: Transform + pos: 34.5,23.5 + parent: 2 + - uid: 7515 components: - type: Transform pos: 34.5,16.5 parent: 2 -- proto: MedkitToxin - entities: - - uid: 7356 + - uid: 11538 components: - type: Transform - pos: 19.5,16.5 - parent: 2 - - uid: 7358 + pos: 27.5,-16.5 + parent: 3564 + - uid: 11539 components: - type: Transform - pos: 19.5,16.5 - parent: 2 + pos: 26.5,-16.5 + parent: 3564 - proto: MopItem entities: - - uid: 7658 + - uid: 2794 components: - type: Transform - pos: -4.5,6.5 + pos: 42.5,21.5 parent: 2 - proto: Morgue entities: @@ -36907,31 +50940,73 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,16.5 parent: 2 - - uid: 1508 + - uid: 9786 components: - type: Transform - pos: 55.5,9.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 + rot: 1.5707963267948966 rad + pos: 32.5,-19.5 + parent: 3564 + - uid: 9787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-20.5 + parent: 3564 + - uid: 9788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-22.5 + parent: 3564 + - uid: 9789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-21.5 + parent: 3564 + - uid: 9790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-23.5 + parent: 3564 - proto: Multitool entities: + - uid: 1549 + components: + - type: Transform + pos: 52.5,21.5 + parent: 2 + - uid: 3128 + components: + - type: Transform + pos: 13.5,29.5 + parent: 2 + - uid: 3354 + components: + - type: Transform + pos: 38.5,-9.5 + parent: 2 + - uid: 4003 + components: + - type: Transform + pos: 38.5,-9.5 + parent: 2 + - uid: 4005 + components: + - type: Transform + pos: 38.5,-9.5 + parent: 2 + - uid: 4007 + components: + - type: Transform + pos: 38.5,-9.5 + parent: 2 + - uid: 4366 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 2 - uid: 7512 components: - type: Transform @@ -36946,26 +51021,71 @@ entities: parent: 2 - proto: NitrogenCanister entities: - - uid: 6602 + - uid: 37 components: - type: Transform - pos: 23.5,37.5 + pos: 40.5,-6.5 parent: 2 - - uid: 6603 + - uid: 1341 components: - type: Transform - pos: 23.5,38.5 + pos: 19.5,10.5 parent: 2 - - uid: 6604 + - uid: 2122 components: - type: Transform - pos: 23.5,39.5 + pos: 53.5,11.5 + parent: 2 + - uid: 2224 + components: + - type: Transform + pos: 42.5,-6.5 + parent: 2 + - uid: 2451 + components: + - type: Transform + pos: 39.5,-6.5 + parent: 2 + - uid: 2625 + components: + - type: Transform + pos: 41.5,-6.5 + parent: 2 + - uid: 3275 + components: + - type: Transform + pos: 48.5,12.5 + parent: 2 + - uid: 3346 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 2 + - uid: 3709 + components: + - type: Transform + pos: 53.5,12.5 + parent: 2 + - uid: 3714 + components: + - type: Transform + pos: 53.5,13.5 + parent: 2 + - uid: 5338 + components: + - type: Transform + pos: 49.5,12.5 parent: 2 - uid: 7497 components: - type: Transform pos: 20.5,6.5 parent: 2 + - uid: 7697 + components: + - type: Transform + pos: 47.5,12.5 + parent: 2 - proto: NitrousOxideCanister entities: - uid: 61 @@ -36976,6 +51096,21 @@ entities: parent: 2 - type: Physics bodyType: Static + - uid: 1520 + components: + - type: Transform + pos: 25.5,16.5 + parent: 2 + - uid: 1893 + components: + - type: Transform + pos: 43.5,-6.5 + parent: 2 + - uid: 2189 + components: + - type: Transform + pos: 16.5,-8.5 + parent: 2 - proto: NTDefaultCircuitBoard entities: - uid: 3806 @@ -36985,10 +51120,10 @@ entities: parent: 2 - proto: NuclearBomb entities: - - uid: 1930 + - uid: 3745 components: - type: Transform - pos: 60.5,10.5 + pos: 56.5,21.5 parent: 2 - proto: NutimovCircuitBoard entities: @@ -36997,50 +51132,182 @@ entities: - type: Transform pos: 30.5,51.5 parent: 2 -- proto: OperatingTable +- proto: Ointment1 entities: - - uid: 1560 + - uid: 1684 components: - type: Transform - pos: 52.5,7.5 + pos: 20.5,15.5 + parent: 2 + - uid: 3226 + components: + - type: Transform + pos: 20.5,15.5 parent: 2 - proto: OxygenCanister entities: - - uid: 1792 + - uid: 55 components: - type: Transform - pos: 25.5,37.5 + pos: 41.5,-7.5 parent: 2 - - uid: 2761 + - uid: 844 components: - type: Transform - pos: 25.5,38.5 + pos: 28.5,37.5 parent: 2 - - uid: 3171 + - uid: 1273 components: - type: Transform - pos: 25.5,40.5 + pos: 20.5,10.5 parent: 2 - - uid: 3183 + - uid: 1335 components: - type: Transform - pos: 25.5,41.5 + pos: 32.5,39.5 parent: 2 - - uid: 4940 + - uid: 1548 components: - type: Transform - pos: 25.5,42.5 + pos: 54.5,14.5 parent: 2 - - uid: 6601 + - uid: 1691 components: - type: Transform - pos: 25.5,39.5 + pos: 40.5,-7.5 + parent: 2 + - uid: 1729 + components: + - type: Transform + pos: 29.5,39.5 + parent: 2 + - uid: 1730 + components: + - type: Transform + pos: 30.5,39.5 + parent: 2 + - uid: 1732 + components: + - type: Transform + pos: 31.5,39.5 + parent: 2 + - uid: 1733 + components: + - type: Transform + pos: 28.5,39.5 + parent: 2 + - uid: 1881 + components: + - type: Transform + pos: 39.5,-7.5 + parent: 2 + - uid: 1967 + components: + - type: Transform + pos: 52.5,12.5 + parent: 2 + - uid: 2165 + components: + - type: Transform + pos: 49.5,11.5 + parent: 2 + - uid: 2475 + components: + - type: Transform + pos: 42.5,-7.5 + parent: 2 + - uid: 2860 + components: + - type: Transform + pos: 24.5,16.5 + parent: 2 + - uid: 3356 + components: + - type: Transform + pos: 14.5,-8.5 + parent: 2 + - uid: 3626 + components: + - type: Transform + pos: 54.5,11.5 + parent: 2 + - uid: 3739 + components: + - type: Transform + pos: 54.5,13.5 + parent: 2 + - uid: 3740 + components: + - type: Transform + pos: 54.5,12.5 + parent: 2 + - uid: 3750 + components: + - type: Transform + pos: 48.5,11.5 + parent: 2 + - uid: 4672 + components: + - type: Transform + pos: 29.5,37.5 + parent: 2 + - uid: 4673 + components: + - type: Transform + pos: 30.5,37.5 + parent: 2 + - uid: 5155 + components: + - type: Transform + pos: 16.5,24.5 + parent: 2 + - uid: 5164 + components: + - type: Transform + pos: 12.5,31.5 parent: 2 - uid: 7496 components: - type: Transform pos: 20.5,5.5 parent: 2 + - uid: 7574 + components: + - type: Transform + pos: 52.5,11.5 + parent: 2 + - uid: 7716 + components: + - type: Transform + pos: 47.5,11.5 + parent: 2 + - uid: 7717 + components: + - type: Transform + pos: 52.5,13.5 + parent: 2 + - uid: 8302 + components: + - type: Transform + pos: 29.5,22.5 + parent: 2 + - uid: 8303 + components: + - type: Transform + pos: 28.5,22.5 + parent: 2 + - uid: 8458 + components: + - type: Transform + pos: 60.5,39.5 + parent: 2 +- proto: OxygenTankFilled + entities: + - uid: 11508 + components: + - type: Transform + pos: 11.5,35.5 + parent: 2 - proto: PaladinCircuitBoard entities: - uid: 4743 @@ -37048,27 +51315,57 @@ entities: - type: Transform pos: 34.5,52.5 parent: 2 +- proto: Paper + entities: + - uid: 10429 + components: + - type: Transform + pos: 32.5,-65.5 + parent: 3564 - proto: PaperBin10 entities: - - uid: 7640 + - uid: 1442 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,31.5 + pos: 20.5,-6.5 parent: 2 + - uid: 1626 + components: + - type: Transform + pos: 32.5,-9.5 + parent: 2 + - uid: 2179 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 + - uid: 10426 + components: + - type: Transform + pos: 33.5,-64.5 + parent: 3564 + - uid: 10441 + components: + - type: Transform + pos: 27.5,-57.5 + parent: 3564 + - uid: 10537 + components: + - type: Transform + pos: 34.5,-30.5 + parent: 3564 + - uid: 10580 + components: + - type: Transform + pos: 9.5,-25.5 + parent: 3564 + - uid: 10606 + components: + - type: Transform + pos: 30.5,-20.5 + parent: 3564 - proto: PaperBin20 entities: - - uid: 1548 - components: - - type: Transform - pos: 53.5,14.5 - parent: 2 - - uid: 1615 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,31.5 - parent: 2 - uid: 7121 components: - type: Transform @@ -37088,8 +51385,11 @@ entities: entities: - uid: 149 components: + - type: MetaData + desc: An official-looking sheet of paper. + name: Corpse Yeeter 2003 Safety Warning - type: Transform - pos: -5.5404506,14.442275 + pos: -4.5,10.5 parent: 2 - type: Paper stampState: paper_stamp-centcom @@ -37097,6 +51397,338 @@ entities: - stampedColor: '#006600FF' stampedName: stamp-component-stamped-name-centcom content: Please do not use the corpse yeeter 2003 to yeet corpses. + - uid: 1598 + components: + - type: MetaData + name: paper- 'A Crash Course in Legal SOP on SS13' + - type: Transform + pos: 57.5,17.5 + parent: 2 + - type: Paper + content: >- + [bold]Roles:[/bold] + + The Forensic Technician is basically the investigator and prosecutor. + + The Staff Assistant can perform these functions with written authority from the Forensic Technician. + + The Captain/HoP/Warden is ct as the judicial authority. + + The Security Officers are responsible for executing warrants, security during trial, and prisoner transport. + + + [bold]Investigative Phase:[/bold] + + After the crime has been committed the Forensic Technician's job is to gather evidence and try to ascertain not only who did it but what happened. He must take special care to catalogue everything and don't leave anything out. Write out all the evidence on paper. Make sure you take an appropriate number of fingerprints. IF he must ask someone questions he has permission to confront them. If the person refuses he can ask a judicial authority to write a subpoena for questioning. If again he fails to respond then that person is to be jailed as insubordinate and obstructing justice. Said person will be released after he cooperates. + + + ONCE the FT has a clear idea as to who the criminal is he is to write an arrest warrant on the piece of paper. IT MUST LIST THE CHARGES. The FT is to then go to the judicial authority and explain a small version of his case. If the case is moderately acceptable the authority should sign it. Security must then execute said warrant. + + + [bold]Pre-Pre-Trial Phase:[/bold] + + Now a legal representative must be presented to the defendant if said defendant requests one. That person and the defendant are then to be given time to meet (in the jail IS ACCEPTABLE). The defendant and his lawyer are then to be given a copy of all the evidence that will be presented at trial (rewriting it all on paper is fine). THIS IS CALLED THE DISCOVERY PACK. With a few exceptions, THIS IS THE ONLY EVIDENCE BOTH SIDES MAY USE AT TRIAL. IF the prosecution will be seeking the death penalty it MUST be stated at this time. ALSO if the defense will be seeking not guilty by mental defect it must state this at this time to allow ample time for examination. + + Now at this time each side is to compile a list of witnesses. By default, the defendant is on both lists regardless of anything else. Also the defense and prosecution can compile more evidence beforehand BUT in order for it to be used the evidence MUST also be given to the other side. + + The defense has time to compile motions against some evidence here. + + [bold]Possible Motions:[/bold] + + 1. [italic]Invalidate Evidence-[/italic] Something with the evidence is wrong and the evidence is to be thrown out. This includes irrelevance or corrupt security. + + 2. [italic]Free Movement-[/italic] Basically the defendant is to be kept uncuffed before and during the trial. + + 3. [italic]Subpoena Witness-[/italic] If the defense presents god reasons for needing a witness but said person fails to cooperate then a subpoena is issued. + + 4. [italic]Drop the Charges-[/italic] Not enough evidence is there for a trial so the charges are to be dropped. The FT CAN RETRY but the judicial authority must carefully reexamine the new evidence. + + 5. [italic]Declare Incompetent-[/italic] Basically the defendant is insane. Once this is granted a medical official is to examine the patient. If he is indeed insane he is to be placed under care of the medical staff until he is deemed competent to stand trial. + + + ALL SIDES MOVE TO A COURTROOM + + [bold]Pre-Trial Hearings:[/bold] + + A judicial authority and the 2 sides are to meet in the trial room. NO ONE ELSE BESIDES A SECURITY DETAIL IS TO BE PRESENT. The defense submits a plea. If the plea is guilty then proceed directly to sentencing phase. Now the sides each present their motions to the judicial authority. He rules on them. Each side can debate each motion. Then the judicial authority gets a list of crew members. He first gets a chance to look at them all and pick out acceptable and available jurors. Those jurors are then called over. Each side can ask a few questions and dismiss jurors they find too biased. HOWEVER before dismissal the judicial authority MUST agree to the reasoning. + + + [bold]The Trial:[/bold] + + The trial has three phases. + + 1. [bold]Opening Arguments[/bold]- Each side can give a short speech. They may not present ANY evidence. + + 2. [bold]Witness Calling/Evidence Presentation[/bold]- The prosecution goes first and is able to call the witnesses on his approved list in any order. He can recall them if necessary. During the questioning the lawyer may use the evidence in the questions to help prove a point. After every witness the other side has a chance to cross-examine. After both sides are done questioning a witness the prosecution can present another or recall one (even the EXACT same one again!). After prosecution is done the defense can call witnesses. After the initial cases are presented both sides are free to call witnesses on either list. + + FINALLY once both sides are done calling witnesses we move onto the next phase. + + 3. [bold]Closing Arguments[/bold]- Same as opening. + + The jury then deliberates IN PRIVATE. THEY MUST ALL AGREE on a verdict. REMEMBER: They mix between some charges being guilty and others not guilty (IE if you supposedly killed someone with a gun and you unfortunately picked up a gun without authorization then you CAN be found not guilty of murder BUT guilty of possession of illegal weaponry.). Once they have agreed they present their verdict. If unable to reach a verdict and feel they will never they call a deadlocked jury and we restart at Pre-Trial phase with an entirely new set of jurors. + + + [bold]Sentencing Phase:[/bold] + + If the death penalty was sought (you MUST have gone through a trial for death penalty) then skip to the second part. + + I. Each side can present more evidence/witnesses in any order. There is NO ban on emotional aspects or anything. The prosecution is to submit a suggested penalty. After all the sides are done then the judicial authority is to give a sentence. + + II. The jury stays and does the same thing as I. Their sole job is to determine if the death penalty is applicable. If NOT then the judge selects a sentence. + + + TADA you're done. Security then executes the sentence and adds the applicable convictions to the person's record. + - uid: 7802 + components: + - type: Transform + pos: 7.3686285,34.76087 + parent: 2 + - uid: 11517 + components: + - type: MetaData + name: paper- 'Generator Startup Procedure' + - type: Transform + pos: 12.5,34.5 + parent: 2 + - type: Paper + content: >- + [head=1][bold]Thermo-Electric Generator Startup Procedure for Mark I Plasma-Fired Engines[/bold][/head] + + + [italic]Warning![/italic] Improper engine and generator operation may cause exposure to hazardous gasses, extremes of heat and cold, and dangerous electrical voltages. + + Only trained personnel should operate station systems. Follow all procedures carefully. Wear correct personal protective equipment at all times. + + Refer to your supervisor or Head of Personnel for procedure updates and additional information. + + + Standard checklist for engine and generator cold-start. + + [bullet] Perform visual inspection of external (cooling) and internal (heating) heat-exchange pipe loops. + + Refer any breaks or cracks in the pipe to Station Maintenance for repair before continuing. + + + [bullet] Connect a CO2 canister to the external (cooling) loop connector, and release the contents. Check loop pressurization is stable + + [italic]Note:[/italic] Observe standard canister safety procedures. + + [italic]Note:[/italic] Other gasses may be substituted as a medium in the external (cooling) loop in the event that CO2 is not available. + + + [bullet] Connect a CO2 canister to the internal (heating) loop connector, and release the contents. Check loop pressurization is stable. + + [italic]Note:[/italic] Observe standard canister safety procedures. + + [italic]Note:[/italic] Nitrogen may be substituted as a medium in the internal (heating) loop in the event that CO2 is not available. + + [italic]Do not use plasma in the internal (heating) pipe loop as an unsafe condition may result.[/italic] + + + [bullet] Using the thermo-electric generator (TEG) master control panel, engage the internal and external loop circulator pumps at 1% maximum rate. + + + [bullet] Ignite the engine. Refer to document NTRSN-113-H9-12939 for proper engine preparation, ignition, and plasma-oxygen loading procedures. + + [italic]Note:[/italic] Exceeding recommended plasma-oxygen concentrations can cause engine damage and potential hazards. + + + [bullet] Monitor engine temperatures until stable operation is achieved. + + + [bullet] Increase internal and external circulator pumps to 10% of maximum rate. Monitor the generated power output on the TEG control panel. + + [italic]Note:[/italic] Consult appendix A for expected electrical generation rates. + + + [bullet] Adjust circulator rates until required electrical demand is met. + + [italic]Note:[/italic] Generation rate varies with internal and external loop temperatures, exchange media pressure, and engine geometry. Refer to Appendix B or your supervisor for locally determined optimal settings. + + [italic]Note:[/italic] Do not exceed safety ratings for station power cabling and electrical equipment. + + + [bullet] With the power generation rate stable, engage charging of the superconducting magnetic energy storage (SMES) devices. + + Total SMES charging rate should not exceed total power generation rate, or an overload condition may occur. + - uid: 11520 + components: + - type: MetaData + name: paper- 'Standard Operating Procedure' + - type: Transform + pos: 63.5,34.5 + parent: 2 + - type: Paper + content: >- + Alert Levels: + + Blue- Emergency + + [bullet]1. Caused by fire + + [bullet]2. Caused by manual interaction + + [bullet]Action: + + [bullet][bullet]Close all fire doors. These can only be opened by reseting the alarm + + Red- Ejection/Self Destruct + + [bullet]1. Caused by module operating computer. + + [bullet]Action: + + [bullet][bullet]After the specified time the module will eject completely. + + + Engine Maintenance Instructions: + + [bullet]Shut off ignition systems: + + [bullet]Activate internal power + + [bullet]Activate orbital balance matrix + + [bullet]Remove volatile liquids from area + + [bullet]Wear a fire suit + + + [bullet]After + + [bullet][bullet]Decontaminate + + [bullet][bullet]Visit medical examiner + + + Toxin Laboratory Procedure: + + [bullet]Wear a gas mask regardless + + [bullet]Get an oxygen tank. + + [bullet]Activate internal atmosphere + + + [bullet]After + + [bullet][bullet]Decontaminate + + [bullet][bullet]Visit medical examiner + + + Disaster Procedure: + + [bullet]Fire: + + [bullet]Activate sector fire alarm. + + [bullet]Move to a safe area. + + [bullet]Get a fire suit + + [bullet][bullet]After: + + [bullet][bullet][bullet]Assess Damage + + [bullet][bullet][bullet]Repair damages + + [bullet][bullet][bullet]If needed, Evacuate + + [bullet]Meteor Shower: + + [bullet][bullet]Activate fire alarm + + [bullet][bullet]Move to the back of ship + + [bullet][bullet]After + + [bullet][bullet][bullet]Repair damage + + [bullet][bullet][bullet]If needed, Evacuate + + [bullet]Accidental Reentry: + + [bullet][bullet]Activate fire alrms in front of ship. + + [bullet][bullet]Move volatile matter to a fire proof area! + + [bullet][bullet]Get a fire suit. + + [bullet][bullet]Stay secure until an emergency ship arrives. + + + [bullet][bullet]If ship does not arrive- + + [bullet][bullet][bullet]Evacuate to a nearby safe area! + - uid: 11521 + components: + - type: MetaData + name: paper- 'Chemical Information' + - type: Transform + pos: 30.5,16.5 + parent: 2 + - type: Paper + content: >- + Known Onboard Toxins: + + Grade A Semi-Liquid Plasma: + + [bullet][bullet]Highly poisonous. You cannot sustain concentrations above 15 units. + + [bullet][bullet]A gas mask fails to filter plasma after 50 units. + + [bullet][bullet]Will attempt to diffuse like a gas. + + [bullet][bullet]Filtered by scrubbers. + + [bullet][bullet]There is a bottled version which is very different + + [bullet][bullet][bullet]from the version found in canisters! + + + [bullet][bullet]WARNING: Highly Flammable. Keep away from heat sources + + [bullet][bullet]except in a enclosed fire area! + + [bullet][bullet]WARNING: It is a crime to use this without authorization. + + Known Onboard Anti-Toxin: + + [bullet]Anti-Toxin Type 01P: Works against Grade A Plasma. + + [bullet][bullet]Best if injected directly into bloodstream. + + [bullet][bullet]A full injection is in every regular Med-Kit. + + [bullet][bullet]Special toxin Kits hold around 7. + + + Known Onboard Chemicals (other): + + [bullet]Rejuvenation T#001: + + [bullet][bullet]Even 1 unit injected directly into the bloodstream + + [bullet][bullet][bullet]will cure paralysis and sleep toxins. + + [bullet][bullet]If administered to a dying patient it will prevent + + [bullet][bullet][bullet]further damage for about units*3 seconds. + + [bullet][bullet][bullet]it will not cure them or allow them to be cured. + + [bullet][bullet]It can be administeredd to a non-dying patient + + [bullet][bullet][bullet]but the chemicals disappear just as fast. + + [bullet]Sleep Toxin T#054: + + [bullet][bullet]5 units wilkl induce precisely 1 minute of sleep. + + [bullet][bullet][bullet]The effects are cumulative. + + [bullet][bullet]WARNING: It is a crime to use this without authorization - proto: ParchisBoard entities: - uid: 7543 @@ -37104,6 +51736,26 @@ entities: - type: Transform pos: 18.5,-1.5 parent: 2 + - uid: 10308 + components: + - type: Transform + pos: 16.5,-46.5 + parent: 3564 + - uid: 10312 + components: + - type: Transform + pos: 29.5,-42.5 + parent: 3564 + - uid: 10314 + components: + - type: Transform + pos: 29.5,-54.5 + parent: 3564 + - uid: 11367 + components: + - type: Transform + pos: 17.5,-23.5 + parent: 3564 - proto: PartRodMetal1 entities: - uid: 7269 @@ -37118,10 +51770,25 @@ entities: parent: 2 - proto: PartRodMetal10 entities: - - uid: 1638 + - uid: 1510 components: - type: Transform - pos: 27.5,38.5 + pos: 51.5,21.5 + parent: 2 + - uid: 1635 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 1712 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 2870 + components: + - type: Transform + pos: 38.5,31.5 parent: 2 - uid: 7713 components: @@ -37135,6 +51802,16 @@ entities: parent: 2 - proto: Pen entities: + - uid: 1557 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 2123 + components: + - type: Transform + pos: 8.0769615,34.17754 + parent: 2 - uid: 7212 components: - type: Transform @@ -37155,6 +51832,26 @@ entities: - type: Transform pos: 18.5,0.5 parent: 2 + - uid: 10581 + components: + - type: Transform + pos: 9.5,-26.5 + parent: 3564 + - uid: 10608 + components: + - type: Transform + pos: 30.5,-19.5 + parent: 3564 + - uid: 10707 + components: + - type: Transform + pos: 34.5,-30.5 + parent: 3564 + - uid: 11368 + components: + - type: Transform + pos: 32.5,-65.5 + parent: 3564 - proto: PillCanisterBicaridine entities: - uid: 7453 @@ -37169,11 +51866,33 @@ entities: - type: Transform pos: 62.5,33.5 parent: 2 + - uid: 5454 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 - uid: 7331 components: - type: Transform pos: 32.5,16.5 parent: 2 + - uid: 10619 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 3564 + - uid: 10620 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 3564 +- proto: PillCanisterCopper + entities: + - uid: 10623 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 3564 - proto: PillCanisterDermaline entities: - uid: 7329 @@ -37181,6 +51900,11 @@ entities: - type: Transform pos: 32.5,16.5 parent: 2 + - uid: 10624 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 3564 - proto: PillCanisterDexalin entities: - uid: 7454 @@ -37188,39 +51912,246 @@ entities: - type: Transform pos: 12.5,13.5 parent: 2 +- proto: PillCanisterIron + entities: + - uid: 10622 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 3564 - proto: PlasmaCanister entities: + - uid: 890 + components: + - type: Transform + pos: 34.5,41.5 + parent: 2 + - uid: 1494 + components: + - type: Transform + pos: 39.5,-4.5 + parent: 2 + - uid: 1496 + components: + - type: Transform + pos: 41.5,-4.5 + parent: 2 - uid: 1576 components: - type: Transform pos: 62.5,26.5 parent: 2 - - uid: 6605 + - uid: 1638 components: - type: Transform - pos: 17.5,42.5 + pos: 38.5,37.5 parent: 2 - - uid: 6606 + - uid: 1686 components: - type: Transform - pos: 17.5,41.5 + pos: 37.5,37.5 parent: 2 - - uid: 6607 + - uid: 1705 components: - type: Transform - pos: 18.5,42.5 + pos: 36.5,37.5 + parent: 2 + - uid: 1734 + components: + - type: Transform + pos: 34.5,39.5 + parent: 2 + - uid: 1960 + components: + - type: Transform + pos: 37.5,41.5 + parent: 2 + - uid: 1964 + components: + - type: Transform + pos: 28.5,41.5 + parent: 2 + - uid: 2067 + components: + - type: Transform + pos: 39.5,39.5 + parent: 2 + - uid: 2235 + components: + - type: Transform + pos: 40.5,-4.5 + parent: 2 + - uid: 2250 + components: + - type: Transform + pos: 42.5,-4.5 + parent: 2 + - uid: 2259 + components: + - type: Transform + pos: 46.5,14.5 + parent: 2 + - uid: 2265 + components: + - type: Transform + pos: 46.5,12.5 + parent: 2 + - uid: 2266 + components: + - type: Transform + pos: 46.5,13.5 + parent: 2 + - uid: 2363 + components: + - type: Transform + pos: 27.5,39.5 + parent: 2 + - uid: 2364 + components: + - type: Transform + pos: 36.5,39.5 + parent: 2 + - uid: 2384 + components: + - type: Transform + pos: 39.5,38.5 + parent: 2 + - uid: 2761 + components: + - type: Transform + pos: 35.5,37.5 + parent: 2 + - uid: 2810 + components: + - type: Transform + pos: 34.5,37.5 + parent: 2 + - uid: 2900 + components: + - type: Transform + pos: 27.5,41.5 + parent: 2 + - uid: 2906 + components: + - type: Transform + pos: 35.5,39.5 + parent: 2 + - uid: 2907 + components: + - type: Transform + pos: 37.5,39.5 + parent: 2 + - uid: 2908 + components: + - type: Transform + pos: 38.5,39.5 + parent: 2 + - uid: 3091 + components: + - type: Transform + pos: 43.5,-4.5 + parent: 2 + - uid: 3092 + components: + - type: Transform + pos: 38.5,-4.5 + parent: 2 + - uid: 3153 + components: + - type: Transform + pos: 15.5,-8.5 + parent: 2 + - uid: 4691 + components: + - type: Transform + pos: 27.5,40.5 + parent: 2 + - uid: 4692 + components: + - type: Transform + pos: 27.5,38.5 + parent: 2 + - uid: 4693 + components: + - type: Transform + pos: 27.5,37.5 + parent: 2 + - uid: 4940 + components: + - type: Transform + pos: 32.5,41.5 + parent: 2 + - uid: 5054 + components: + - type: Transform + pos: 38.5,41.5 + parent: 2 + - uid: 5736 + components: + - type: Transform + pos: 39.5,41.5 + parent: 2 + - uid: 5756 + components: + - type: Transform + pos: 30.5,41.5 + parent: 2 + - uid: 5757 + components: + - type: Transform + pos: 36.5,41.5 + parent: 2 + - uid: 5758 + components: + - type: Transform + pos: 35.5,41.5 + parent: 2 + - uid: 5760 + components: + - type: Transform + pos: 33.5,41.5 + parent: 2 + - uid: 5761 + components: + - type: Transform + pos: 29.5,41.5 + parent: 2 + - uid: 5762 + components: + - type: Transform + pos: 31.5,41.5 + parent: 2 + - uid: 5849 + components: + - type: Transform + pos: 39.5,37.5 + parent: 2 + - uid: 5856 + components: + - type: Transform + pos: 39.5,40.5 + parent: 2 + - uid: 7338 + components: + - type: Transform + pos: 51.5,4.5 + parent: 2 + - uid: 8283 + components: + - type: Transform + pos: 27.5,30.5 + parent: 2 + - uid: 8289 + components: + - type: Transform + pos: 30.5,28.5 parent: 2 - proto: PlasmaChemistryVial entities: - - uid: 7422 + - uid: 1519 components: - type: Transform - pos: 31.5,10.5 - parent: 2 - - uid: 7423 - components: - - type: Transform - pos: 32.5,10.5 + pos: 30.5,8.5 parent: 2 - uid: 7440 components: @@ -37232,6 +52163,38 @@ entities: - type: Transform pos: 8.5,16.5 parent: 2 +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 4684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,28.5 + parent: 2 + - uid: 6839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,27.5 + parent: 2 + - uid: 7168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,29.5 + parent: 2 + - uid: 7182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,30.5 + parent: 2 + - uid: 7195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,30.5 + parent: 2 - proto: PlayerStationAi entities: - uid: 4561 @@ -37239,46 +52202,29 @@ entities: - type: Transform pos: 45.5,51.5 parent: 2 -- proto: PlushieLizard - entities: - - uid: 7573 - components: - - type: Transform - pos: 48.5,0.5 - parent: 2 - proto: PortableGeneratorPacman entities: - - uid: 914 + - uid: 1725 components: - type: Transform - pos: 27.5,41.5 + pos: 36.5,27.5 parent: 2 - - uid: 1574 + - uid: 4275 components: - type: Transform - pos: 27.5,40.5 - parent: 2 - - uid: 1575 - components: - - type: Transform - pos: 28.5,41.5 + pos: 36.5,26.5 parent: 2 - proto: PortableGeneratorSuperPacman entities: - - uid: 1773 + - uid: 2438 components: - type: Transform - pos: 31.5,40.5 + pos: 38.5,26.5 parent: 2 - - uid: 1774 + - uid: 5764 components: - type: Transform - pos: 31.5,41.5 - parent: 2 - - uid: 1775 - components: - - type: Transform - pos: 30.5,41.5 + pos: 38.5,27.5 parent: 2 - proto: PortableScrubber entities: @@ -37292,11 +52238,136 @@ entities: - type: Transform pos: 31.5,-1.5 parent: 2 + - uid: 303 + components: + - type: Transform + pos: 28.5,5.5 + parent: 2 + - uid: 304 + components: + - type: Transform + pos: 29.5,5.5 + parent: 2 + - uid: 1413 + components: + - type: Transform + pos: 31.5,2.5 + parent: 2 + - uid: 1621 + components: + - type: Transform + pos: 39.5,-11.5 + parent: 2 + - uid: 1693 + components: + - type: Transform + pos: 39.5,-12.5 + parent: 2 + - uid: 1694 + components: + - type: Transform + pos: 40.5,-11.5 + parent: 2 + - uid: 2064 + components: + - type: Transform + pos: 15.5,9.5 + parent: 2 + - uid: 2612 + components: + - type: Transform + pos: 61.5,2.5 + parent: 2 + - uid: 2614 + components: + - type: Transform + pos: 60.5,2.5 + parent: 2 + - uid: 2793 + components: + - type: Transform + pos: 60.5,1.5 + parent: 2 + - uid: 3041 + components: + - type: Transform + pos: 61.5,4.5 + parent: 2 + - uid: 6469 + components: + - type: Transform + pos: 40.5,-12.5 + parent: 2 + - uid: 6470 + components: + - type: Transform + pos: 41.5,-11.5 + parent: 2 + - uid: 6471 + components: + - type: Transform + pos: 41.5,-12.5 + parent: 2 + - uid: 6472 + components: + - type: Transform + pos: 42.5,-11.5 + parent: 2 + - uid: 6473 + components: + - type: Transform + pos: 42.5,-12.5 + parent: 2 + - uid: 6474 + components: + - type: Transform + pos: 43.5,-11.5 + parent: 2 + - uid: 6475 + components: + - type: Transform + pos: 43.5,-12.5 + parent: 2 + - uid: 6476 + components: + - type: Transform + pos: 44.5,-11.5 + parent: 2 + - uid: 6477 + components: + - type: Transform + pos: 44.5,-12.5 + parent: 2 - uid: 6703 components: - type: Transform pos: 22.5,10.5 parent: 2 + - uid: 6926 + components: + - type: Transform + pos: 48.5,0.5 + parent: 2 + - uid: 7337 + components: + - type: Transform + pos: 61.5,1.5 + parent: 2 + - uid: 7417 + components: + - type: Transform + pos: 61.5,5.5 + parent: 2 + - uid: 7724 + components: + - type: Transform + pos: 62.5,4.5 + parent: 2 + - uid: 7747 + components: + - type: Transform + pos: 62.5,5.5 + parent: 2 - uid: 8033 components: - type: Transform @@ -37312,155 +52383,76 @@ entities: - type: Transform pos: 50.5,58.5 parent: 2 -- proto: PosterContrabandMissingGloves + - uid: 8291 + components: + - type: Transform + pos: 30.5,27.5 + parent: 2 + - uid: 8295 + components: + - type: Transform + pos: 30.5,26.5 + parent: 2 +- proto: PowerCellHigh entities: - - uid: 7535 + - uid: 11518 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,20.5 + pos: 12.5,34.5 parent: 2 -- proto: PosterContrabandRise +- proto: PowerCellMedium entities: - - uid: 7482 + - uid: 3358 components: - type: Transform - pos: 10.5,2.5 + pos: 37.5,-12.5 parent: 2 -- proto: PosterLegitNanotrasenLogo + - uid: 3359 + components: + - type: Transform + pos: 37.5,-12.5 + parent: 2 +- proto: PowerCellMediumPrinted entities: - - uid: 7536 + - uid: 2971 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,17.5 + pos: 48.5,20.5 parent: 2 -- proto: PosterLegitObey + - uid: 11173 + components: + - type: Transform + pos: 45.5,29.5 + parent: 2 + - uid: 11174 + components: + - type: Transform + pos: 45.5,29.5 + parent: 2 + - uid: 11180 + components: + - type: Transform + pos: 46.5,29.5 + parent: 2 + - uid: 11181 + components: + - type: Transform + pos: 46.5,29.5 + parent: 2 +- proto: PowerCellRecharger entities: - - uid: 6942 + - uid: 7347 components: - type: Transform - pos: 8.5,4.5 + pos: 12.5,-10.5 parent: 2 -- proto: PosterLegitSafetyMothPiping - entities: - - uid: 7207 + - uid: 11364 components: - type: Transform - pos: 22.5,35.5 - parent: 2 -- proto: PosterLegitSecWatch - entities: - - uid: 3227 - components: - - type: Transform - pos: 25.5,1.5 - parent: 2 - - uid: 6943 - components: - - type: Transform - pos: 12.5,4.5 - parent: 2 -- proto: PosterLegitStateLaws - entities: - - uid: 7532 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-13.5 - parent: 2 -- proto: PottedPlant28 - entities: - - uid: 1413 - components: - - type: Transform - pos: 44.5,-2.5 - parent: 2 -- proto: PottedPlantRandom - entities: - - uid: 1558 - components: - - type: Transform - pos: 48.5,-1.5 - parent: 2 - - uid: 7639 - components: - - type: Transform - pos: 15.5,32.5 - parent: 2 -- proto: PottedPlantRandomPlastic - entities: - - uid: 2156 - components: - - type: Transform - pos: 11.5,9.5 - parent: 2 - - uid: 5083 - components: - - type: Transform - pos: 41.5,27.5 - parent: 2 -- proto: PottedPlantRD - entities: - - uid: 7631 - components: - - type: Transform - pos: 53.5,11.5 + pos: 39.5,35.5 parent: 2 - proto: PoweredDimSmallLight entities: - - uid: 1448 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-1.5 - parent: 2 - - uid: 1913 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,2.5 - parent: 2 - - uid: 1914 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,2.5 - parent: 2 - - uid: 3182 - components: - - type: Transform - pos: 4.5,16.5 - parent: 2 - - uid: 3231 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,0.5 - parent: 2 - - uid: 3272 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,13.5 - parent: 2 - - uid: 3273 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,12.5 - parent: 2 - - uid: 3274 - components: - - type: Transform - pos: 53.5,14.5 - parent: 2 - - uid: 3275 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,11.5 - parent: 2 - uid: 5435 components: - type: Transform @@ -37485,39 +52477,22 @@ entities: rot: 1.5707963267948966 rad pos: 53.5,52.5 parent: 2 - - uid: 5439 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,50.5 - parent: 2 - uid: 5440 components: - type: Transform rot: 1.5707963267948966 rad - pos: 53.5,48.5 + pos: 53.5,47.5 parent: 2 - uid: 5441 components: - type: Transform pos: 51.5,45.5 parent: 2 - - uid: 5442 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,47.5 - parent: 2 - uid: 5443 components: - type: Transform pos: 41.5,45.5 parent: 2 - - uid: 5444 - components: - - type: Transform - pos: 44.5,45.5 - parent: 2 - uid: 5447 components: - type: Transform @@ -37536,12 +52511,6 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,43.5 parent: 2 - - uid: 7330 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,11.5 - parent: 2 - uid: 8032 components: - type: Transform @@ -37550,126 +52519,12 @@ entities: parent: 2 - proto: PoweredLEDSmallLight entities: - - uid: 2361 - components: - - type: Transform - pos: 11.5,7.5 - parent: 2 - - type: PointLight - energy: 0.2 - - uid: 2473 - components: - - type: Transform - pos: 24.5,19.5 - parent: 2 - - type: PointLight - energy: 0.1 - - uid: 2480 - components: - - type: Transform - pos: 40.5,-9.5 - parent: 2 - - uid: 2481 - components: - - type: Transform - pos: 42.5,-9.5 - parent: 2 - - uid: 2484 - components: - - type: Transform - pos: 44.5,-9.5 - parent: 2 - - uid: 2494 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-3.5 - parent: 2 - - type: PointLight - energy: 0.15 - - uid: 2528 - components: - - type: Transform - pos: 57.5,40.5 - parent: 2 - - type: PointLight - energy: 0.4 - - uid: 2616 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,19.5 - parent: 2 - - type: PointLight - energy: 0.7 - - uid: 2618 + - uid: 10787 components: - type: Transform rot: 1.5707963267948966 rad - pos: 49.5,26.5 - parent: 2 - - type: PointLight - energy: 0.3 - - uid: 2619 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,17.5 - parent: 2 - - type: PointLight - energy: 0.4 - - uid: 2621 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,15.5 - parent: 2 - - type: PointLight - energy: 0.2 - - uid: 2623 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,13.5 - parent: 2 - - type: PointLight - energy: 0.4 - - uid: 2624 - components: - - type: Transform - pos: 41.5,13.5 - parent: 2 - - type: PointLight - energy: 0.05 - - uid: 2632 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,22.5 - parent: 2 - - type: PointLight - energy: 0.2 - - uid: 2633 - components: - - type: Transform - pos: 39.5,11.5 - parent: 2 - - type: PointLight - energy: 0.2 -- proto: PoweredlightExterior - entities: - - uid: 1896 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,63.5 - parent: 2 - - uid: 1912 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,63.5 - parent: 2 + pos: 22.5,-71.5 + parent: 3564 - proto: PoweredlightLED entities: - uid: 146 @@ -37684,39 +52539,48 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,11.5 parent: 2 - - uid: 152 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,38.5 - parent: 2 - - uid: 217 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,0.5 - parent: 2 - uid: 218 components: - type: Transform - pos: 17.5,-5.5 + pos: 16.5,-5.5 parent: 2 - - uid: 633 + - uid: 608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,5.5 + parent: 2 + - uid: 644 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,-7.5 + pos: 27.5,50.5 + parent: 2 + - uid: 790 + components: + - type: Transform + pos: 53.5,41.5 + parent: 2 + - uid: 1464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-2.5 + parent: 2 + - uid: 1559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,5.5 parent: 2 - - type: PointLight - energy: 25 - - type: RgbLightController - cycleRate: 0.2 - uid: 1790 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,8.5 + pos: 20.5,10.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - uid: 1859 components: - type: Transform @@ -37735,35 +52599,59 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,9.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - uid: 1890 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,16.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - uid: 1891 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,9.5 parent: 2 - - uid: 1897 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,17.5 - parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - uid: 1910 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,16.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - uid: 1916 components: - type: Transform pos: 23.5,16.5 parent: 2 + - uid: 2049 + components: + - type: Transform + pos: 51.5,14.5 + parent: 2 + - uid: 2065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,4.5 + parent: 2 + - uid: 2066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,8.5 + parent: 2 + - uid: 2070 + components: + - type: Transform + pos: 4.5,16.5 + parent: 2 - uid: 2154 components: - type: Transform @@ -37775,6 +52663,69 @@ entities: rot: 3.141592653589793 rad pos: 61.5,4.5 parent: 2 + - uid: 2171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,12.5 + parent: 2 + - uid: 2193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,11.5 + parent: 2 + - uid: 2194 + components: + - type: Transform + pos: 7.5,7.5 + parent: 2 + - uid: 2195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-16.5 + parent: 2 + - uid: 2196 + components: + - type: Transform + pos: 57.5,40.5 + parent: 2 + - uid: 2197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,21.5 + parent: 2 + - uid: 2198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,26.5 + parent: 2 + - uid: 2199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,17.5 + parent: 2 + - uid: 2200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,15.5 + parent: 2 + - uid: 2201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,15.5 + parent: 2 + - uid: 2232 + components: + - type: Transform + pos: 41.5,13.5 + parent: 2 - uid: 2233 components: - type: Transform @@ -37851,7 +52802,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-11.5 + pos: 5.5,-12.5 parent: 2 - uid: 2324 components: @@ -37868,25 +52819,29 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-7.5 + pos: 4.5,-6.5 parent: 2 - uid: 2339 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,0.5 + rot: 3.141592653589793 rad + pos: 41.5,23.5 parent: 2 - uid: 2340 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,7.5 + pos: 1.5,5.5 parent: 2 - uid: 2360 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,7.5 + pos: -3.5,7.5 + parent: 2 + - uid: 2361 + components: + - type: Transform + pos: 39.5,11.5 parent: 2 - uid: 2372 components: @@ -37911,16 +52866,11 @@ entities: rot: -1.5707963267948966 rad pos: 55.5,7.5 parent: 2 - - uid: 2387 - components: - - type: Transform - pos: 18.5,25.5 - parent: 2 - uid: 2388 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,9.5 + rot: 3.141592653589793 rad + pos: 13.5,-3.5 parent: 2 - uid: 2389 components: @@ -37931,8 +52881,8 @@ entities: - uid: 2390 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,1.5 + rot: 4.71238898038469 rad + pos: 49.5,2.5 parent: 2 - uid: 2437 components: @@ -37940,11 +52890,6 @@ entities: rot: 1.5707963267948966 rad pos: 46.5,12.5 parent: 2 - - uid: 2451 - components: - - type: Transform - pos: 30.5,23.5 - parent: 2 - uid: 2453 components: - type: Transform @@ -37962,40 +52907,11 @@ entities: - type: Transform pos: 59.5,54.5 parent: 2 - - uid: 2469 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,24.5 - parent: 2 - - uid: 2470 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,28.5 - parent: 2 - - uid: 2471 - components: - - type: Transform - pos: 13.5,32.5 - parent: 2 - - uid: 2472 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,20.5 - parent: 2 - uid: 2474 components: - type: Transform pos: 37.5,2.5 parent: 2 - - uid: 2475 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-5.5 - parent: 2 - uid: 2476 components: - type: Transform @@ -38052,6 +52968,12 @@ entities: - type: Transform pos: 62.5,2.5 parent: 2 + - uid: 2494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,9.5 + parent: 2 - uid: 2497 components: - type: Transform @@ -38126,18 +53048,14 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,31.5 parent: 2 - - uid: 2531 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,25.5 - parent: 2 - uid: 2534 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,39.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - uid: 2535 components: - type: Transform @@ -38149,24 +53067,14 @@ entities: rot: 3.141592653589793 rad pos: 31.5,33.5 parent: 2 - - uid: 2543 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,21.5 - parent: 2 - - uid: 2556 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,23.5 - parent: 2 - uid: 2563 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,33.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - uid: 2571 components: - type: Transform @@ -38179,46 +53087,33 @@ entities: rot: -1.5707963267948966 rad pos: 47.5,33.5 parent: 2 - - uid: 2579 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,39.5 - parent: 2 - - uid: 2588 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,36.5 - parent: 2 - - uid: 2602 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,40.5 - parent: 2 - uid: 2604 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,21.5 parent: 2 - - uid: 2605 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,25.5 - parent: 2 - uid: 2606 components: - type: Transform - pos: 42.5,20.5 + pos: 42.5,21.5 parent: 2 - uid: 2615 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,27.5 + rot: 4.71238898038469 rad + pos: 47.5,29.5 + parent: 2 + - uid: 2616 + components: + - type: Transform + pos: 41.5,17.5 + parent: 2 + - uid: 2623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,15.5 parent: 2 - uid: 2634 components: @@ -38266,12 +53161,13 @@ entities: - uid: 2642 components: - type: Transform - pos: 44.5,51.5 + rot: 1.5707963267948966 rad + pos: 42.5,51.5 parent: 2 - uid: 2643 components: - type: Transform - pos: 46.5,51.5 + pos: 49.5,51.5 parent: 2 - uid: 2644 components: @@ -38283,70 +53179,885 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: 46.5,47.5 + pos: 48.5,47.5 parent: 2 - - uid: 3247 + - uid: 2728 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,-10.5 + pos: 41.5,-7.5 parent: 2 - - type: PointLight - energy: 25 - - type: RgbLightController - cycleRate: 0.19 - - uid: 4001 + - uid: 2729 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-4.5 + rot: 3.141592653589793 rad + pos: 34.5,-10.5 parent: 2 - - type: PointLight - energy: 25 - - type: RgbLightController - cycleRate: 0.17 - - uid: 4002 + - uid: 2730 + components: + - type: Transform + pos: 34.5,-4.5 + parent: 2 + - uid: 2731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-10.5 + parent: 2 + - uid: 2732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-12.5 + parent: 2 + - uid: 2733 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,-5.5 + pos: 44.5,-10.5 parent: 2 - - type: PointLight - energy: 25 - - type: RgbLightController - cycleRate: 0.21 - - uid: 4003 + - uid: 2734 components: - type: Transform - pos: 29.5,-4.5 + rot: 1.5707963267948966 rad + pos: 37.5,-12.5 + parent: 2 + - uid: 2736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-8.5 + parent: 2 + - uid: 2738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-8.5 + parent: 2 + - uid: 2739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-2.5 + parent: 2 + - uid: 2740 + components: + - type: Transform + pos: 25.5,0.5 + parent: 2 + - uid: 3182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,9.5 + parent: 2 + - uid: 5127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-1.5 + parent: 2 + - uid: 6456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,0.5 parent: 2 - - type: PointLight - energy: 25 - - type: RgbLightController - cycleRate: 0.23 - uid: 6708 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,41.5 parent: 2 - - uid: 7028 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,39.5 - parent: 2 - uid: 7113 components: - type: Transform pos: 24.5,42.5 parent: 2 + - uid: 7194 + components: + - type: Transform + pos: 11.5,7.5 + parent: 2 + - uid: 7350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 2 + - uid: 7395 + components: + - type: Transform + pos: 6.5,0.5 + parent: 2 + - uid: 7398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,3.5 + parent: 2 + - uid: 7400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 2 + - uid: 7466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 2 + - uid: 7479 + components: + - type: Transform + pos: 5.5,9.5 + parent: 2 + - uid: 7493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-3.5 + parent: 2 + - uid: 7597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,22.5 + parent: 2 + - uid: 7599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,38.5 + parent: 2 + - uid: 7727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,9.5 + parent: 2 + - uid: 7728 + components: + - type: Transform + pos: 51.5,21.5 + parent: 2 + - uid: 7839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,2.5 + parent: 2 + - uid: 8239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-10.5 + parent: 2 - uid: 8264 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,26.5 parent: 2 + - uid: 8313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,22.5 + parent: 2 + - uid: 8322 + components: + - type: Transform + pos: 27.5,31.5 + parent: 2 + - uid: 8323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,26.5 + parent: 2 + - uid: 8326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,31.5 + parent: 2 + - uid: 8327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,29.5 + parent: 2 + - uid: 8328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,36.5 + parent: 2 + - uid: 8329 + components: + - type: Transform + pos: 43.5,41.5 + parent: 2 + - uid: 8330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,37.5 + parent: 2 + - uid: 8331 + components: + - type: Transform + pos: 33.5,41.5 + parent: 2 + - uid: 8332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,39.5 + parent: 2 + - uid: 8333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,39.5 + parent: 2 + - uid: 8334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,37.5 + parent: 2 + - uid: 8335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,37.5 + parent: 2 + - uid: 8336 + components: + - type: Transform + pos: 31.5,35.5 + parent: 2 + - uid: 8337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,33.5 + parent: 2 + - uid: 8338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,33.5 + parent: 2 + - uid: 8340 + components: + - type: Transform + pos: 20.5,39.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 8341 + components: + - type: Transform + pos: 15.5,39.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 8342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,35.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 8344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,38.5 + parent: 2 + - uid: 8345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,31.5 + parent: 2 + - uid: 8346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,24.5 + parent: 2 + - uid: 8347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,27.5 + parent: 2 + - uid: 8348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,20.5 + parent: 2 + - uid: 8586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,5.5 + parent: 2 + - uid: 8587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-2.5 + parent: 2 + - uid: 8588 + components: + - type: Transform + pos: 14.5,16.5 + parent: 2 + - uid: 8589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,4.5 + parent: 2 + - uid: 8590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,5.5 + parent: 2 + - uid: 8591 + components: + - type: Transform + pos: 30.5,5.5 + parent: 2 + - uid: 8592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,2.5 + parent: 2 + - uid: 8594 + components: + - type: Transform + pos: 38.5,23.5 + parent: 2 + - uid: 8595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,17.5 + parent: 2 + - uid: 8596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,23.5 + parent: 2 + - uid: 8597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,25.5 + parent: 2 + - uid: 8599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,36.5 + parent: 2 + - uid: 8600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,31.5 + parent: 2 + - uid: 8601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,28.5 + parent: 2 + - uid: 8602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,36.5 + parent: 2 + - uid: 8603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,41.5 + parent: 2 + - uid: 8604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,39.5 + parent: 2 + - uid: 8605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,43.5 + parent: 2 + - uid: 8606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,50.5 + parent: 2 + - uid: 8607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,46.5 + parent: 2 + - uid: 8640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,49.5 + parent: 2 + - uid: 8641 + components: + - type: Transform + pos: 25.5,57.5 + parent: 2 + - uid: 8642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,49.5 + parent: 2 + - uid: 8643 + components: + - type: Transform + pos: 19.5,57.5 + parent: 2 + - uid: 8644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,52.5 + parent: 2 + - uid: 8645 + components: + - type: Transform + pos: 37.5,54.5 + parent: 2 + - uid: 8646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,50.5 + parent: 2 + - uid: 8647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,18.5 + parent: 2 + - uid: 8648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,18.5 + parent: 2 + - uid: 10709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-68.5 + parent: 3564 + - uid: 10710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-63.5 + parent: 3564 + - uid: 10711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-63.5 + parent: 3564 + - uid: 10712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-68.5 + parent: 3564 + - uid: 10713 + components: + - type: Transform + pos: 27.5,-63.5 + parent: 3564 + - uid: 10714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-69.5 + parent: 3564 + - uid: 10715 + components: + - type: Transform + pos: 15.5,-65.5 + parent: 3564 + - uid: 10716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-61.5 + parent: 3564 + - uid: 10717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-58.5 + parent: 3564 + - uid: 10718 + components: + - type: Transform + pos: 27.5,-57.5 + parent: 3564 + - uid: 10719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-61.5 + parent: 3564 + - uid: 10720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-60.5 + parent: 3564 + - uid: 10721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-58.5 + parent: 3564 + - uid: 10722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-57.5 + parent: 3564 + - uid: 10723 + components: + - type: Transform + pos: 28.5,-52.5 + parent: 3564 + - uid: 10724 + components: + - type: Transform + pos: 17.5,-52.5 + parent: 3564 + - uid: 10725 + components: + - type: Transform + pos: 17.5,-48.5 + parent: 3564 + - uid: 10726 + components: + - type: Transform + pos: 28.5,-48.5 + parent: 3564 + - uid: 10727 + components: + - type: Transform + pos: 28.5,-44.5 + parent: 3564 + - uid: 10728 + components: + - type: Transform + pos: 17.5,-44.5 + parent: 3564 + - uid: 10729 + components: + - type: Transform + pos: 28.5,-40.5 + parent: 3564 + - uid: 10730 + components: + - type: Transform + pos: 28.5,-36.5 + parent: 3564 + - uid: 10731 + components: + - type: Transform + pos: 17.5,-36.5 + parent: 3564 + - uid: 10732 + components: + - type: Transform + pos: 28.5,-32.5 + parent: 3564 + - uid: 10733 + components: + - type: Transform + pos: 15.5,-31.5 + parent: 3564 + - uid: 10734 + components: + - type: Transform + pos: 14.5,-40.5 + parent: 3564 + - uid: 10735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-45.5 + parent: 3564 + - uid: 10736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-37.5 + parent: 3564 + - uid: 10737 + components: + - type: Transform + pos: 8.5,-39.5 + parent: 3564 + - uid: 10738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-37.5 + parent: 3564 + - uid: 10739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-51.5 + parent: 3564 + - uid: 10740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-51.5 + parent: 3564 + - uid: 10741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-47.5 + parent: 3564 + - uid: 10742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-43.5 + parent: 3564 + - uid: 10743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-39.5 + parent: 3564 + - uid: 10744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-35.5 + parent: 3564 + - uid: 10745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-35.5 + parent: 3564 + - uid: 10746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-39.5 + parent: 3564 + - uid: 10748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-47.5 + parent: 3564 + - uid: 10749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-42.5 + parent: 3564 + - uid: 10750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-21.5 + parent: 3564 + - uid: 10751 + components: + - type: Transform + pos: 17.5,-20.5 + parent: 3564 + - uid: 10752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-29.5 + parent: 3564 + - uid: 10753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-29.5 + parent: 3564 + - uid: 10754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-23.5 + parent: 3564 + - uid: 10755 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-26.5 + parent: 3564 + - uid: 10756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-17.5 + parent: 3564 + - uid: 10757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-22.5 + parent: 3564 + - uid: 10758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-18.5 + parent: 3564 + - uid: 10759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-22.5 + parent: 3564 + - uid: 10760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-23.5 + parent: 3564 + - uid: 10761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-25.5 + parent: 3564 + - uid: 10762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-30.5 + parent: 3564 + - uid: 10763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-32.5 + parent: 3564 + - uid: 10764 + components: + - type: Transform + pos: 29.5,-25.5 + parent: 3564 + - uid: 11221 + components: + - type: Transform + pos: 51.5,9.5 + parent: 2 + - uid: 11222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,4.5 + parent: 2 +- proto: PoweredSmallLight + entities: + - uid: 4244 + components: + - type: Transform + pos: 21.5,20.5 + parent: 2 + - uid: 4509 + components: + - type: Transform + pos: 31.5,20.5 + parent: 2 + - uid: 5979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,20.5 + parent: 2 + - uid: 5980 + components: + - type: Transform + pos: 17.5,24.5 + parent: 2 + - uid: 6043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,26.5 + parent: 2 + - uid: 6173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,30.5 + parent: 2 + - uid: 6550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,24.5 + parent: 2 + - uid: 6551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,28.5 + parent: 2 + - uid: 6552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,22.5 + parent: 2 + - uid: 6581 + components: + - type: Transform + pos: 23.5,18.5 + parent: 2 + - uid: 6613 + components: + - type: Transform + pos: 34.5,18.5 + parent: 2 - proto: PoweredWarmSmallLight entities: - uid: 1962 @@ -38355,17 +54066,6 @@ entities: rot: 3.141592653589793 rad pos: 54.5,19.5 parent: 2 - - uid: 2234 - components: - - type: Transform - pos: 9.5,38.5 - parent: 2 - - uid: 2235 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-12.5 - parent: 2 - uid: 2242 components: - type: Transform @@ -38384,27 +54084,6 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-14.5 parent: 2 - - uid: 2487 - components: - - type: Transform - pos: 35.5,-9.5 - parent: 2 - - uid: 2488 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-10.5 - parent: 2 - - uid: 2489 - components: - - type: Transform - pos: 41.5,-11.5 - parent: 2 - - uid: 2620 - components: - - type: Transform - pos: 52.5,21.5 - parent: 2 - uid: 2742 components: - type: Transform @@ -38450,6 +54129,11 @@ entities: - type: Transform pos: 13.5,13.5 parent: 2 + - uid: 10621 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 3564 - proto: PresentTrash entities: - uid: 7521 @@ -38464,107 +54148,225 @@ entities: parent: 2 - proto: Protolathe entities: - - uid: 2379 + - uid: 1508 components: - type: Transform - pos: 48.5,7.5 + pos: 54.5,7.5 parent: 2 - - uid: 7564 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices + - uid: 8479 components: - type: Transform - pos: 39.5,35.5 - parent: 2 -- proto: ProtolatheMachineCircuitboard - entities: - - uid: 2184 - components: - - type: Transform - pos: 13.5,-12.5 + pos: 36.5,33.5 parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - proto: ProximitySensor entities: + - uid: 828 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 2 + - uid: 2378 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 2 + - uid: 2412 + components: + - type: Transform + pos: 35.5,-2.5 + parent: 2 + - uid: 2448 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 2 + - uid: 2627 + components: + - type: Transform + pos: 35.5,-2.5 + parent: 2 + - uid: 2861 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 2 - uid: 7180 components: - type: Transform pos: 59.5,34.5 parent: 2 - - uid: 7196 - components: - - type: Transform - pos: 33.5,-5.5 - parent: 2 - - uid: 7198 - components: - - type: Transform - pos: 33.5,-6.5 - parent: 2 - - uid: 7200 - components: - - type: Transform - pos: 33.5,-6.5 - parent: 2 - - uid: 7225 - components: - - type: Transform - pos: 33.5,-5.5 - parent: 2 - uid: 7254 components: - type: Transform pos: 55.5,29.5 parent: 2 - - uid: 7262 +- proto: PuddleBloodSmall + entities: + - uid: 6348 components: - type: Transform - pos: 33.5,-4.5 - parent: 2 - - uid: 7263 - components: - - type: Transform - pos: 33.5,-4.5 + pos: 7.5,34.5 parent: 2 - proto: Rack entities: - - uid: 1313 - components: - - type: Transform - pos: 12.5,-7.5 - parent: 2 - - uid: 2064 - components: - - type: Transform - pos: 49.5,39.5 - parent: 2 - - uid: 2496 - components: - - type: Transform - pos: 9.5,-10.5 - parent: 2 - - uid: 2791 - components: - - type: Transform - pos: 13.5,-10.5 - parent: 2 - - uid: 2792 - components: - - type: Transform - pos: 13.5,-11.5 - parent: 2 - - uid: 2793 - components: - - type: Transform - pos: 13.5,-12.5 - parent: 2 - - uid: 2795 + - uid: 765 components: - type: Transform pos: 9.5,-12.5 parent: 2 - - uid: 2796 + - uid: 2619 components: - type: Transform - pos: 10.5,-12.5 + pos: 13.5,2.5 parent: 2 + - uid: 2632 + components: + - type: Transform + pos: 9.5,2.5 + parent: 2 + - uid: 3371 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 2 + - uid: 3667 + components: + - type: Transform + pos: 54.5,41.5 + parent: 2 + - uid: 4248 + components: + - type: Transform + pos: 11.5,35.5 + parent: 2 + - uid: 4724 + components: + - type: Transform + pos: 30.5,52.5 + parent: 2 + - uid: 4725 + components: + - type: Transform + pos: 30.5,51.5 + parent: 2 + - uid: 4726 + components: + - type: Transform + pos: 34.5,51.5 + parent: 2 + - uid: 4729 + components: + - type: Transform + pos: 34.5,52.5 + parent: 2 + - uid: 4731 + components: + - type: Transform + pos: 32.5,51.5 + parent: 2 + - uid: 4732 + components: + - type: Transform + pos: 32.5,52.5 + parent: 2 + - uid: 4733 + components: + - type: Transform + pos: 30.5,48.5 + parent: 2 + - uid: 5029 + components: + - type: Transform + pos: 51.5,41.5 + parent: 2 + - uid: 5135 + components: + - type: Transform + pos: 53.5,41.5 + parent: 2 + - uid: 6233 + components: + - type: Transform + pos: 52.5,41.5 + parent: 2 + - uid: 7348 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - uid: 7353 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 + - uid: 7359 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 7366 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 + - uid: 7768 + components: + - type: Transform + pos: 28.5,33.5 + parent: 2 + - uid: 7804 + components: + - type: Transform + pos: 27.5,33.5 + parent: 2 + - uid: 10410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-69.5 + parent: 3564 + - uid: 10418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-69.5 + parent: 3564 + - uid: 10419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-69.5 + parent: 3564 + - uid: 10420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-69.5 + parent: 3564 + - uid: 10421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-69.5 + parent: 3564 + - uid: 10422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-69.5 + parent: 3564 - proto: RadioHandheld entities: - uid: 2370 @@ -38572,6 +54374,16 @@ entities: - type: Transform pos: 60.62494,34.605804 parent: 2 + - uid: 6690 + components: + - type: Transform + pos: 31.5,-10.5 + parent: 2 + - uid: 6693 + components: + - type: Transform + pos: 34.5,-10.5 + parent: 2 - uid: 7587 components: - type: Transform @@ -38579,40 +54391,28 @@ entities: parent: 2 - proto: Railing entities: - - uid: 4057 + - uid: 235 components: - type: Transform - pos: 30.5,3.5 + pos: 26.5,-6.5 parent: 2 - - uid: 4058 + - uid: 241 components: - type: Transform - pos: 29.5,3.5 + pos: 27.5,-6.5 parent: 2 - - uid: 4059 + - uid: 254 components: - type: Transform - pos: 28.5,3.5 + rot: 1.5707963267948966 rad + pos: 28.5,-5.5 parent: 2 - - uid: 4060 +- proto: RailingCorner + entities: + - uid: 250 components: - type: Transform - pos: 27.5,3.5 - parent: 2 - - uid: 4061 - components: - - type: Transform - pos: 26.5,3.5 - parent: 2 - - uid: 4062 - components: - - type: Transform - pos: 25.5,3.5 - parent: 2 - - uid: 4063 - components: - - type: Transform - pos: 24.5,3.5 + pos: 28.5,-6.5 parent: 2 - proto: RandomEngineerCorpseSpawner entities: @@ -38621,710 +54421,329 @@ entities: - type: Transform pos: 35.5,45.5 parent: 2 -- proto: RandomMeat - entities: - - uid: 229 - components: - - type: Transform - pos: 25.5,-12.5 - parent: 2 -- proto: RandomSpawner - entities: - - uid: 291 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,57.5 - parent: 2 - - uid: 2157 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,0.5 - parent: 2 - - uid: 2282 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,23.5 - parent: 2 - - uid: 2768 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,49.5 - parent: 2 - - uid: 3153 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,45.5 - parent: 2 - - uid: 3311 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,53.5 - parent: 2 - - uid: 4823 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,43.5 - parent: 2 - - uid: 4826 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,44.5 - parent: 2 - - uid: 6157 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,45.5 - parent: 2 - - uid: 7226 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,54.5 - parent: 2 - - uid: 7227 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,55.5 - parent: 2 - - uid: 7228 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,54.5 - parent: 2 - - uid: 7229 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,54.5 - parent: 2 - - uid: 7230 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,51.5 - parent: 2 - - uid: 7233 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,55.5 - parent: 2 - - uid: 7234 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,52.5 - parent: 2 - - uid: 7235 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,50.5 - parent: 2 - - uid: 7336 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,39.5 - parent: 2 - - uid: 7337 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,38.5 - parent: 2 - - uid: 7338 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,29.5 - parent: 2 - - uid: 7339 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,14.5 - parent: 2 - - uid: 7340 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,12.5 - parent: 2 - - uid: 7341 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,12.5 - parent: 2 - - uid: 7342 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,12.5 - parent: 2 - - uid: 7343 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,18.5 - parent: 2 - - uid: 7344 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,14.5 - parent: 2 - - uid: 7345 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,15.5 - parent: 2 - - uid: 7346 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,17.5 - parent: 2 - - uid: 7347 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,16.5 - parent: 2 - - uid: 7348 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,16.5 - parent: 2 - - uid: 7349 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,17.5 - parent: 2 - - uid: 7350 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,17.5 - parent: 2 - - uid: 7351 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,15.5 - parent: 2 - - uid: 7352 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,17.5 - parent: 2 - - uid: 7353 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,0.5 - parent: 2 - - uid: 7354 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,1.5 - parent: 2 - - uid: 7355 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,0.5 - parent: 2 - - uid: 7357 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,2.5 - parent: 2 - - uid: 7359 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,6.5 - parent: 2 - - uid: 7360 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,7.5 - parent: 2 - - uid: 7363 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,10.5 - parent: 2 - - uid: 7364 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,4.5 - parent: 2 - - uid: 7365 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,10.5 - parent: 2 - - uid: 7366 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,11.5 - parent: 2 - - uid: 7368 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-14.5 - parent: 2 - - uid: 7369 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-16.5 - parent: 2 - - uid: 7370 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-16.5 - parent: 2 - - uid: 7371 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-14.5 - parent: 2 - - uid: 7372 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-14.5 - parent: 2 - - uid: 7373 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,4.5 - parent: 2 - - uid: 7376 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,14.5 - parent: 2 - - uid: 7381 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,32.5 - parent: 2 - - uid: 7384 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,12.5 - parent: 2 - - uid: 7385 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,9.5 - parent: 2 - - uid: 7386 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,10.5 - parent: 2 - - uid: 7387 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,15.5 - parent: 2 - - uid: 7388 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,14.5 - parent: 2 - - uid: 7389 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,11.5 - parent: 2 - - uid: 7390 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,9.5 - parent: 2 - - uid: 7391 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,6.5 - parent: 2 - - uid: 7392 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,5.5 - parent: 2 - - uid: 7393 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,6.5 - parent: 2 - - uid: 7394 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,5.5 - parent: 2 - - uid: 7395 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,7.5 - parent: 2 - - uid: 7396 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,6.5 - parent: 2 - - uid: 7397 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,5.5 - parent: 2 - - uid: 7398 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,2.5 - parent: 2 - - uid: 7399 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,3.5 - parent: 2 - - uid: 7401 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-2.5 - parent: 2 - - uid: 7402 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-2.5 - parent: 2 - - uid: 7403 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-2.5 - parent: 2 - - uid: 7404 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-1.5 - parent: 2 - - uid: 7405 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-0.5 - parent: 2 - - uid: 7406 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 2 - - uid: 7407 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-3.5 - parent: 2 - - uid: 7408 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-14.5 - parent: 2 - - uid: 7410 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-8.5 - parent: 2 - proto: RandomVendingClothing entities: + - uid: 6236 + components: + - type: Transform + pos: 9.5,0.5 + parent: 2 - uid: 7287 components: - type: Transform pos: 58.5,44.5 parent: 2 + - uid: 7360 + components: + - type: Transform + pos: 58.5,53.5 + parent: 2 - proto: RandomVendingDrinks entities: - - uid: 1376 - components: - - type: Transform - pos: 15.5,7.5 - parent: 2 - - uid: 1550 - components: - - type: Transform - pos: 52.5,14.5 - parent: 2 - uid: 1817 components: - type: Transform pos: 23.5,7.5 parent: 2 - - uid: 4848 - components: - - type: Transform - pos: 56.5,40.5 - parent: 2 - - uid: 5174 - components: - - type: Transform - pos: 11.5,0.5 - parent: 2 - uid: 7003 components: - type: Transform - pos: 47.5,-12.5 - parent: 2 -- proto: RandomVendingSnacks - entities: - - uid: 697 - components: - - type: Transform - pos: 12.5,0.5 - parent: 2 - - uid: 1549 - components: - - type: Transform - pos: 51.5,14.5 - parent: 2 - - uid: 4849 - components: - - type: Transform - pos: 58.5,40.5 + pos: 13.5,0.5 parent: 2 - uid: 7004 components: - type: Transform - pos: 48.5,-12.5 + pos: 58.5,40.5 parent: 2 - uid: 7495 + components: + - type: Transform + pos: 42.5,13.5 + parent: 2 + - uid: 7532 + components: + - type: Transform + pos: 48.5,-12.5 + parent: 2 + - uid: 7744 components: - type: Transform pos: 16.5,7.5 parent: 2 -- proto: RCD - entities: - - uid: 7172 + - uid: 7780 components: - type: Transform - pos: 45.5,33.5 + pos: 53.5,26.5 parent: 2 -- proto: Recycler - entities: - - uid: 290 + - uid: 10567 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,5.5 + pos: 14.5,-20.5 + parent: 3564 + - uid: 11224 + components: + - type: Transform + pos: 63.5,2.5 + parent: 2 +- proto: RandomVendingSnacks + entities: + - uid: 1815 + components: + - type: Transform + pos: 41.5,13.5 + parent: 2 + - uid: 2281 + components: + - type: Transform + pos: 22.5,7.5 + parent: 2 + - uid: 5213 + components: + - type: Transform + pos: 15.5,7.5 + parent: 2 + - uid: 5439 + components: + - type: Transform + pos: 56.5,40.5 + parent: 2 + - uid: 5444 + components: + - type: Transform + pos: 12.5,0.5 + parent: 2 + - uid: 5900 + components: + - type: Transform + pos: 47.5,-12.5 + parent: 2 + - uid: 6574 + components: + - type: Transform + pos: 52.5,26.5 + parent: 2 + - uid: 10570 + components: + - type: Transform + pos: 15.5,-20.5 + parent: 3564 + - uid: 11223 + components: + - type: Transform + pos: 62.5,2.5 parent: 2 - proto: ReinforcedPlasmaWindow entities: - - uid: 1354 + - uid: 143 components: - type: Transform - pos: 22.5,28.5 + pos: 23.5,-6.5 parent: 2 - - uid: 1379 + - uid: 150 components: - type: Transform - pos: 18.5,32.5 + pos: 24.5,-5.5 parent: 2 - - uid: 1380 + - uid: 165 components: - type: Transform - pos: 19.5,32.5 + pos: 24.5,-6.5 parent: 2 - - uid: 1383 + - uid: 176 components: - type: Transform - pos: 24.5,32.5 + pos: 22.5,-3.5 parent: 2 - - uid: 1390 + - uid: 186 components: - type: Transform - pos: 23.5,32.5 + pos: 23.5,-3.5 parent: 2 - - uid: 1393 + - uid: 551 components: - type: Transform - pos: 25.5,29.5 + pos: 24.5,-0.5 parent: 2 - - uid: 1394 + - uid: 553 components: - type: Transform - pos: 25.5,30.5 + pos: 26.5,-0.5 parent: 2 - - uid: 1405 + - uid: 554 components: - type: Transform - pos: 25.5,28.5 + pos: 28.5,-1.5 parent: 2 - - uid: 1439 + - uid: 626 + components: + - type: Transform + pos: 24.5,-1.5 + parent: 2 + - uid: 629 + components: + - type: Transform + pos: 27.5,-1.5 + parent: 2 + - uid: 675 + components: + - type: Transform + pos: 24.5,0.5 + parent: 2 + - uid: 699 + components: + - type: Transform + pos: 23.5,-1.5 + parent: 2 + - uid: 710 + components: + - type: Transform + pos: 22.5,-1.5 + parent: 2 + - uid: 726 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 2 + - uid: 761 + components: + - type: Transform + pos: 26.5,0.5 + parent: 2 + - uid: 766 + components: + - type: Transform + pos: 24.5,-3.5 + parent: 2 + - uid: 903 components: - type: Transform pos: 22.5,32.5 parent: 2 - - uid: 1445 + - uid: 913 components: - type: Transform - pos: 17.5,32.5 + pos: 19.5,32.5 parent: 2 - - uid: 1462 + - uid: 914 components: - type: Transform pos: 25.5,32.5 parent: 2 - - uid: 1463 + - uid: 963 components: - type: Transform - pos: 25.5,31.5 + pos: 24.5,32.5 parent: 2 - - uid: 1477 + - uid: 1465 components: - type: Transform - pos: 25.5,27.5 + pos: 20.5,32.5 parent: 2 - - uid: 1525 + - uid: 1731 components: - type: Transform - pos: 25.5,26.5 + pos: 22.5,-6.5 parent: 2 - - uid: 1526 + - uid: 2899 components: - type: Transform - pos: 24.5,26.5 + pos: 24.5,-4.5 parent: 2 - - uid: 1527 + - uid: 4014 components: - type: Transform - pos: 23.5,26.5 + pos: 27.5,-11.5 parent: 2 - - uid: 1664 + - uid: 4057 components: - type: Transform - pos: 19.5,31.5 + pos: 29.5,-11.5 parent: 2 - - uid: 1665 + - uid: 4058 components: - type: Transform - pos: 19.5,30.5 + pos: 28.5,-11.5 parent: 2 - - uid: 1666 + - uid: 4664 components: - type: Transform - pos: 19.5,29.5 + pos: 18.5,32.5 parent: 2 - - uid: 1667 + - uid: 4665 components: - type: Transform - pos: 18.5,29.5 + pos: 23.5,32.5 parent: 2 - - uid: 1668 + - uid: 4682 components: - type: Transform - pos: 17.5,29.5 + pos: 17.5,32.5 parent: 2 - - uid: 1669 + - uid: 9661 components: - type: Transform - pos: 19.5,28.5 - parent: 2 - - uid: 1670 + pos: 14.5,-57.5 + parent: 3564 + - uid: 9662 components: - type: Transform - pos: 19.5,27.5 - parent: 2 - - uid: 1671 + pos: 14.5,-58.5 + parent: 3564 + - uid: 9663 components: - type: Transform - pos: 22.5,31.5 - parent: 2 - - uid: 1672 + pos: 14.5,-59.5 + parent: 3564 + - uid: 9664 components: - type: Transform - pos: 22.5,30.5 - parent: 2 - - uid: 1673 + pos: 13.5,-59.5 + parent: 3564 + - uid: 9665 components: - type: Transform - pos: 22.5,29.5 - parent: 2 - - uid: 1674 + pos: 12.5,-59.5 + parent: 3564 + - uid: 9666 components: - type: Transform - pos: 23.5,29.5 - parent: 2 - - uid: 1675 + pos: 12.5,-58.5 + parent: 3564 + - uid: 9667 components: - type: Transform - pos: 24.5,29.5 - parent: 2 - - uid: 1685 + pos: 12.5,-57.5 + parent: 3564 + - uid: 9668 components: - type: Transform - pos: 22.5,26.5 - parent: 2 - - uid: 1687 + pos: 11.5,-59.5 + parent: 3564 + - uid: 9676 components: - type: Transform - pos: 22.5,27.5 - parent: 2 + pos: 15.5,-62.5 + parent: 3564 + - uid: 9677 + components: + - type: Transform + pos: 16.5,-62.5 + parent: 3564 + - uid: 9678 + components: + - type: Transform + pos: 17.5,-62.5 + parent: 3564 + - uid: 9679 + components: + - type: Transform + pos: 14.5,-63.5 + parent: 3564 + - uid: 9680 + components: + - type: Transform + pos: 14.5,-62.5 + parent: 3564 - proto: ReinforcedWindow entities: - uid: 9 @@ -39367,16 +54786,6 @@ entities: - type: Transform pos: 2.5,-4.5 parent: 2 - - uid: 89 - components: - - type: Transform - pos: 30.5,17.5 - parent: 2 - - uid: 122 - components: - - type: Transform - pos: -5.5,6.5 - parent: 2 - uid: 126 components: - type: Transform @@ -39402,11 +54811,6 @@ entities: - type: Transform pos: 15.5,3.5 parent: 2 - - uid: 143 - components: - - type: Transform - pos: -7.5,6.5 - parent: 2 - uid: 144 components: - type: Transform @@ -39507,36 +54911,11 @@ entities: - type: Transform pos: -7.5,15.5 parent: 2 - - uid: 303 - components: - - type: Transform - pos: -7.5,16.5 - parent: 2 - - uid: 304 - components: - - type: Transform - pos: -7.5,8.5 - parent: 2 - - uid: 307 - components: - - type: Transform - pos: -8.5,13.5 - parent: 2 - - uid: 308 - components: - - type: Transform - pos: -8.5,11.5 - parent: 2 - uid: 312 components: - type: Transform pos: 13.5,-15.5 parent: 2 - - uid: 358 - components: - - type: Transform - pos: -7.5,4.5 - parent: 2 - uid: 360 components: - type: Transform @@ -39617,6 +54996,11 @@ entities: - type: Transform pos: 2.5,36.5 parent: 2 + - uid: 562 + components: + - type: Transform + pos: 51.5,18.5 + parent: 2 - uid: 568 components: - type: Transform @@ -39627,16 +55011,6 @@ entities: - type: Transform pos: 21.5,13.5 parent: 2 - - uid: 660 - components: - - type: Transform - pos: 20.5,36.5 - parent: 2 - - uid: 707 - components: - - type: Transform - pos: 20.5,37.5 - parent: 2 - uid: 713 components: - type: Transform @@ -39647,11 +55021,6 @@ entities: - type: Transform pos: 12.5,40.5 parent: 2 - - uid: 719 - components: - - type: Transform - pos: 20.5,35.5 - parent: 2 - uid: 736 components: - type: Transform @@ -39672,11 +55041,6 @@ entities: - type: Transform pos: 45.5,42.5 parent: 2 - - uid: 935 - components: - - type: Transform - pos: 0.5,-9.5 - parent: 2 - uid: 967 components: - type: Transform @@ -39872,81 +55236,6 @@ entities: - type: Transform pos: 41.5,0.5 parent: 2 - - uid: 1453 - components: - - type: Transform - pos: 18.5,38.5 - parent: 2 - - uid: 1499 - components: - - type: Transform - pos: 30.5,-10.5 - parent: 2 - - uid: 1501 - components: - - type: Transform - pos: 29.5,-10.5 - parent: 2 - - uid: 1502 - components: - - type: Transform - pos: 28.5,-10.5 - parent: 2 - - uid: 1503 - components: - - type: Transform - pos: 26.5,-10.5 - parent: 2 - - uid: 1511 - components: - - type: Transform - pos: 20.5,38.5 - parent: 2 - - uid: 1516 - components: - - type: Transform - pos: 25.5,-10.5 - parent: 2 - - uid: 1622 - components: - - type: Transform - pos: 19.5,38.5 - parent: 2 - - uid: 1657 - components: - - type: Transform - pos: 32.5,-4.5 - parent: 2 - - uid: 1684 - components: - - type: Transform - pos: 32.5,-6.5 - parent: 2 - - uid: 1691 - components: - - type: Transform - pos: 32.5,-7.5 - parent: 2 - - uid: 1692 - components: - - type: Transform - pos: 9.5,27.5 - parent: 2 - - uid: 1811 - components: - - type: Transform - pos: 24.5,8.5 - parent: 2 - - uid: 1812 - components: - - type: Transform - pos: 25.5,8.5 - parent: 2 - - uid: 1813 - components: - - type: Transform - pos: 26.5,8.5 - parent: 2 - uid: 1814 components: - type: Transform @@ -40067,66 +55356,11 @@ entities: - type: Transform pos: 13.5,40.5 parent: 2 - - uid: 1922 - components: - - type: Transform - pos: 10.5,20.5 - parent: 2 - uid: 1933 components: - type: Transform pos: 51.5,38.5 parent: 2 - - uid: 1938 - components: - - type: Transform - pos: 29.5,17.5 - parent: 2 - - uid: 1940 - components: - - type: Transform - pos: 9.5,21.5 - parent: 2 - - uid: 1941 - components: - - type: Transform - pos: 35.5,15.5 - parent: 2 - - uid: 1948 - components: - - type: Transform - pos: 10.5,28.5 - parent: 2 - - uid: 1950 - components: - - type: Transform - pos: 8.5,27.5 - parent: 2 - - uid: 1952 - components: - - type: Transform - pos: 10.5,27.5 - parent: 2 - - uid: 1955 - components: - - type: Transform - pos: 8.5,24.5 - parent: 2 - - uid: 1956 - components: - - type: Transform - pos: 9.5,24.5 - parent: 2 - - uid: 1961 - components: - - type: Transform - pos: 10.5,24.5 - parent: 2 - - uid: 1966 - components: - - type: Transform - pos: 31.5,17.5 - parent: 2 - uid: 1970 components: - type: Transform @@ -40157,20 +55391,15 @@ entities: - type: Transform pos: 51.5,-17.5 parent: 2 - - uid: 2109 - components: - - type: Transform - pos: 10.5,21.5 - parent: 2 - uid: 2127 components: - type: Transform pos: 53.5,-15.5 parent: 2 - - uid: 2129 + - uid: 2130 components: - type: Transform - pos: 8.5,21.5 + pos: 44.5,26.5 parent: 2 - uid: 2139 components: @@ -40282,11 +55511,6 @@ entities: - type: Transform pos: 64.5,35.5 parent: 2 - - uid: 2464 - components: - - type: Transform - pos: 64.5,27.5 - parent: 2 - uid: 2590 components: - type: Transform @@ -40312,70 +55536,96 @@ entities: - type: Transform pos: 56.5,63.5 parent: 2 - - uid: 2684 - components: - - type: Transform - pos: 0.5,-11.5 - parent: 2 - - uid: 2750 - components: - - type: Transform - pos: 59.5,64.5 - parent: 2 - - uid: 2751 - components: - - type: Transform - pos: 59.5,65.5 - parent: 2 - - uid: 2752 - components: - - type: Transform - pos: 57.5,65.5 - parent: 2 - - uid: 2753 - components: - - type: Transform - pos: 57.5,64.5 - parent: 2 - uid: 2756 components: - type: Transform pos: -0.5,36.5 parent: 2 - - uid: 2758 + - uid: 3245 components: - type: Transform - pos: -1.5,-9.5 + pos: 58.5,-18.5 parent: 2 - - uid: 2759 + - uid: 3247 components: - type: Transform - pos: -1.5,-11.5 + pos: 58.5,-19.5 parent: 2 - - uid: 4489 + - uid: 3248 components: - type: Transform - pos: 54.5,59.5 + pos: 58.5,-20.5 parent: 2 - - uid: 4490 + - uid: 3249 components: - type: Transform - pos: 53.5,59.5 + pos: 56.5,-18.5 parent: 2 + - uid: 3250 + components: + - type: Transform + pos: 56.5,-19.5 + parent: 2 + - uid: 3259 + components: + - type: Transform + pos: 56.5,-20.5 + parent: 2 + - uid: 3567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-39.5 + parent: 3564 + - uid: 3568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-40.5 + parent: 3564 + - uid: 3569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-42.5 + parent: 3564 + - uid: 3570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-43.5 + parent: 3564 + - uid: 3571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-44.5 + parent: 3564 + - uid: 3572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-45.5 + parent: 3564 - uid: 4494 components: - type: Transform pos: 55.5,61.5 parent: 2 - - uid: 4495 + - uid: 4685 components: - type: Transform - pos: 54.5,61.5 + pos: 25.5,25.5 parent: 2 - - uid: 4496 + - uid: 4686 components: - type: Transform - pos: 53.5,61.5 + pos: 25.5,24.5 + parent: 2 + - uid: 4697 + components: + - type: Transform + pos: 25.5,23.5 parent: 2 - uid: 6011 components: @@ -40392,11 +55642,6 @@ entities: - type: Transform pos: 56.5,-17.5 parent: 2 - - uid: 6014 - components: - - type: Transform - pos: 57.5,-17.5 - parent: 2 - uid: 6015 components: - type: Transform @@ -40407,10 +55652,363 @@ entities: - type: Transform pos: 53.5,-17.5 parent: 2 - - uid: 6305 + - uid: 6345 components: - type: Transform - pos: 62.5,59.5 + pos: 46.5,34.5 + parent: 2 + - uid: 7192 + components: + - type: Transform + pos: 25.5,22.5 + parent: 2 + - uid: 7702 + components: + - type: Transform + pos: 47.5,26.5 + parent: 2 + - uid: 8318 + components: + - type: Transform + pos: 46.5,26.5 + parent: 2 + - uid: 8320 + components: + - type: Transform + pos: 45.5,26.5 + parent: 2 + - uid: 8393 + components: + - type: Transform + pos: 47.5,34.5 + parent: 2 + - uid: 8394 + components: + - type: Transform + pos: 44.5,32.5 + parent: 2 + - uid: 9452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-46.5 + parent: 3564 + - uid: 9453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-46.5 + parent: 3564 + - uid: 9712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-60.5 + parent: 3564 + - uid: 9734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-18.5 + parent: 3564 + - uid: 9735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-24.5 + parent: 3564 + - uid: 9736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-24.5 + parent: 3564 + - uid: 9737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-25.5 + parent: 3564 + - uid: 9738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-24.5 + parent: 3564 + - uid: 9739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-24.5 + parent: 3564 + - uid: 9740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-29.5 + parent: 3564 + - uid: 9741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-32.5 + parent: 3564 + - uid: 9742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-33.5 + parent: 3564 + - uid: 9743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-27.5 + parent: 3564 + - uid: 9744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-30.5 + parent: 3564 + - uid: 9745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-26.5 + parent: 3564 + - uid: 9746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-25.5 + parent: 3564 + - uid: 9747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-30.5 + parent: 3564 + - uid: 9748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-29.5 + parent: 3564 + - uid: 9749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-28.5 + parent: 3564 + - uid: 9750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-33.5 + parent: 3564 + - uid: 9751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-34.5 + parent: 3564 + - uid: 9752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-36.5 + parent: 3564 + - uid: 9753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-37.5 + parent: 3564 + - uid: 9754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-36.5 + parent: 3564 + - uid: 9755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-37.5 + parent: 3564 + - uid: 9758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-40.5 + parent: 3564 + - uid: 9759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-41.5 + parent: 3564 + - uid: 9760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-44.5 + parent: 3564 + - uid: 9761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-45.5 + parent: 3564 + - uid: 9762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-44.5 + parent: 3564 + - uid: 9763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-45.5 + parent: 3564 + - uid: 9764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-48.5 + parent: 3564 + - uid: 9765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-49.5 + parent: 3564 + - uid: 9766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-48.5 + parent: 3564 + - uid: 9767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-49.5 + parent: 3564 + - uid: 9768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-52.5 + parent: 3564 + - uid: 9769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-53.5 + parent: 3564 + - uid: 9770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-52.5 + parent: 3564 + - uid: 9771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-53.5 + parent: 3564 + - uid: 9772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-56.5 + parent: 3564 + - uid: 9773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-56.5 + parent: 3564 + - uid: 9774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-56.5 + parent: 3564 + - uid: 9775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-56.5 + parent: 3564 + - uid: 9776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-62.5 + parent: 3564 + - uid: 9777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-62.5 + parent: 3564 + - uid: 9778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-62.5 + parent: 3564 + - uid: 9779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-62.5 + parent: 3564 + - uid: 9780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-63.5 + parent: 3564 + - uid: 9781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-64.5 + parent: 3564 + - uid: 9782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-65.5 + parent: 3564 + - uid: 9783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-67.5 + parent: 3564 + - uid: 9784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-68.5 + parent: 3564 + - uid: 9785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-69.5 + parent: 3564 + - uid: 11559 + components: + - type: Transform + pos: 23.5,26.5 parent: 2 - proto: RemoteSignaller entities: @@ -40424,31 +56022,66 @@ entities: - type: Transform pos: 56.5,29.5 parent: 2 + - uid: 808 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 2 + - uid: 1352 + components: + - type: Transform + pos: 35.5,-2.5 + parent: 2 - uid: 1614 components: - type: Transform pos: 63.5,32.5 parent: 2 + - uid: 2134 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 2228 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 2284 + components: + - type: Transform + pos: 48.5,20.5 + parent: 2 + - uid: 2285 + components: + - type: Transform + pos: 46.5,20.5 + parent: 2 + - uid: 2367 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 2391 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 2559 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 - uid: 6684 components: - type: Transform pos: 60.635353,34.56153 parent: 2 - - uid: 7195 - components: - - type: Transform - pos: 33.5,-5.5 - parent: 2 - uid: 7208 components: - type: Transform pos: 63.5,30.5 parent: 2 - - uid: 7216 - components: - - type: Transform - pos: 33.5,-6.5 - parent: 2 - uid: 7222 components: - type: Transform @@ -40459,10 +56092,10 @@ entities: - type: Transform pos: 18.5,-0.5 parent: 2 - - uid: 7697 + - uid: 7695 components: - type: Transform - pos: 46.5,19.5 + pos: 52.5,9.5 parent: 2 - uid: 7698 components: @@ -40479,27 +56112,74 @@ entities: - type: Transform pos: 45.5,19.5 parent: 2 -- proto: ResearchAndDevelopmentServer - entities: - - uid: 1537 + - uid: 7734 components: - type: Transform - pos: 52.5,11.5 + pos: 48.5,19.5 + parent: 2 + - uid: 8400 + components: + - type: Transform + pos: 38.5,30.5 + parent: 2 + - uid: 8407 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 8410 + components: + - type: Transform + pos: 38.5,29.5 + parent: 2 + - uid: 11126 + components: + - type: Transform + pos: 49.5,20.5 + parent: 2 + - uid: 11131 + components: + - type: Transform + pos: 50.5,20.5 + parent: 2 + - uid: 11133 + components: + - type: Transform + pos: 50.5,20.5 + parent: 2 + - uid: 11146 + components: + - type: Transform + pos: 49.5,19.5 + parent: 2 + - uid: 11147 + components: + - type: Transform + pos: 49.5,19.5 + parent: 2 + - uid: 11348 + components: + - type: Transform + pos: -5.5,5.5 + parent: 2 +- proto: ResearchAndDevelopmentServer + entities: + - uid: 2487 + components: + - type: Transform + pos: -3.5,7.5 parent: 2 - proto: SalvageHumanCorpseSpawner entities: - - uid: 7267 + - uid: 5863 components: - type: Transform - rot: 1.5707963267948966 rad pos: 27.5,9.5 parent: 2 -- proto: SalvageMaterialCrateSpawner - entities: - - uid: 8291 + - uid: 7799 components: - type: Transform - pos: 14.5,22.5 + pos: 9.5,34.5 parent: 2 - proto: Screen entities: @@ -40518,37 +56198,70 @@ entities: - type: Transform pos: 49.5,-12.5 parent: 2 -- proto: SecurityTechFab +- proto: Screwdriver entities: - - uid: 1341 + - uid: 6566 components: - type: Transform - pos: 39.5,-4.5 + pos: 31.5,-10.5 parent: 2 - - type: TechnologyDatabase - supportedDisciplines: - - Industrial - - Arsenal - - Experimental - - CivilianServices + - uid: 6575 + components: + - type: Transform + pos: 32.5,-10.5 + parent: 2 + - uid: 6589 + components: + - type: Transform + pos: 34.5,-10.5 + parent: 2 + - uid: 6689 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 2 + - uid: 8265 + components: + - type: Transform + pos: 27.5,26.5 + parent: 2 +- proto: SecurityTechFab + entities: + - uid: 10398 + components: + - type: Transform + pos: 29.5,-69.5 + parent: 3564 - proto: SeedExtractor entities: - - uid: 1981 + - uid: 10547 + components: + - type: Transform + pos: 10.5,-20.5 + parent: 3564 +- proto: SheetGlass + entities: + - uid: 7184 components: - type: Transform pos: 20.5,-5.5 parent: 2 - proto: SheetGlass10 entities: - - uid: 2132 + - uid: 1766 components: - type: Transform - pos: 29.5,37.5 + pos: 38.5,31.5 parent: 2 - - uid: 4742 + - uid: 1792 components: - type: Transform - pos: 48.5,3.5 + pos: 38.5,31.5 + parent: 2 + - uid: 1884 + components: + - type: Transform + pos: 38.5,31.5 parent: 2 - uid: 7693 components: @@ -40560,19 +56273,84 @@ entities: - type: Transform pos: 45.5,19.5 parent: 2 -- proto: SheetPlasma10 - entities: - - uid: 1539 + - uid: 7816 components: - type: Transform - pos: 48.5,2.5 + pos: 53.5,9.5 + parent: 2 + - uid: 10527 + components: + - type: Transform + pos: 36.5,-26.5 + parent: 3564 + - uid: 10528 + components: + - type: Transform + pos: 35.5,-26.5 + parent: 3564 + - uid: 10529 + components: + - type: Transform + pos: 36.5,-26.5 + parent: 3564 + - uid: 10530 + components: + - type: Transform + pos: 35.5,-26.5 + parent: 3564 + - uid: 10531 + components: + - type: Transform + pos: 36.5,-26.5 + parent: 3564 + - uid: 10532 + components: + - type: Transform + pos: 35.5,-26.5 + parent: 3564 +- proto: SheetPlasma10 + entities: + - uid: 1363 + components: + - type: Transform + pos: 29.5,8.5 + parent: 2 + - uid: 1542 + components: + - type: Transform + pos: 51.5,19.5 + parent: 2 + - uid: 3743 + components: + - type: Transform + pos: 52.5,19.5 + parent: 2 + - uid: 7819 + components: + - type: Transform + pos: 53.5,9.5 + parent: 2 + - uid: 8470 + components: + - type: Transform + pos: 38.5,29.5 parent: 2 - proto: SheetPlasteel10 entities: - - uid: 2164 + - uid: 1774 components: - type: Transform - pos: 28.5,37.5 + pos: 38.5,30.5 + parent: 2 + - uid: 1783 + components: + - type: Transform + pos: 38.5,30.5 + parent: 2 + - uid: 1788 + components: + - type: Transform + pos: 38.5,30.5 parent: 2 - uid: 7691 components: @@ -40584,18 +56362,43 @@ entities: - type: Transform pos: 48.5,19.5 parent: 2 -- proto: SheetPlastic10 - entities: - - uid: 4738 + - uid: 10524 components: - type: Transform - pos: 48.5,4 + pos: 34.5,-25.5 + parent: 3564 + - uid: 10525 + components: + - type: Transform + pos: 35.5,-25.5 + parent: 3564 + - uid: 10526 + components: + - type: Transform + pos: 36.5,-25.5 + parent: 3564 +- proto: SheetPlastic10 + entities: + - uid: 5346 + components: + - type: Transform + pos: 47.5,20.5 + parent: 2 + - uid: 6163 + components: + - type: Transform + pos: 50.5,20.5 parent: 2 - uid: 7696 components: - type: Transform pos: 47.5,19.5 parent: 2 + - uid: 7820 + components: + - type: Transform + pos: 53.5,9.5 + parent: 2 - proto: SheetSteel1 entities: - uid: 8 @@ -40615,15 +56418,40 @@ entities: parent: 2 - proto: SheetSteel10 entities: - - uid: 1917 + - uid: 860 components: - type: Transform - pos: 27.5,37.5 + pos: 38.5,29.5 parent: 2 - - uid: 3048 + - uid: 1552 components: - type: Transform - pos: 48.5,4.5 + pos: 47.5,19.5 + parent: 2 + - uid: 1553 + components: + - type: Transform + pos: 48.5,19.5 + parent: 2 + - uid: 1775 + components: + - type: Transform + pos: 38.5,29.5 + parent: 2 + - uid: 3239 + components: + - type: Transform + pos: 38.5,29.5 + parent: 2 + - uid: 3744 + components: + - type: Transform + pos: 49.5,19.5 + parent: 2 + - uid: 5344 + components: + - type: Transform + pos: 46.5,19.5 parent: 2 - uid: 7689 components: @@ -40635,18 +56463,90 @@ entities: - type: Transform pos: 49.5,21.5 parent: 2 + - uid: 10518 + components: + - type: Transform + pos: 34.5,-25.5 + parent: 3564 + - uid: 10519 + components: + - type: Transform + pos: 34.5,-25.5 + parent: 3564 + - uid: 10520 + components: + - type: Transform + pos: 35.5,-25.5 + parent: 3564 + - uid: 10521 + components: + - type: Transform + pos: 35.5,-25.5 + parent: 3564 + - uid: 10522 + components: + - type: Transform + pos: 36.5,-25.5 + parent: 3564 + - uid: 10523 + components: + - type: Transform + pos: 36.5,-25.5 + parent: 3564 + - uid: 11136 + components: + - type: Transform + pos: 50.5,21.5 + parent: 2 + - uid: 11137 + components: + - type: Transform + pos: 51.5,21.5 + parent: 2 + - uid: 11138 + components: + - type: Transform + pos: 52.5,21.5 + parent: 2 + - uid: 11143 + components: + - type: Transform + pos: 50.5,19.5 + parent: 2 + - uid: 11144 + components: + - type: Transform + pos: 51.5,19.5 + parent: 2 + - uid: 11145 + components: + - type: Transform + pos: 52.5,19.5 + parent: 2 + - uid: 11214 + components: + - type: Transform + pos: 53.5,9.5 + parent: 2 +- proto: ShuttleConsoleCircuitboard + entities: + - uid: 5972 + components: + - type: Transform + pos: 14.5,28.5 + parent: 2 - proto: SignAi entities: + - uid: 1912 + components: + - type: Transform + pos: 40.5,49.5 + parent: 2 - uid: 2424 components: - type: Transform pos: 61.5,35.5 parent: 2 - - uid: 6120 - components: - - type: Transform - pos: 39.5,49.5 - parent: 2 - uid: 7236 components: - type: Transform @@ -40654,10 +56554,10 @@ entities: parent: 2 - proto: SignAiUpload entities: - - uid: 4557 + - uid: 4663 components: - type: Transform - pos: 29.5,49.5 + pos: 28.5,51.5 parent: 2 - proto: SignalButton entities: @@ -40681,43 +56581,6 @@ entities: 1254: - - Pressed - Toggle -- proto: SignalButtonDirectional - entities: - - uid: 7637 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,24.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 1581: - - - Pressed - - Toggle - 504: - - - Pressed - - Toggle - - uid: 7644 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,21.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 1909: - - - Pressed - - Toggle - - uid: 7646 - components: - - type: Transform - pos: 9.5,27.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 454: - - - Pressed - - Toggle - proto: SignalSwitchDirectional entities: - uid: 694 @@ -40755,13 +56618,389 @@ entities: - On - - Off - Off - 1897: + 8588: - - On - On - - Off - Off lastSignals: Status: True + - uid: 1473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,36.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8334: + - - On + - Toggle + - - Off + - Toggle + 8333: + - - On + - Toggle + - - Off + - Toggle + 8331: + - - On + - Toggle + - - Off + - Toggle + 8332: + - - On + - Toggle + - - Off + - Toggle + 8335: + - - On + - Toggle + - - Off + - Toggle + - uid: 2505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,10.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2049: + - - On + - Toggle + - - Off + - Toggle + 2171: + - - On + - Toggle + - - Off + - Toggle + 2437: + - - On + - Toggle + - - Off + - Toggle + - uid: 2602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-11.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2734: + - - On + - Toggle + - - Off + - Toggle + 2732: + - - On + - Toggle + - - Off + - Toggle + 2733: + - - On + - Toggle + - - Off + - Toggle + - uid: 2621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,22.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2197: + - - On + - Toggle + - - Off + - Toggle + 8594: + - - On + - Toggle + - - Off + - Toggle + 2623: + - - On + - Toggle + - - Off + - Toggle + 2201: + - - On + - Toggle + - - Off + - Toggle + - uid: 2633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7466: + - - On + - Toggle + - - Off + - Toggle + 7400: + - - On + - Toggle + - - Off + - Toggle + - uid: 2983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,19.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4244: + - - On + - Off + - - Off + - On + - uid: 3006 + components: + - type: Transform + pos: 34.5,36.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8336: + - - On + - Toggle + - - Off + - Toggle + 2536: + - - On + - Toggle + - - Off + - Toggle + 8337: + - - On + - Toggle + - - Off + - Toggle + - uid: 3033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,19.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5980: + - - On + - Off + - - Off + - On + - uid: 3710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,19.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4509: + - - On + - Off + - - Off + - On + - uid: 4510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,17.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6581: + - - On + - Off + - - Off + - On + - uid: 4652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,29.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2529: + - - On + - Toggle + - - Off + - Toggle + 8322: + - - On + - Toggle + - - Off + - Toggle + 8323: + - - On + - Toggle + - - Off + - Toggle + 7597: + - - On + - Toggle + - - Off + - Toggle + 8313: + - - On + - Toggle + - - Off + - Toggle + - uid: 4683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,26.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 465: + - - On + - Toggle + - - Off + - Toggle + - uid: 5852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-11.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4060: + - - On + - Toggle + - - Off + - Toggle + - uid: 5861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-11.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3324: + - - On + - Toggle + - - Off + - Toggle + - uid: 5943 + components: + - type: Transform + pos: 14.5,32.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6173: + - - On + - Off + - - Off + - On + 6551: + - - On + - Off + - - Off + - On + - uid: 6579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,17.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6613: + - - On + - Off + - - Off + - On + - uid: 6694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,19.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6043: + - - On + - Off + - - Off + - On + 6550: + - - On + - Off + - - Off + - On + 6552: + - - On + - Off + - - Off + - On + 5979: + - - On + - Off + - - Off + - On + - uid: 6731 + components: + - type: Transform + pos: 29.5,-3.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2730: + - - On + - Toggle + - - Off + - Toggle + 2740: + - - On + - Toggle + - - Off + - Toggle + 2739: + - - On + - Toggle + - - Off + - Toggle + 2738: + - - On + - Toggle + - - Off + - Toggle + 2731: + - - On + - Toggle + - - Off + - Toggle + 2729: + - - On + - Toggle + - - Off + - Toggle + 1859: + - - On + - Toggle + - - Off + - Toggle + 2736: + - - On + - Toggle + - - Off + - Toggle - uid: 7005 components: - type: Transform @@ -40791,12 +57030,46 @@ entities: - On - - Off - Off + 7479: + - - On + - On + - - Off + - Off lastSignals: Status: True + - uid: 7330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7395: + - - On + - Toggle + - - Off + - Toggle + 2263: + - - On + - Toggle + - - Off + - Toggle + 2388: + - - On + - Toggle + - - Off + - Toggle + 7350: + - - On + - Toggle + - - Off + - Toggle - uid: 7430 components: - type: Transform - pos: 24.5,12.5 + rot: 3.141592653589793 rad + pos: 22.5,12.5 parent: 2 - type: SignalSwitch state: True @@ -40839,12 +57112,12 @@ entities: state: True - type: DeviceLinkSource linkedPorts: - 7330: + 2070: - - On - On - - Off - Off - 3182: + 2193: - - On - On - - Off @@ -40912,8 +57185,8 @@ entities: - uid: 7462 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,40.5 + rot: -3.141592653589793 rad + pos: 54.5,38.5 parent: 2 - type: SignalSwitch state: True @@ -40924,6 +57197,11 @@ entities: - On - - Off - Off + 790: + - - On + - On + - - Off + - Off lastSignals: Status: True - uid: 7467 @@ -40936,12 +57214,7 @@ entities: state: True - type: DeviceLinkSource linkedPorts: - 152: - - - On - - On - - - Off - - Off - 2528: + 2196: - - On - On - - Off @@ -40951,6 +57224,36 @@ entities: - On - - Off - Off + 8602: + - - On + - On + - - Off + - Off + 8604: + - - On + - On + - - Off + - Off + 8603: + - - On + - On + - - Off + - Off + 8605: + - - On + - On + - - Off + - Off + 8607: + - - On + - On + - - Off + - Off + 8606: + - - On + - On + - - Off + - Off lastSignals: Status: True - uid: 7471 @@ -40979,18 +57282,28 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: 48.5,23.5 + pos: 48.5,24.5 parent: 2 - type: SignalSwitch state: True - type: DeviceLinkSource linkedPorts: - 2618: + 2339: - - On - On - - Off - Off - 2632: + 8596: + - - On + - On + - - Off + - Off + 2198: + - - On + - On + - - Off + - Off + 8597: - - On - On - - Off @@ -41000,8 +57313,8 @@ entities: - uid: 7475 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,27.5 + rot: 3.141592653589793 rad + pos: 43.5,26.5 parent: 2 - type: SignalSwitch state: True @@ -41014,28 +57327,18 @@ entities: - Off lastSignals: Status: True - - uid: 7479 + - uid: 7477 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,21.5 + pos: 27.5,32.5 parent: 2 - - type: SignalSwitch - state: True - type: DeviceLinkSource linkedPorts: - 2616: + 1601: - - On - - On + - Toggle - - Off - - Off - 2623: - - - On - - On - - - Off - - Off - lastSignals: - Status: True + - Toggle - uid: 7480 components: - type: Transform @@ -41046,16 +57349,46 @@ entities: state: True - type: DeviceLinkSource linkedPorts: - 2621: + 2616: - - On - On - - Off - Off - 2619: + 2200: - - On - On - - Off - Off + 2199: + - - On + - On + - - Off + - Off + 8595: + - - On + - On + - - Off + - Off + 2232: + - - On + - On + - - Off + - Off + 3182: + - - On + - On + - - Off + - Off + 2494: + - - On + - On + - - Off + - Off + 608: + - - Off + - Off + - - On + - On lastSignals: Status: True - uid: 7481 @@ -41068,17 +57401,17 @@ entities: state: True - type: DeviceLinkSource linkedPorts: - 2494: + 7493: - - On - On - - Off - Off - 2388: + 7839: - - On - On - - Off - Off - 2624: + 8239: - - On - On - - Off @@ -41095,7 +57428,12 @@ entities: state: True - type: DeviceLinkSource linkedPorts: - 2633: + 2361: + - - On + - On + - - Off + - Off + 2066: - - On - On - - Off @@ -41122,19 +57460,7 @@ entities: - On - - Off - Off - lastSignals: - Status: True - - uid: 7489 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-7.5 - parent: 2 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 2475: + 2728: - - On - On - - Off @@ -41160,6 +57486,11 @@ entities: - On - - Off - Off + 1464: + - - On + - On + - - Off + - Off lastSignals: Status: True - uid: 7491 @@ -41179,28 +57510,6 @@ entities: - Off lastSignals: Status: True - - uid: 7493 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,3.5 - parent: 2 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 1914: - - - On - - On - - - Off - - Off - 1913: - - - On - - On - - - Off - - Off - lastSignals: - Status: True - uid: 7499 components: - type: Transform @@ -41225,7 +57534,8 @@ entities: - uid: 7502 components: - type: Transform - pos: 1.5,8.5 + rot: 3.141592653589793 rad + pos: 1.5,4.5 parent: 2 - type: SignalSwitch state: True @@ -41253,22 +57563,22 @@ entities: state: True - type: DeviceLinkSource linkedPorts: - 2339: - - - On - - On - - - Off - - Off 2255: - - On - On - - Off - Off - 2263: + 7398: - - On - On - - Off - Off - 2361: + 7194: + - - On + - On + - - Off + - Off + 2194: - - On - On - - Off @@ -41278,7 +57588,7 @@ entities: - uid: 7507 components: - type: Transform - pos: 9.5,4.5 + pos: 8.5,4.5 parent: 2 - type: SignalSwitch state: True @@ -41294,7 +57604,7 @@ entities: - uid: 7508 components: - type: Transform - pos: 13.5,4.5 + pos: 12.5,4.5 parent: 2 - type: SignalSwitch state: True @@ -41310,7 +57620,8 @@ entities: - uid: 7509 components: - type: Transform - pos: 6.5,-4.5 + rot: 1.5707963267948966 rad + pos: 3.5,-7.5 parent: 2 - type: SignalSwitch state: True @@ -41416,51 +57727,7 @@ entities: - On - - Off - Off - lastSignals: - Status: True - - uid: 7563 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-13.5 - parent: 2 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 2235: - - - On - - On - - - Off - - Off - 2489: - - - On - - On - - - Off - - Off - 2487: - - - On - - On - - - Off - - Off - 2488: - - - On - - On - - - Off - - Off - lastSignals: - Status: True - - uid: 7565 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-1.5 - parent: 2 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 217: + 2195: - - On - On - - Off @@ -41470,8 +57737,7 @@ entities: - uid: 7569 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-9.5 + pos: 17.5,-4.5 parent: 2 - type: SignalSwitch state: True @@ -41509,13 +57775,18 @@ entities: - On - - Off - Off + 8587: + - - On + - On + - - Off + - Off lastSignals: Status: True - uid: 7575 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,9.5 + rot: 1.5707963267948966 rad + pos: 47.5,5.5 parent: 2 - type: SignalSwitch state: True @@ -41541,6 +57812,16 @@ entities: - On - - Off - Off + 11222: + - - On + - On + - - Off + - Off + 11221: + - - On + - On + - - Off + - Off lastSignals: Status: True - uid: 7576 @@ -41572,8 +57853,7 @@ entities: - uid: 7580 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,5.5 + pos: 59.5,10.5 parent: 2 - type: SignalSwitch state: True @@ -41584,6 +57864,16 @@ entities: - On - - Off - Off + 7727: + - - On + - On + - - Off + - Off + 1559: + - - On + - On + - - Off + - Off lastSignals: Status: True - uid: 7590 @@ -41606,71 +57896,12 @@ entities: - On - - Off - Off - lastSignals: - Status: True - - uid: 7591 - components: - - type: Transform - pos: 25.5,20.5 - parent: 2 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 2473: + 8647: - - On - On - - Off - Off - 2451: - - - On - - On - - - Off - - Off - 2387: - - - On - - On - - - Off - - Off - lastSignals: - Status: True - - uid: 7592 - components: - - type: Transform - pos: 14.5,29.5 - parent: 2 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 2470: - - - On - - On - - - Off - - Off - 2469: - - - On - - On - - - Off - - Off - 2472: - - - On - - On - - - Off - - Off - lastSignals: - Status: True - - uid: 7593 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,29.5 - parent: 2 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 2471: + 8648: - - On - On - - Off @@ -41697,84 +57928,35 @@ entities: - On - - Off - Off + 7728: + - - On + - On + - - Off + - Off lastSignals: Status: True - - uid: 7595 + - uid: 7596 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,21.5 + pos: 22.5,35.5 parent: 2 - - type: SignalSwitch - state: True - type: DeviceLinkSource linkedPorts: - 2620: + 8328: - - On - - On + - Toggle - - Off - - Off - lastSignals: - Status: True - - uid: 7598 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,24.5 - parent: 2 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 2531: + - Toggle + 8338: - - On - - On + - Toggle - - Off - - Off - 2556: - - - On - - On - - - Off - - Off - 2543: - - - On - - On - - - Off - - Off - 2536: - - - On - - On - - - Off - - Off - lastSignals: - Status: True - - uid: 7599 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,36.5 - parent: 2 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 7113: - - - On - - On - - - Off - - Off - 6708: - - - On - - On - - - Off - - Off - lastSignals: - Status: True + - Toggle - uid: 7600 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,33.5 + rot: -1.5707963267948966 rad + pos: 21.5,35.5 parent: 2 - type: SignalSwitch state: True @@ -41790,89 +57972,40 @@ entities: - On - - Off - Off + 8342: + - - On + - On + - - Off + - Off + 8341: + - - On + - On + - - Off + - Off + 8340: + - - On + - On + - - Off + - Off lastSignals: Status: True - uid: 7601 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,30.5 + pos: 17.5,43.5 parent: 2 - - type: SignalSwitch - state: True - type: DeviceLinkSource linkedPorts: - 2605: + 6708: - - On - - On + - Toggle - - Off - - Off - lastSignals: - Status: True - - uid: 7602 - components: - - type: Transform - pos: 32.5,39.5 - parent: 2 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 7028: + - Toggle + 7113: - - On - - On + - Toggle - - Off - - Off - 2602: - - - On - - On - - - Off - - Off - 2579: - - - On - - On - - - Off - - Off - lastSignals: - Status: True - - uid: 7604 - components: - - type: Transform - pos: 45.5,35.5 - parent: 2 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 2571: - - - On - - On - - - Off - - Off - lastSignals: - Status: True - - uid: 7605 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,35.5 - parent: 2 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 2588: - - - On - - On - - - Off - - Off - 2577: - - - On - - On - - - Off - - Off - lastSignals: - Status: True + - Toggle - uid: 7623 components: - type: Transform @@ -41966,13 +58099,66 @@ entities: - On - - Off - Off + 8643: + - - On + - On + - - Off + - Off + 8642: + - - On + - On + - - Off + - Off + 8640: + - - On + - On + - - Off + - Off + 8641: + - - On + - On + - - Off + - Off + 644: + - - On + - On + - - Off + - Off + 8644: + - - On + - On + - - Off + - Off lastSignals: Status: True + - uid: 7762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,22.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8348: + - - On + - Toggle + - - Off + - Toggle + 8346: + - - On + - Toggle + - - Off + - Toggle + 8347: + - - On + - Toggle + - - Off + - Toggle - uid: 7828 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-10.5 + pos: 4.5,-11.5 parent: 2 - type: SignalSwitch state: True @@ -41995,64 +58181,586 @@ entities: - Off lastSignals: Status: True - - uid: 8262 + - uid: 8324 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,1.5 + pos: 36.5,32.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 28: + 8326: + - - On + - Toggle - - Off - - DoorBolt - - uid: 8263 + - Toggle + 8327: + - - On + - Toggle + - - Off + - Toggle + 8264: + - - On + - Toggle + - - Off + - Toggle + - uid: 8339 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,1.5 + rot: 1.5707963267948966 rad + pos: 41.5,32.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 29: + 2571: + - - On + - Toggle - - Off - - DoorBolt -- proto: SignArmory - entities: - - uid: 1430 + - Toggle + 2577: + - - On + - Toggle + - - Off + - Toggle + 8330: + - - On + - Toggle + - - Off + - Toggle + 8329: + - - On + - Toggle + - - Off + - Toggle + - uid: 8343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,35.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7599: + - - On + - Toggle + - - Off + - Toggle + 8344: + - - On + - Toggle + - - Off + - Toggle + 2535: + - - On + - Toggle + - - Off + - Toggle + 2527: + - - On + - Toggle + - - Off + - Toggle + 8345: + - - On + - Toggle + - - Off + - Toggle + - uid: 8593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,1.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8591: + - - On + - Toggle + - - Off + - Toggle + 2065: + - - On + - Toggle + - - Off + - Toggle + 8592: + - - On + - Toggle + - - Off + - Toggle + 8590: + - - On + - Toggle + - - Off + - Toggle + - uid: 8598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,28.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8601: + - - On + - Toggle + - - Off + - Toggle + 8600: + - - On + - Toggle + - - Off + - Toggle + 8599: + - - On + - Toggle + - - Off + - Toggle + - uid: 10708 components: - type: Transform rot: -1.5707963267948966 rad - pos: 36.5,-5.5 - parent: 2 -- proto: SignAtmos - entities: - - uid: 1724 + pos: 23.5,-71.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10787: + - - On + - Toggle + - - Off + - Toggle + - uid: 10747 components: - type: Transform - pos: 31.5,32.5 - parent: 2 -- proto: SignBridge - entities: - - uid: 970 + rot: 1.5707963267948966 rad + pos: 19.5,-43.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10745: + - - On + - Toggle + - - Off + - Toggle + 10744: + - - On + - Toggle + - - Off + - Toggle + 10746: + - - On + - Toggle + - - Off + - Toggle + 10743: + - - On + - Toggle + - - Off + - Toggle + 10742: + - - On + - Toggle + - - Off + - Toggle + 10741: + - - On + - Toggle + - - Off + - Toggle + 10748: + - - On + - Toggle + - - Off + - Toggle + 10740: + - - On + - Toggle + - - Off + - Toggle + 10739: + - - On + - Toggle + - - Off + - Toggle + - uid: 10765 components: - type: Transform - pos: 18.5,58.5 - parent: 2 -- proto: SignCans - entities: - - uid: 1686 + rot: -1.5707963267948966 rad + pos: 37.5,-31.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10762: + - - On + - Toggle + - - Off + - Toggle + 10761: + - - On + - Toggle + - - Off + - Toggle + 10764: + - - On + - Toggle + - - Off + - Toggle + 10763: + - - On + - Toggle + - - Off + - Toggle + - uid: 10766 + components: + - type: Transform + pos: 17.5,-30.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10733: + - - On + - Toggle + - - Off + - Toggle + - uid: 10767 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,36.5 - parent: 2 -- proto: SignCargo - entities: - - uid: 1478 + pos: 26.5,-35.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10732: + - - On + - Toggle + - - Off + - Toggle + - uid: 10768 components: - type: Transform - pos: 16.5,23.5 + rot: 3.141592653589793 rad + pos: 26.5,-39.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10730: + - - On + - Toggle + - - Off + - Toggle + - uid: 10769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-43.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10729: + - - On + - Toggle + - - Off + - Toggle + - uid: 10770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-47.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10727: + - - On + - Toggle + - - Off + - Toggle + - uid: 10771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-51.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10726: + - - On + - Toggle + - - Off + - Toggle + - uid: 10772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-55.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10723: + - - On + - Toggle + - - Off + - Toggle + - uid: 10773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-55.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10724: + - - On + - Toggle + - - Off + - Toggle + - uid: 10774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-51.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10725: + - - On + - Toggle + - - Off + - Toggle + - uid: 10775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-47.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10728: + - - On + - Toggle + - - Off + - Toggle + - uid: 10776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-39.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10731: + - - On + - Toggle + - - Off + - Toggle + - uid: 10777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-38.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10736: + - - On + - Toggle + - - Off + - Toggle + - uid: 10778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-38.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10738: + - - On + - Toggle + - - Off + - Toggle + - uid: 10779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-44.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10735: + - - On + - Toggle + - - Off + - Toggle + - uid: 10780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-43.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10734: + - - On + - Toggle + - - Off + - Toggle + 10749: + - - On + - Toggle + - - Off + - Toggle + - uid: 10781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-62.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10719: + - - On + - Toggle + - - Off + - Toggle + 10718: + - - On + - Toggle + - - Off + - Toggle + - uid: 10782 + components: + - type: Transform + pos: 29.5,-62.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10713: + - - On + - Toggle + - - Off + - Toggle + 10711: + - - On + - Toggle + - - Off + - Toggle + 10712: + - - On + - Toggle + - - Off + - Toggle + 10714: + - - On + - Toggle + - - Off + - Toggle + - uid: 10783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-65.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10710: + - - On + - Toggle + - - Off + - Toggle + 10709: + - - On + - Toggle + - - Off + - Toggle + - uid: 10784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-61.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10722: + - - On + - Toggle + - - Off + - Toggle + - uid: 10785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-59.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10717: + - - On + - Toggle + - - Off + - Toggle + 10716: + - - On + - Toggle + - - Off + - Toggle + - uid: 10786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-68.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10715: + - - On + - Toggle + - - Off + - Toggle + - uid: 10788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-40.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10737: + - - On + - Toggle + - - Off + - Toggle +- proto: SignAtmos + entities: + - uid: 3301 + components: + - type: Transform + pos: 31.5,1.5 + parent: 2 +- proto: SignBridge + entities: + - uid: 11400 + components: + - type: Transform + pos: 17.5,59.5 + parent: 2 +- proto: SignCans + entities: + - uid: 2013 + components: + - type: Transform + pos: 36.5,-5.5 + parent: 2 + - uid: 2530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,36.5 + parent: 2 +- proto: SignCansScience + entities: + - uid: 4939 + components: + - type: Transform + pos: 49.5,10.5 parent: 2 - proto: SignChapel entities: @@ -42069,226 +58777,153 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,7.5 parent: 2 -- proto: SignCryo - entities: - - uid: 8239 - components: - - type: MetaData - desc: I poooooooop - - type: Transform - pos: 3.5,-3.5 - parent: 2 -- proto: SignDirectionalAtmos - entities: - - uid: 7412 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,17.5 - parent: 2 -- proto: SignDirectionalBar - entities: - - uid: 2448 - components: - - type: Transform - pos: 29.5,1.5 - parent: 2 - - uid: 3815 - components: - - type: Transform - pos: 31.5,1.5 - parent: 2 - - uid: 6174 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,8.5 - parent: 2 - - uid: 7417 - components: - - type: Transform - pos: 40.5,24.5 - parent: 2 - proto: SignDirectionalBridge entities: - - uid: 6177 + - uid: 4848 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,8.9 + pos: 35.5,8.75 parent: 2 - - uid: 8317 + - uid: 8278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,17.75 + parent: 2 + - uid: 8281 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,6.7 - parent: 2 -- proto: SignDirectionalChapel - entities: - - uid: 8316 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,6.5 + pos: 27.5,6.75 parent: 2 - proto: SignDirectionalDorms entities: - - uid: 8286 + - uid: 1075 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,6.3 + pos: 27.5,6.25 + parent: 2 + - uid: 11404 + components: + - type: Transform + pos: 36.5,17.25 parent: 2 - proto: SignDirectionalEng entities: - - uid: 6175 + - uid: 5174 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,8.7 + pos: 35.5,8.5 parent: 2 - - uid: 7411 + - uid: 8285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,6.5 + parent: 2 +- proto: SignDirectionalEvac + entities: + - uid: 970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,6.75 + parent: 2 + - uid: 4849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,17.75 + parent: 2 + - uid: 8280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,7.75 + parent: 2 +- proto: SignDirectionalMed + entities: + - uid: 11401 + components: + - type: Transform + pos: 36.5,17.5 + parent: 2 + - uid: 11405 components: - type: Transform rot: -1.5707963267948966 rad - pos: 36.5,17.7 + pos: 35.5,8.25 parent: 2 - - uid: 8318 +- proto: SignDirectionalSci + entities: + - uid: 381 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,6.5 parent: 2 -- proto: SignDirectionalEvac - entities: - - uid: 2054 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,17.5 - parent: 2 - - uid: 2057 - components: - - type: Transform - pos: 45.5,-3.5 - parent: 2 - - uid: 2948 - components: - - type: Transform - pos: 56.5,11.5 - parent: 2 - - uid: 6155 - components: - - type: Transform - pos: 59.5,42.5 - parent: 2 - - uid: 6163 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,17.5 - parent: 2 - - uid: 6164 - components: - - type: Transform - pos: 40.5,17.3 - parent: 2 - - uid: 8321 + - uid: 1801 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,7.5 parent: 2 -- proto: SignDirectionalMed - entities: - - uid: 6176 + - uid: 11403 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,8.3 - parent: 2 - - uid: 7416 - components: - - type: Transform - pos: 40.5,21.3 - parent: 2 - - uid: 8315 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,6.7 - parent: 2 -- proto: SignDirectionalSci - entities: - - uid: 7414 - components: - - type: Transform - pos: 40.5,21.7 - parent: 2 - - uid: 8319 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,6.3 - parent: 2 - - uid: 8320 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,7.7 + pos: 40.5,17.5 parent: 2 - proto: SignDirectionalSec entities: - - uid: 7415 + - uid: 1376 components: - type: Transform - pos: 40.5,21.5 + rot: 1.5707963267948966 rad + pos: 28.5,6.25 parent: 2 -- proto: SignDirectionalSupply - entities: - - uid: 7413 + - uid: 11402 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,17.3 + pos: 40.5,17.25 parent: 2 - proto: SignEngineering entities: - - uid: 1759 + - uid: 8279 components: - type: Transform - pos: 35.5,20.5 + rot: -1.5707963267948966 rad + pos: 36.5,22.5 parent: 2 - proto: SignEVA entities: - - uid: 1396 + - uid: 8468 components: - type: Transform - pos: 54.5,38.5 + pos: 54.5,37.5 parent: 2 -- proto: SignGravity +- proto: SignInterrogation entities: - - uid: 6598 + - uid: 10323 components: - type: Transform - pos: 40.5,35.5 + pos: 19.5,-31.5 + parent: 3564 +- proto: SignMaterials + entities: + - uid: 1773 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,30.5 parent: 2 -- proto: SignHydro1 - entities: - - uid: 2755 + - uid: 5763 components: - type: Transform - pos: 17.5,-4.5 - parent: 2 -- proto: SignJanitor - entities: - - uid: 297 - components: - - type: MetaData - desc: Because you're the janitor. And it's snot. - name: _j_a_n_i_t_o_r_s_i_g_n_ - - type: Transform - pos: 3.5,5.5 + rot: 1.5707963267948966 rad + pos: 38.5,32.5 parent: 2 - proto: SignMedical entities: @@ -42310,20 +58945,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,15.5 parent: 2 -- proto: SignPrison - entities: - - uid: 1075 - components: - - type: Transform - pos: 41.5,-0.5 - parent: 2 -- proto: SignRobo - entities: - - uid: 1559 - components: - - type: Transform - pos: 51.5,8.5 - parent: 2 - proto: SignScience entities: - uid: 4066 @@ -42362,6 +58983,21 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,51.5 parent: 2 +- proto: SignSecurity + entities: + - uid: 11406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,4.5 + parent: 2 +- proto: SignServer + entities: + - uid: 3129 + components: + - type: Transform + pos: 3.5,5.5 + parent: 2 - proto: SignShipDock entities: - uid: 2058 @@ -42376,111 +59012,78 @@ entities: rot: 1.5707963267948966 rad pos: 48.5,-17.5 parent: 2 -- proto: SignSpace +- proto: SignTelecomms entities: - - uid: 265 + - uid: 2480 components: - - type: MetaData - desc: A sign warning that the area ahead is nothing but cold, empty space. Well, empty space. Space isn't cold. I mean, space here is, but actual space isn't- you know what? Nevermind. Cold, empty space. Whatever. - name: _s_p_a_c_e_s_i_g_n_ - type: Transform pos: 3.5,7.5 parent: 2 -- proto: SignTelecomms - entities: - - uid: 1299 - components: - - type: Transform - pos: 36.5,30.5 - parent: 2 - proto: SignToolStorage entities: - - uid: 423 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,21.5 - parent: 2 - uid: 1436 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,18.5 parent: 2 - - uid: 2530 - components: - - type: Transform - pos: 32.5,36.5 - parent: 2 - - uid: 2782 + - uid: 4852 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-9.5 + pos: 42.5,22.5 parent: 2 -- proto: SignVault +- proto: Sink entities: - - uid: 2042 + - uid: 10557 components: - type: Transform - pos: 59.5,7.5 - parent: 2 -- proto: SinkWide - entities: - - uid: 1534 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-0.5 - parent: 2 - - uid: 2809 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-9.5 - parent: 2 -- proto: SmallLight - entities: - - uid: 1801 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,54.5 - parent: 2 + pos: 12.5,-20.5 + parent: 3564 - proto: SmartFridge entities: - - uid: 3162 + - uid: 2854 components: - type: Transform - pos: 30.5,12.5 + pos: 31.5,12.5 parent: 2 - proto: SMESAdvanced entities: - - uid: 1852 + - uid: 684 components: - type: Transform - pos: 34.5,27.5 + pos: 19.5,37.5 parent: 2 - - uid: 1853 + - uid: 687 components: - type: Transform - pos: 34.5,26.5 + pos: 19.5,38.5 parent: 2 - - uid: 5999 + - uid: 691 components: - type: Transform - pos: 34.5,28.5 + pos: 19.5,39.5 parent: 2 - - uid: 6000 + - uid: 1338 components: - type: Transform - pos: 34.5,29.5 + pos: 47.5,39.5 parent: 2 - - uid: 7649 + - uid: 1607 components: - type: Transform - pos: 34.5,30.5 + pos: 47.5,40.5 parent: 2 + - uid: 9435 + components: + - type: Transform + pos: 7.5,-44.5 + parent: 3564 + - uid: 9436 + components: + - type: Transform + pos: 7.5,-43.5 + parent: 3564 - proto: SMESBasic entities: - uid: 1337 @@ -42501,7 +59104,7 @@ entities: desc: A relaxing grenade that releases a large, long-lasting cloud of fun when used. name: party grenade - type: Transform - pos: 23.5,-1.5 + pos: 34.523518,48.651146 parent: 2 - type: SmokeOnTrigger solution: @@ -42522,7 +59125,7 @@ entities: desc: A relaxing grenade that releases a large, long-lasting cloud of fun when used. name: party grenade - type: Transform - pos: 23.5,-1.5 + pos: 34.36329,48.41327 parent: 2 - type: SmokeOnTrigger solution: @@ -42543,7 +59146,7 @@ entities: desc: A relaxing grenade that releases a large, long-lasting cloud of fun when used. name: party grenade - type: Transform - pos: 29.5,-11.5 + pos: 34.316414,48.522644 parent: 2 - type: SmokeOnTrigger solution: @@ -42564,7 +59167,7 @@ entities: desc: A relaxing grenade that releases a large, long-lasting cloud of fun when used. name: party grenade - type: Transform - pos: 29.5,-11.5 + pos: 34.523518,48.32302 parent: 2 - type: SmokeOnTrigger solution: @@ -42585,7 +59188,7 @@ entities: desc: A relaxing grenade that releases a large, long-lasting cloud of fun when used. name: party grenade - type: Transform - pos: 23.5,-1.5 + pos: 34.733295,48.78693 parent: 2 - type: SmokeOnTrigger solution: @@ -42600,20 +59203,14 @@ entities: smokePrototype: Foam missingComponents: - Contraband -- proto: SoapNT - entities: - - uid: 7661 - components: - - type: Transform - pos: -0.5,7.5 - parent: 2 - proto: SodaDispenser entities: - - uid: 2862 + - uid: 10569 components: - type: Transform - pos: 25.5,0.5 - parent: 2 + rot: 3.141592653589793 rad + pos: 13.5,-29.5 + parent: 3564 - proto: SolarPanel entities: - uid: 2646 @@ -42895,6 +59492,666 @@ entities: - type: Transform pos: 57.5,68.5 parent: 2 + - uid: 6855 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 3564 + - uid: 6956 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 3564 + - uid: 6957 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 3564 + - uid: 6958 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 3564 + - uid: 6959 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 3564 + - uid: 6960 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 3564 + - uid: 6961 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 3564 + - uid: 6962 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 3564 + - uid: 6963 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 3564 + - uid: 6964 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 3564 + - uid: 6965 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 3564 + - uid: 6966 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 3564 + - uid: 6967 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 3564 + - uid: 6968 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 3564 + - uid: 6969 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 3564 + - uid: 6970 + components: + - type: Transform + pos: 4.5,-20.5 + parent: 3564 + - uid: 6971 + components: + - type: Transform + pos: 4.5,-19.5 + parent: 3564 + - uid: 6972 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 3564 + - uid: 6973 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 3564 + - uid: 6974 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 3564 + - uid: 6976 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 3564 + - uid: 6977 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 3564 + - uid: 6978 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 3564 + - uid: 6979 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 3564 + - uid: 6980 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 3564 + - uid: 6981 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 3564 + - uid: 6982 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 3564 + - uid: 6983 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 3564 + - uid: 6984 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 3564 + - uid: 6985 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 3564 + - uid: 6986 + components: + - type: Transform + pos: 4.5,-22.5 + parent: 3564 + - uid: 6988 + components: + - type: Transform + pos: 4.5,-23.5 + parent: 3564 + - uid: 6989 + components: + - type: Transform + pos: 4.5,-24.5 + parent: 3564 + - uid: 6990 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 3564 + - uid: 6991 + components: + - type: Transform + pos: 2.5,-24.5 + parent: 3564 + - uid: 6992 + components: + - type: Transform + pos: 2.5,-22.5 + parent: 3564 + - uid: 6993 + components: + - type: Transform + pos: 2.5,-26.5 + parent: 3564 + - uid: 6994 + components: + - type: Transform + pos: 2.5,-27.5 + parent: 3564 + - uid: 6996 + components: + - type: Transform + pos: 2.5,-28.5 + parent: 3564 + - uid: 6998 + components: + - type: Transform + pos: 4.5,-26.5 + parent: 3564 + - uid: 7013 + components: + - type: Transform + pos: 4.5,-27.5 + parent: 3564 + - uid: 7015 + components: + - type: Transform + pos: 4.5,-28.5 + parent: 3564 + - uid: 7016 + components: + - type: Transform + pos: 4.5,-30.5 + parent: 3564 + - uid: 7017 + components: + - type: Transform + pos: 4.5,-31.5 + parent: 3564 + - uid: 7020 + components: + - type: Transform + pos: 4.5,-32.5 + parent: 3564 + - uid: 7021 + components: + - type: Transform + pos: 4.5,-34.5 + parent: 3564 + - uid: 7022 + components: + - type: Transform + pos: 4.5,-35.5 + parent: 3564 + - uid: 7024 + components: + - type: Transform + pos: 4.5,-36.5 + parent: 3564 + - uid: 7026 + components: + - type: Transform + pos: 4.5,-40.5 + parent: 3564 + - uid: 7027 + components: + - type: Transform + pos: 4.5,-39.5 + parent: 3564 + - uid: 7028 + components: + - type: Transform + pos: 4.5,-38.5 + parent: 3564 + - uid: 7029 + components: + - type: Transform + pos: 2.5,-40.5 + parent: 3564 + - uid: 7030 + components: + - type: Transform + pos: 2.5,-39.5 + parent: 3564 + - uid: 7031 + components: + - type: Transform + pos: 2.5,-38.5 + parent: 3564 + - uid: 7032 + components: + - type: Transform + pos: 2.5,-36.5 + parent: 3564 + - uid: 7033 + components: + - type: Transform + pos: 2.5,-35.5 + parent: 3564 + - uid: 7034 + components: + - type: Transform + pos: 2.5,-34.5 + parent: 3564 + - uid: 7035 + components: + - type: Transform + pos: 2.5,-32.5 + parent: 3564 + - uid: 7036 + components: + - type: Transform + pos: 2.5,-31.5 + parent: 3564 + - uid: 7037 + components: + - type: Transform + pos: 2.5,-30.5 + parent: 3564 + - uid: 7038 + components: + - type: Transform + pos: 2.5,-42.5 + parent: 3564 + - uid: 7039 + components: + - type: Transform + pos: 2.5,-43.5 + parent: 3564 + - uid: 7040 + components: + - type: Transform + pos: 2.5,-44.5 + parent: 3564 + - uid: 7041 + components: + - type: Transform + pos: 2.5,-47.5 + parent: 3564 + - uid: 7042 + components: + - type: Transform + pos: 2.5,-46.5 + parent: 3564 + - uid: 7043 + components: + - type: Transform + pos: 2.5,-48.5 + parent: 3564 + - uid: 7044 + components: + - type: Transform + pos: 2.5,-51.5 + parent: 3564 + - uid: 7045 + components: + - type: Transform + pos: 2.5,-52.5 + parent: 3564 + - uid: 7046 + components: + - type: Transform + pos: 2.5,-53.5 + parent: 3564 + - uid: 7047 + components: + - type: Transform + pos: 2.5,-55.5 + parent: 3564 + - uid: 7048 + components: + - type: Transform + pos: 2.5,-56.5 + parent: 3564 + - uid: 7049 + components: + - type: Transform + pos: 2.5,-57.5 + parent: 3564 + - uid: 7050 + components: + - type: Transform + pos: 4.5,-57.5 + parent: 3564 + - uid: 7051 + components: + - type: Transform + pos: 4.5,-56.5 + parent: 3564 + - uid: 7052 + components: + - type: Transform + pos: 4.5,-55.5 + parent: 3564 + - uid: 7053 + components: + - type: Transform + pos: 4.5,-53.5 + parent: 3564 + - uid: 7054 + components: + - type: Transform + pos: 4.5,-52.5 + parent: 3564 + - uid: 7055 + components: + - type: Transform + pos: 4.5,-51.5 + parent: 3564 + - uid: 7056 + components: + - type: Transform + pos: 4.5,-48.5 + parent: 3564 + - uid: 7057 + components: + - type: Transform + pos: 4.5,-47.5 + parent: 3564 + - uid: 7058 + components: + - type: Transform + pos: 4.5,-46.5 + parent: 3564 + - uid: 7059 + components: + - type: Transform + pos: 4.5,-44.5 + parent: 3564 + - uid: 7060 + components: + - type: Transform + pos: 4.5,-43.5 + parent: 3564 + - uid: 7061 + components: + - type: Transform + pos: 4.5,-42.5 + parent: 3564 + - uid: 7062 + components: + - type: Transform + pos: 2.5,-59.5 + parent: 3564 + - uid: 7063 + components: + - type: Transform + pos: 2.5,-60.5 + parent: 3564 + - uid: 7064 + components: + - type: Transform + pos: 2.5,-61.5 + parent: 3564 + - uid: 7065 + components: + - type: Transform + pos: 2.5,-63.5 + parent: 3564 + - uid: 7066 + components: + - type: Transform + pos: 2.5,-64.5 + parent: 3564 + - uid: 7067 + components: + - type: Transform + pos: 2.5,-65.5 + parent: 3564 + - uid: 7068 + components: + - type: Transform + pos: 2.5,-68.5 + parent: 3564 + - uid: 7069 + components: + - type: Transform + pos: 2.5,-69.5 + parent: 3564 + - uid: 7070 + components: + - type: Transform + pos: 2.5,-70.5 + parent: 3564 + - uid: 7071 + components: + - type: Transform + pos: 2.5,-72.5 + parent: 3564 + - uid: 7072 + components: + - type: Transform + pos: 2.5,-73.5 + parent: 3564 + - uid: 7073 + components: + - type: Transform + pos: 2.5,-74.5 + parent: 3564 + - uid: 7074 + components: + - type: Transform + pos: 2.5,-76.5 + parent: 3564 + - uid: 7075 + components: + - type: Transform + pos: 2.5,-77.5 + parent: 3564 + - uid: 7076 + components: + - type: Transform + pos: 2.5,-78.5 + parent: 3564 + - uid: 7077 + components: + - type: Transform + pos: 4.5,-78.5 + parent: 3564 + - uid: 7078 + components: + - type: Transform + pos: 4.5,-77.5 + parent: 3564 + - uid: 7079 + components: + - type: Transform + pos: 4.5,-76.5 + parent: 3564 + - uid: 7080 + components: + - type: Transform + pos: 4.5,-74.5 + parent: 3564 + - uid: 7081 + components: + - type: Transform + pos: 4.5,-73.5 + parent: 3564 + - uid: 7082 + components: + - type: Transform + pos: 4.5,-72.5 + parent: 3564 + - uid: 7083 + components: + - type: Transform + pos: 4.5,-70.5 + parent: 3564 + - uid: 7084 + components: + - type: Transform + pos: 4.5,-69.5 + parent: 3564 + - uid: 7085 + components: + - type: Transform + pos: 4.5,-68.5 + parent: 3564 + - uid: 7086 + components: + - type: Transform + pos: 4.5,-65.5 + parent: 3564 + - uid: 7087 + components: + - type: Transform + pos: 4.5,-64.5 + parent: 3564 + - uid: 7088 + components: + - type: Transform + pos: 4.5,-63.5 + parent: 3564 + - uid: 7089 + components: + - type: Transform + pos: 4.5,-61.5 + parent: 3564 + - uid: 7090 + components: + - type: Transform + pos: 4.5,-60.5 + parent: 3564 + - uid: 7091 + components: + - type: Transform + pos: 4.5,-59.5 + parent: 3564 + - uid: 7092 + components: + - type: Transform + pos: 2.5,-80.5 + parent: 3564 + - uid: 7093 + components: + - type: Transform + pos: 2.5,-81.5 + parent: 3564 + - uid: 7094 + components: + - type: Transform + pos: 2.5,-82.5 + parent: 3564 + - uid: 7095 + components: + - type: Transform + pos: 2.5,-84.5 + parent: 3564 + - uid: 7096 + components: + - type: Transform + pos: 2.5,-85.5 + parent: 3564 + - uid: 7097 + components: + - type: Transform + pos: 2.5,-86.5 + parent: 3564 + - uid: 7098 + components: + - type: Transform + pos: 2.5,-88.5 + parent: 3564 + - uid: 7099 + components: + - type: Transform + pos: 2.5,-89.5 + parent: 3564 + - uid: 7100 + components: + - type: Transform + pos: 2.5,-90.5 + parent: 3564 + - uid: 7101 + components: + - type: Transform + pos: 4.5,-90.5 + parent: 3564 + - uid: 7102 + components: + - type: Transform + pos: 4.5,-89.5 + parent: 3564 + - uid: 7103 + components: + - type: Transform + pos: 4.5,-88.5 + parent: 3564 + - uid: 7104 + components: + - type: Transform + pos: 4.5,-86.5 + parent: 3564 + - uid: 7120 + components: + - type: Transform + pos: 4.5,-85.5 + parent: 3564 + - uid: 7122 + components: + - type: Transform + pos: 4.5,-84.5 + parent: 3564 + - uid: 7123 + components: + - type: Transform + pos: 4.5,-82.5 + parent: 3564 + - uid: 7128 + components: + - type: Transform + pos: 4.5,-81.5 + parent: 3564 + - uid: 7149 + components: + - type: Transform + pos: 4.5,-80.5 + parent: 3564 - proto: SolarTracker entities: - uid: 2697 @@ -42907,6 +60164,11 @@ entities: - type: Transform pos: 58.5,69.5 parent: 2 + - uid: 7152 + components: + - type: Transform + pos: 1.5,-41.5 + parent: 3564 - proto: SolidSecretDoor entities: - uid: 240 @@ -42915,42 +60177,14 @@ entities: rot: 3.141592653589793 rad pos: 61.5,19.5 parent: 2 -- proto: SpaceCash10 +- proto: SpaceVillainArcadeFilled entities: - - uid: 7117 + - uid: 10571 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.563408,13.315755 - parent: 2 -- proto: SpaceCash10000 - entities: - - uid: 1925 - components: - - type: Transform - pos: 62.610744,10.56906 - parent: 2 -- proto: SpawnMobCat - entities: - - uid: 644 - components: - - type: Transform - pos: 23.5,14.5 - parent: 2 -- proto: SpawnMobCorgi - entities: - - uid: 562 - components: - - type: Transform - pos: 43.5,29.5 - parent: 2 -- proto: SpawnMobFoxRenault - entities: - - uid: 1288 - components: - - type: Transform - pos: 59.5,24.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 19.5,-21.5 + parent: 3564 - proto: SpawnMobMonkey entities: - uid: 627 @@ -42968,6 +60202,11 @@ entities: - type: Transform pos: 24.5,9.5 parent: 2 + - uid: 6999 + components: + - type: Transform + pos: 29.5,-52.5 + parent: 3564 - proto: SpawnMobMonkeyPunpun entities: - uid: 711 @@ -42976,62 +60215,17 @@ entities: rot: 3.141592653589793 rad pos: 27.5,10.5 parent: 2 -- proto: SpawnMobMouse - entities: - - uid: 1927 - components: - - type: Transform - pos: 52.5,19.5 - parent: 2 - - uid: 7023 - components: - - type: Transform - pos: 14.5,18.5 - parent: 2 -- proto: SpawnMobSmile - entities: - - uid: 141 - components: - - type: Transform - pos: 52.5,0.5 - parent: 2 - proto: SpawnPointAtmos entities: - - uid: 3238 + - uid: 1719 components: - type: Transform - pos: 30.5,34.5 + pos: 26.5,-8.5 parent: 2 - - uid: 4744 + - uid: 1722 components: - type: Transform - pos: 29.5,34.5 - parent: 2 -- proto: SpawnPointBartender - entities: - - uid: 7266 - components: - - type: Transform - pos: 27.5,-0.5 - parent: 2 -- proto: SpawnPointBorg - entities: - - uid: 1563 - components: - - type: Transform - pos: 53.5,8.5 - parent: 2 - - uid: 2559 - components: - - type: Transform - pos: 52.5,8.5 - parent: 2 -- proto: SpawnPointBotanist - entities: - - uid: 847 - components: - - type: Transform - pos: 15.5,-7.5 + pos: 25.5,-8.5 parent: 2 - proto: SpawnPointCaptain entities: @@ -43040,18 +60234,6 @@ entities: - type: Transform pos: 62.5,31.5 parent: 2 -- proto: SpawnPointCargoTechnician - entities: - - uid: 491 - components: - - type: Transform - pos: 18.5,24.5 - parent: 2 - - uid: 535 - components: - - type: Transform - pos: 19.5,24.5 - parent: 2 - proto: SpawnPointChaplain entities: - uid: 7000 @@ -43059,19 +60241,12 @@ entities: - type: Transform pos: -2.5,18.5 parent: 2 -- proto: SpawnPointChef - entities: - - uid: 7265 - components: - - type: Transform - pos: 29.5,-12.5 - parent: 2 - proto: SpawnPointChemist entities: - - uid: 7383 + - uid: 10331 components: - type: Transform - pos: 30.5,10.5 + pos: 26.5,11.5 parent: 2 - proto: SpawnPointChiefEngineer entities: @@ -43113,13 +60288,6 @@ entities: - type: Transform pos: 34.5,-0.5 parent: 2 -- proto: SpawnPointJanitor - entities: - - uid: 326 - components: - - type: Transform - pos: -1.5,6.5 - parent: 2 - proto: SpawnPointLatejoin entities: - uid: 2512 @@ -43154,24 +60322,17 @@ entities: - type: Transform pos: 57.5,18.5 parent: 2 -- proto: SpawnPointLibrarian - entities: - - uid: 5172 - components: - - type: Transform - pos: 6.5,-2.5 - parent: 2 - proto: SpawnPointMedicalDoctor entities: - - uid: 567 - components: - - type: Transform - pos: 10.5,11.5 - parent: 2 - uid: 7105 components: - type: Transform - pos: 10.5,12.5 + pos: 15.5,11.5 + parent: 2 + - uid: 7383 + components: + - type: Transform + pos: 16.5,13.5 parent: 2 - proto: SpawnPointMedicalIntern entities: @@ -43194,11 +60355,11 @@ entities: parent: 2 - proto: SpawnPointParamedic entities: - - uid: 1939 + - uid: 11117 components: - type: Transform - pos: 14.5,14.5 - parent: 2 + pos: 25.5,-20.5 + parent: 3564 - proto: SpawnPointPassenger entities: - uid: 33 @@ -43226,13 +60387,6 @@ entities: - type: Transform pos: 10.5,-1.5 parent: 2 -- proto: SpawnPointQuartermaster - entities: - - uid: 6710 - components: - - type: Transform - pos: 62.5,32.5 - parent: 2 - proto: SpawnPointResearchAssistant entities: - uid: 4922 @@ -43247,27 +60401,22 @@ entities: parent: 2 - proto: SpawnPointResearchDirector entities: - - uid: 6045 + - uid: 1547 components: - type: Transform - pos: 54.5,11.5 + pos: 62.5,32.5 parent: 2 - proto: SpawnPointScientist entities: - - uid: 1538 + - uid: 6045 components: - type: Transform - pos: 51.5,4.5 + pos: 52.5,6.5 parent: 2 - - uid: 1543 + - uid: 6174 components: - type: Transform - pos: 52.5,4.5 - parent: 2 - - uid: 2505 - components: - - type: Transform - pos: 53.5,4.5 + pos: 51.5,6.5 parent: 2 - proto: SpawnPointSecurityCadet entities: @@ -43295,15 +60444,15 @@ entities: parent: 2 - proto: SpawnPointStationEngineer entities: - - uid: 1565 + - uid: 1724 components: - type: Transform - pos: 38.5,40.5 + pos: 29.5,30.5 parent: 2 - - uid: 2533 + - uid: 7659 components: - type: Transform - pos: 38.5,41.5 + pos: 29.5,29.5 parent: 2 - proto: SpawnPointTechnicalAssistant entities: @@ -43319,23 +60468,11 @@ entities: parent: 2 - proto: SpawnPointWarden entities: - - uid: 7264 + - uid: 9791 components: - type: Transform - pos: 39.5,-5.5 - parent: 2 -- proto: SprayBottleSpaceCleaner - entities: - - uid: 7662 - components: - - type: Transform - pos: -1.5,7.5 - parent: 2 - - uid: 7663 - components: - - type: Transform - pos: -1.5,7.5 - parent: 2 + pos: 28.5,-66.5 + parent: 3564 - proto: StasisBed entities: - uid: 470 @@ -43353,13 +60490,16 @@ entities: - type: Transform pos: 7.5,11.5 parent: 2 -- proto: StationAiUploadCircuitboard - entities: - - uid: 8214 + - uid: 9728 components: - type: Transform - pos: 13.5,-10.5 - parent: 2 + pos: 21.5,-19.5 + parent: 3564 + - uid: 9729 + components: + - type: Transform + pos: 21.5,-21.5 + parent: 3564 - proto: StationAiUploadComputer entities: - uid: 4556 @@ -43374,6 +60514,11 @@ entities: - type: Transform pos: 3.5,33.5 parent: 2 + - uid: 9659 + components: + - type: Transform + pos: 15.5,-66.5 + parent: 3564 - proto: StationEfficiencyCircuitBoard entities: - uid: 1377 @@ -43383,145 +60528,77 @@ entities: parent: 2 - proto: StationMap entities: - - uid: 5736 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-2.5 - parent: 2 - - uid: 6166 - components: - - type: Transform - pos: 10.5,8.5 - parent: 2 - - uid: 6169 - components: - - type: Transform - pos: 62.5,3.5 - parent: 2 - - uid: 6172 - components: - - type: Transform - pos: 38.5,24.5 - parent: 2 - - uid: 6173 - components: - - type: Transform - pos: 24.5,20.5 - parent: 2 - - uid: 6314 - components: - - type: Transform - pos: 50.5,18.5 - parent: 2 - - uid: 6571 - components: - - type: Transform - pos: 55.5,38.5 - parent: 2 - - uid: 8313 + - uid: 11522 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,-12.5 + pos: 14.5,2.5 parent: 2 - - uid: 8322 + - uid: 11523 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,52.5 + pos: 50.5,27.5 parent: 2 - - uid: 8323 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,42.5 - parent: 2 - - uid: 8324 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,28.5 - parent: 2 - - uid: 8325 - components: - - type: Transform - pos: 32.5,20.5 - parent: 2 - - uid: 8326 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,20.5 - parent: 2 - - uid: 8327 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,6.5 - parent: 2 - - uid: 8328 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,1.5 - parent: 2 - - uid: 8329 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-9.5 - parent: 2 - - uid: 8330 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,3.5 - parent: 2 - - uid: 8331 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,5.5 - parent: 2 -- proto: StationRecordsComputerCircuitboard +- proto: Stool entities: - - uid: 8216 + - uid: 1925 components: - type: Transform - pos: 13.5,-11.5 + anchored: True + rot: 3.141592653589793 rad + pos: 44.5,28.5 parent: 2 -- proto: StoolBar + - type: Physics + bodyType: Static + - uid: 7476 + components: + - type: Transform + anchored: True + rot: 3.141592653589793 rad + pos: 45.5,28.5 + parent: 2 + - type: Physics + bodyType: Static + - uid: 7707 + components: + - type: Transform + anchored: True + rot: 3.141592653589793 rad + pos: 46.5,28.5 + parent: 2 + - type: Physics + bodyType: Static +- proto: StorageCanister entities: - - uid: 2860 + - uid: 1709 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-3.5 + pos: 44.5,-4.5 parent: 2 - - uid: 2861 + - uid: 4064 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-3.5 + pos: 37.5,-4.5 parent: 2 + - uid: 6765 + components: + - type: Transform + pos: 44.5,-7.5 + parent: 2 +- proto: Stunbaton + entities: + - uid: 10416 + components: + - type: Transform + pos: 34.5,-69.5 + parent: 3564 - proto: SubstationBasic entities: - - uid: 846 - components: - - type: Transform - pos: 35.5,35.5 - parent: 2 - uid: 1472 components: - type: Transform pos: 13.5,18.5 parent: 2 - - uid: 2780 - components: - - type: Transform - pos: 23.5,-12.5 - parent: 2 - uid: 2789 components: - type: Transform @@ -43537,94 +60614,44 @@ entities: - type: Transform pos: 54.5,19.5 parent: 2 -- proto: SubstationMachineCircuitboard - entities: - - uid: 2189 + - uid: 6665 components: - type: Transform - pos: 13.5,-12.5 + pos: 22.5,-12.5 parent: 2 - - uid: 8217 + - uid: 8415 components: - type: Transform - pos: 13.5,-12.5 + pos: 47.5,36.5 parent: 2 + - uid: 9460 + components: + - type: Transform + pos: 10.5,-45.5 + parent: 3564 - proto: SuitStorageAtmos entities: - - uid: 1721 + - uid: 4002 components: - type: Transform - pos: 31.5,33.5 + pos: 44.5,-9.5 parent: 2 - - uid: 1789 + - uid: 4004 components: - type: Transform - pos: 30.5,33.5 - parent: 2 -- proto: SuitStorageCE - entities: - - uid: 6660 - components: - - type: Transform - pos: 47.5,31.5 + pos: 43.5,-9.5 parent: 2 - proto: SuitStorageEngi entities: - - uid: 913 + - uid: 1636 components: - type: Transform - pos: 33.5,41.5 + pos: 25.5,42.5 parent: 2 - - uid: 6599 + - uid: 1708 components: - type: Transform - pos: 34.5,41.5 - parent: 2 - - uid: 6600 - components: - - type: Transform - pos: 35.5,41.5 - parent: 2 -- proto: SuitStorageEVA - entities: - - uid: 1464 - components: - - type: Transform - pos: 51.5,41.5 - parent: 2 - - uid: 1931 - components: - - type: Transform - pos: 54.5,41.5 - parent: 2 - - uid: 2065 - components: - - type: Transform - pos: 52.5,41.5 - parent: 2 - - uid: 2066 - components: - - type: Transform - pos: 53.5,41.5 - parent: 2 -- proto: SuitStorageHOS - entities: - - uid: 1012 - components: - - type: Transform - pos: 39.5,-7.5 - parent: 2 -- proto: SuitStorageSec - entities: - - uid: 986 - components: - - type: Transform - pos: 38.5,-7.5 - parent: 2 - - uid: 1328 - components: - - type: Transform - pos: 37.5,-7.5 + pos: 24.5,42.5 parent: 2 - proto: SurveillanceCameraCommand entities: @@ -43635,7 +60662,7 @@ entities: pos: 59.5,34.5 parent: 2 - type: SurveillanceCamera - id: Bridge + id: Control Room - uid: 7458 components: - type: Transform @@ -43643,7 +60670,7 @@ entities: pos: 56.5,24.5 parent: 2 - type: SurveillanceCamera - id: Captain's Quarters + id: Secure Storage - uid: 7472 components: - type: Transform @@ -43652,14 +60679,6 @@ entities: parent: 2 - type: SurveillanceCamera id: HoP Office - - uid: 7579 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,6.5 - parent: 2 - - type: SurveillanceCamera - id: Vault - uid: 7620 components: - type: Transform @@ -43675,33 +60694,121 @@ entities: pos: 34.5,51.5 parent: 2 - type: SurveillanceCamera - id: AI Upload + id: AI Upload Station - proto: SurveillanceCameraEngineering entities: - - uid: 6583 + - uid: 1080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,6.5 + parent: 2 + - type: SurveillanceCamera + id: Telecomms + - uid: 2129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,33.5 + parent: 2 + - type: SurveillanceCamera + id: Anchor + - uid: 2387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,27.5 + parent: 2 + - type: SurveillanceCamera + id: Main Engine + - uid: 2609 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-10.5 + pos: 44.5,-4.5 parent: 2 - type: SurveillanceCamera - id: Tech Vault + id: Atmo. Gas Storage + - uid: 3231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-4.5 + parent: 2 + - type: SurveillanceCamera + id: ' Atmospherics Entrance' + - uid: 4219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,26.5 + parent: 2 + - type: SurveillanceCamera + id: Engine Control + - uid: 4666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,35.5 + parent: 2 + - type: SurveillanceCamera + id: Engine Hallway (E) + - uid: 4700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,21.5 + parent: 2 + - type: SurveillanceCamera + id: Engine Hall (South) + - uid: 4946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-7.5 + parent: 2 + - type: SurveillanceCamera + id: Atmospheric Control Room + - uid: 5207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,35.5 + parent: 2 + - type: SurveillanceCamera + id: Engine Hall (Center) + - uid: 5208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,42.5 + parent: 2 + - type: SurveillanceCamera + id: Engine Hallway (W) + - uid: 5209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,37.5 + parent: 2 + - type: SurveillanceCamera + id: Generator Room (West) + - uid: 5884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,35.5 + parent: 2 + - type: SurveillanceCamera + id: AME - uid: 7470 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,61.5 + rot: -1.5707963267948966 rad + pos: 56.5,62.5 parent: 2 - type: SurveillanceCamera - id: Solars North - - uid: 7608 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,28.5 - parent: 2 - - type: SurveillanceCamera - id: Gas Storage + id: Northern Airlock - uid: 7609 components: - type: Transform @@ -43709,40 +60816,64 @@ entities: parent: 2 - type: SurveillanceCamera id: TEG - - uid: 7610 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,39.5 - parent: 2 - - type: SurveillanceCamera - id: Engineering Tools - - uid: 7611 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,32.5 - parent: 2 - - type: SurveillanceCamera - id: Main Engineering - - uid: 7612 + - uid: 8564 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,41.5 + pos: 37.5,-10.5 parent: 2 - type: SurveillanceCamera - id: Gravity Generator -- proto: SurveillanceCameraGeneral - entities: - - uid: 4740 + id: Atmospherics Locker Storage + - uid: 11397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,36.5 + parent: 2 + - type: SurveillanceCamera + id: Anchor + - uid: 11398 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,13.5 + pos: 39.5,38.5 parent: 2 - type: SurveillanceCamera - id: Chapel + id: Plasma Storage + - uid: 11399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,39.5 + parent: 2 + - type: SurveillanceCamera + id: Generator Room (East) +- proto: SurveillanceCameraGeneral + entities: + - uid: 2469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,20.5 + parent: 2 + - type: SurveillanceCamera + id: Supply Room + - uid: 4931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,23.5 + parent: 2 + - type: SurveillanceCamera + id: Escape Pod Bay + - uid: 4938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,30.5 + parent: 2 + - type: SurveillanceCamera + id: Repair Bay - uid: 7282 components: - type: MetaData @@ -43752,7 +60883,7 @@ entities: pos: 66.5,-7.5 parent: 2 - type: SurveillanceCamera - id: Evac Dock + id: External - shuttle dock - uid: 7283 components: - type: Transform @@ -43760,7 +60891,7 @@ entities: pos: 56.5,-0.5 parent: 2 - type: SurveillanceCamera - id: Evac North + id: Evac Shuttle Bay - uid: 7284 components: - type: Transform @@ -43768,7 +60899,7 @@ entities: pos: 49.5,-14.5 parent: 2 - type: SurveillanceCamera - id: Evac South + id: Observation - uid: 7464 components: - type: Transform @@ -43776,7 +60907,7 @@ entities: pos: 54.5,41.5 parent: 2 - type: SurveillanceCamera - id: EVA + id: EVA Storage - uid: 7465 components: - type: Transform @@ -43784,7 +60915,7 @@ entities: pos: 49.5,37.5 parent: 2 - type: SurveillanceCamera - id: Bridge Hallway + id: Control Access - uid: 7468 components: - type: Transform @@ -43792,7 +60923,7 @@ entities: pos: 58.5,44.5 parent: 2 - type: SurveillanceCamera - id: Arrivals South + id: Crew Shuttle Disembarkment Hall North - uid: 7469 components: - type: Transform @@ -43800,15 +60931,15 @@ entities: pos: 58.5,53.5 parent: 2 - type: SurveillanceCamera - id: Arrivals North + id: Crew Shuttle Disembarkment Hall North - uid: 7478 components: - type: Transform rot: -1.5707963267948966 rad - pos: 36.5,16.5 + pos: 36.5,15.5 parent: 2 - type: SurveillanceCamera - id: Middle Hallways + id: Central Hallway - uid: 7483 components: - type: Transform @@ -43816,7 +60947,7 @@ entities: pos: 46.5,0.5 parent: 2 - type: SurveillanceCamera - id: Evac Hallway West + id: Transit tunnel (East) - uid: 7505 components: - type: Transform @@ -43824,7 +60955,7 @@ entities: pos: 4.5,-0.5 parent: 2 - type: SurveillanceCamera - id: Dorms + id: Crew Sleeping Area - uid: 7506 components: - type: Transform @@ -43832,7 +60963,7 @@ entities: pos: 0.5,-1.5 parent: 2 - type: SurveillanceCamera - id: Cryosleep + id: Sleeping Area Annex - uid: 7517 components: - type: Transform @@ -43840,7 +60971,7 @@ entities: pos: 15.5,0.5 parent: 2 - type: SurveillanceCamera - id: Meeting Room + id: Lounge/Meeting Area - uid: 7542 components: - type: Transform @@ -43848,7 +60979,7 @@ entities: pos: 9.5,7.5 parent: 2 - type: SurveillanceCamera - id: Western Hallway + id: Personell Lockers - uid: 7560 components: - type: Transform @@ -43856,23 +60987,15 @@ entities: pos: 2.5,-11.5 parent: 2 - type: SurveillanceCamera - id: Southwest Maintenance - - uid: 7572 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-11.5 - parent: 2 - - type: SurveillanceCamera - id: Southeast Maintenance + id: Main Solar Control - uid: 7578 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,10.5 + rot: 3.141592653589793 rad + pos: 59.5,9.5 parent: 2 - type: SurveillanceCamera - id: Evac Hallway East + id: East of Research Lab - uid: 7582 components: - type: Transform @@ -43880,15 +61003,7 @@ entities: pos: 62.5,15.5 parent: 2 - type: SurveillanceCamera - id: Courtroom - - uid: 7613 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,19.5 - parent: 2 - - type: SurveillanceCamera - id: Supply Hallway + id: Assembly Room - uid: 7616 components: - type: Transform @@ -43904,7 +61019,7 @@ entities: pos: 17.5,55.5 parent: 2 - type: SurveillanceCamera - id: Outside Foyer + id: AI Upload Airlock Entrance - uid: 7618 components: - type: Transform @@ -43921,7 +61036,7 @@ entities: pos: 27.5,16.5 parent: 2 - type: SurveillanceCamera - id: Medical Logistics + id: Medical Lab - uid: 7432 components: - type: Transform @@ -43929,7 +61044,7 @@ entities: pos: 16.5,16.5 parent: 2 - type: SurveillanceCamera - id: Medbay + id: Medical Bay - uid: 7433 components: - type: Transform @@ -43940,59 +61055,64 @@ entities: id: Morgue - proto: SurveillanceCameraRouterCommand entities: - - uid: 6350 + - uid: 2622 components: - type: Transform - pos: 45.5,47.5 + pos: 0.5,5.5 parent: 2 - proto: SurveillanceCameraRouterEngineering entities: - - uid: 6344 + - uid: 2780 components: - type: Transform - pos: 43.5,47.5 + pos: -0.5,7.5 parent: 2 - proto: SurveillanceCameraRouterGeneral entities: - - uid: 6346 + - uid: 7118 components: - type: Transform - pos: 45.5,48.5 + pos: 1.5,7.5 parent: 2 - proto: SurveillanceCameraRouterMedical entities: - - uid: 6345 + - uid: 2203 components: - type: Transform - pos: 47.5,48.5 + pos: -1.5,7.5 parent: 2 - proto: SurveillanceCameraRouterScience entities: - - uid: 6348 + - uid: 2680 components: - type: Transform - pos: 47.5,47.5 + pos: -3.5,5.5 parent: 2 - proto: SurveillanceCameraRouterSecurity entities: - - uid: 6343 + - uid: 2481 components: - type: Transform - pos: 50.5,50.5 + pos: -0.5,5.5 parent: 2 + - uid: 11336 + components: + - type: Transform + pos: 27.5,-69.5 + parent: 3564 - proto: SurveillanceCameraRouterService entities: - - uid: 6349 + - uid: 2489 components: - type: Transform - pos: 49.5,47.5 + pos: -2.5,5.5 parent: 2 - proto: SurveillanceCameraRouterSupply entities: - - uid: 6347 + - uid: 2488 components: - type: Transform - pos: 49.5,48.5 + pos: -1.5,5.5 parent: 2 - proto: SurveillanceCameraScience entities: @@ -44003,15 +61123,15 @@ entities: pos: 55.5,5.5 parent: 2 - type: SurveillanceCamera - id: Science - - uid: 7574 + id: Research Lab + - uid: 7001 components: - type: Transform - rot: -1.5707963267948966 rad + rot: 3.141592653589793 rad pos: 50.5,14.5 parent: 2 - type: SurveillanceCamera - id: Accurate Depiction of an Academic's Living Conditions + id: Research Gas Storage - proto: SurveillanceCameraSecurity entities: - uid: 7485 @@ -44021,7 +61141,7 @@ entities: pos: 42.5,-0.5 parent: 2 - type: SurveillanceCamera - id: Brig + id: Prison - uid: 7486 components: - type: Transform @@ -44029,15 +61149,7 @@ entities: pos: 34.5,2.5 parent: 2 - type: SurveillanceCamera - id: Security - - uid: 7487 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-6.5 - parent: 2 - - type: SurveillanceCamera - id: Armory + id: Security (Main) - uid: 7516 components: - type: Transform @@ -44045,56 +61157,89 @@ entities: pos: 10.5,-6.5 parent: 2 - type: SurveillanceCamera - id: Security Outpost + id: Security (West) + - uid: 10538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-25.5 + parent: 3564 + - type: SurveillanceCamera + id: Security Office + - uid: 10539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-24.5 + parent: 3564 + - type: SurveillanceCamera + id: Recreation Area (East) + - uid: 10540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-24.5 + parent: 3564 + - type: SurveillanceCamera + id: Recreation Area (West) + - uid: 10541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-20.5 + parent: 3564 + - type: SurveillanceCamera + id: Infirmary + - uid: 10542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-40.5 + parent: 3564 + - type: SurveillanceCamera + id: Solitary Cells + - uid: 10543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-66.5 + parent: 3564 + - type: SurveillanceCamera + id: Warden's Office + - uid: 10544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-66.5 + parent: 3564 + - type: SurveillanceCamera + id: Brig Anchor + - uid: 10545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-61.5 + parent: 3564 + - type: SurveillanceCamera + id: Brig Atmos - proto: SurveillanceCameraService entities: - uid: 4737 components: - type: Transform + rot: 1.5707963267948966 rad pos: 20.5,-8.5 parent: 2 - type: SurveillanceCamera - id: Botany - - uid: 7500 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,7.5 - parent: 2 - - type: SurveillanceCamera - id: Janisposals - - uid: 7568 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-3.5 - parent: 2 - - type: SurveillanceCamera - id: Nightclub -- proto: SurveillanceCameraSupply - entities: - - uid: 7614 + id: Aux Storage + - uid: 7002 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,26.5 + pos: 0.5,13.5 parent: 2 - type: SurveillanceCamera - id: Cargo -- proto: SurveillanceCameraWirelessRouterConstructed - entities: - - uid: 6351 - components: - - type: Transform - pos: 50.5,51.5 - parent: 2 -- proto: SurveillanceCameraWirelessRouterEntertainment - entities: - - uid: 6352 - components: - - type: Transform - pos: 43.5,48.5 - parent: 2 + id: Chapel - proto: Table entities: - uid: 31 @@ -44102,16 +61247,6 @@ entities: - type: Transform pos: 7.5,2.5 parent: 2 - - uid: 134 - components: - - type: Transform - pos: 15.5,-8.5 - parent: 2 - - uid: 252 - components: - - type: Transform - pos: 27.5,38.5 - parent: 2 - uid: 253 components: - type: Transform @@ -44122,6 +61257,11 @@ entities: - type: Transform pos: 10.5,-7.5 parent: 2 + - uid: 305 + components: + - type: Transform + pos: -6.5,15.5 + parent: 2 - uid: 453 components: - type: Transform @@ -44157,10 +61297,10 @@ entities: - type: Transform pos: 29.5,8.5 parent: 2 - - uid: 657 + - uid: 729 components: - type: Transform - pos: 14.5,-8.5 + pos: 18.5,16.5 parent: 2 - uid: 732 components: @@ -44182,11 +61322,6 @@ entities: - type: Transform pos: 58.5,31.5 parent: 2 - - uid: 807 - components: - - type: Transform - pos: 33.5,-5.5 - parent: 2 - uid: 1011 components: - type: Transform @@ -44202,6 +61337,11 @@ entities: - type: Transform pos: 60.5,14.5 parent: 2 + - uid: 1246 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 - uid: 1261 components: - type: Transform @@ -44217,70 +61357,45 @@ entities: - type: Transform pos: 63.5,31.5 parent: 2 - - uid: 1375 - components: - - type: Transform - pos: 33.5,-4.5 - parent: 2 - - uid: 1381 - components: - - type: Transform - pos: 33.5,-7.5 - parent: 2 - - uid: 1407 - components: - - type: Transform - pos: 33.5,-6.5 - parent: 2 - uid: 1444 components: - type: Transform pos: 42.5,1.5 parent: 2 - - uid: 1491 + - uid: 1499 components: - type: Transform - pos: 30.5,-7.5 + pos: 34.5,-2.5 parent: 2 - - uid: 1535 + - uid: 1500 components: - type: Transform - pos: 48.5,0.5 + pos: 35.5,-2.5 parent: 2 - - uid: 1562 + - uid: 1501 components: - type: Transform - pos: 48.5,-0.5 + pos: 33.5,-2.5 parent: 2 - - uid: 1633 + - uid: 1529 components: - type: Transform - pos: 27.5,37.5 + pos: 34.5,10.5 parent: 2 - - uid: 1634 + - uid: 1791 components: - type: Transform - pos: 28.5,37.5 + pos: 38.5,31.5 parent: 2 - - uid: 1635 + - uid: 1799 components: - type: Transform - pos: 29.5,37.5 + pos: 38.5,29.5 parent: 2 - - uid: 1727 + - uid: 1917 components: - type: Transform - pos: 28.5,35.5 - parent: 2 - - uid: 1893 - components: - - type: Transform - pos: -0.5,7.5 - parent: 2 - - uid: 1919 - components: - - type: Transform - pos: -1.5,7.5 + pos: 38.5,30.5 parent: 2 - uid: 2006 components: @@ -44322,25 +61437,25 @@ entities: - type: Transform pos: 58.5,17.5 parent: 2 - - uid: 2047 + - uid: 2048 components: - type: Transform - pos: 48.5,4.5 + pos: 54.5,9.5 + parent: 2 + - uid: 2052 + components: + - type: Transform + pos: 46.5,29.5 parent: 2 - uid: 2136 components: - type: Transform pos: 55.5,28.5 parent: 2 - - uid: 2180 + - uid: 2184 components: - type: Transform - pos: 7.5,-12.5 - parent: 2 - - uid: 2204 - components: - - type: Transform - pos: 40.5,0.5 + pos: 13.5,-11.5 parent: 2 - uid: 2246 components: @@ -44357,41 +61472,11 @@ entities: - type: Transform pos: 47.5,21.5 parent: 2 - - uid: 2265 - components: - - type: Transform - pos: 45.5,26.5 - parent: 2 - - uid: 2284 - components: - - type: Transform - pos: 44.5,27.5 - parent: 2 - - uid: 2285 - components: - - type: Transform - pos: 43.5,27.5 - parent: 2 - uid: 2342 components: - type: Transform pos: 59.5,26.5 parent: 2 - - uid: 2422 - components: - - type: Transform - pos: 31.5,10.5 - parent: 2 - - uid: 2430 - components: - - type: Transform - pos: 59.5,28.5 - parent: 2 - - uid: 2627 - components: - - type: Transform - pos: 31.5,-7.5 - parent: 2 - uid: 2675 components: - type: Transform @@ -44417,66 +61502,111 @@ entities: - type: Transform pos: 2.5,-7.5 parent: 2 - - uid: 2794 + - uid: 2777 components: - type: Transform - pos: 7.5,-10.5 + pos: -5.5,5.5 parent: 2 - - uid: 2858 + - uid: 2788 components: - type: Transform - pos: 31.5,-6.5 + pos: 31.5,8.5 parent: 2 - - uid: 3313 + - uid: 2862 components: - type: Transform - pos: 58.5,38.5 + pos: 34.5,9.5 parent: 2 - - uid: 3817 + - uid: 3007 components: - type: Transform - pos: 30.5,-6.5 + pos: 34.5,24.5 parent: 2 - - uid: 4601 + - uid: 3340 components: - type: Transform - pos: 34.5,51.5 + pos: 38.5,-9.5 parent: 2 - - uid: 4729 + - uid: 3352 components: - type: Transform - pos: 34.5,52.5 + pos: 37.5,-12.5 parent: 2 - - uid: 4731 + - uid: 3353 components: - type: Transform - pos: 30.5,52.5 + pos: 38.5,-12.5 parent: 2 - - uid: 4732 + - uid: 3357 components: - type: Transform - pos: 30.5,51.5 + pos: 13.5,-12.5 parent: 2 - - uid: 4733 + - uid: 3362 components: - type: Transform - pos: 32.5,52.5 + pos: 20.5,-5.5 parent: 2 - - uid: 4735 + - uid: 3363 components: - type: Transform - pos: 32.5,51.5 + pos: 20.5,-6.5 parent: 2 - - uid: 4736 + - uid: 3816 components: - type: Transform - pos: 30.5,48.5 + pos: 32.5,-10.5 + parent: 2 + - uid: 3818 + components: + - type: Transform + pos: 34.5,-10.5 + parent: 2 + - uid: 3900 + components: + - type: Transform + pos: 45.5,29.5 + parent: 2 + - uid: 3964 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 2 + - uid: 4001 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 2 + - uid: 4220 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 2 + - uid: 4265 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 2 + - uid: 5172 + components: + - type: Transform + pos: 39.5,35.5 parent: 2 - uid: 5544 components: - type: Transform pos: 56.5,17.5 parent: 2 + - uid: 5970 + components: + - type: Transform + pos: 14.5,28.5 + parent: 2 + - uid: 5976 + components: + - type: Transform + pos: 17.5,24.5 + parent: 2 - uid: 6123 components: - type: Transform @@ -44487,6 +61617,11 @@ entities: - type: Transform pos: 63.5,34.5 parent: 2 + - uid: 6478 + components: + - type: Transform + pos: 31.5,-10.5 + parent: 2 - uid: 6662 components: - type: Transform @@ -44542,16 +61677,10 @@ entities: - type: Transform pos: 57.5,34.5 parent: 2 - - uid: 6999 + - uid: 7117 components: - type: Transform - pos: 46.5,-17.5 - parent: 2 - - uid: 7115 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,13.5 + pos: 45.5,35.5 parent: 2 - uid: 7332 components: @@ -44563,10 +61692,25 @@ entities: - type: Transform pos: 19.5,16.5 parent: 2 - - uid: 7380 + - uid: 7345 components: - type: Transform - pos: 32.5,10.5 + pos: 12.5,-10.5 + parent: 2 + - uid: 7346 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 2 + - uid: 7363 + components: + - type: Transform + pos: 20.5,-8.5 + parent: 2 + - uid: 7364 + components: + - type: Transform + pos: 20.5,-7.5 parent: 2 - uid: 7382 components: @@ -44583,21 +61727,6 @@ entities: - type: Transform pos: 8.5,16.5 parent: 2 - - uid: 7545 - components: - - type: Transform - pos: 48.5,3.5 - parent: 2 - - uid: 7546 - components: - - type: Transform - pos: 48.5,2.5 - parent: 2 - - uid: 7566 - components: - - type: Transform - pos: 27.5,35.5 - parent: 2 - uid: 7666 components: - type: Transform @@ -44608,10 +61737,398 @@ entities: - type: Transform pos: 19.5,-12.5 parent: 2 - - uid: 7675 + - uid: 7711 components: - type: Transform - pos: 37.5,-12.5 + pos: 59.5,28.5 + parent: 2 + - uid: 7715 + components: + - type: Transform + pos: 47.5,29.5 + parent: 2 + - uid: 7818 + components: + - type: Transform + pos: 44.5,29.5 + parent: 2 + - uid: 8229 + components: + - type: Transform + pos: 27.5,26.5 + parent: 2 + - uid: 8357 + components: + - type: Transform + pos: 34.5,23.5 + parent: 2 + - uid: 8368 + components: + - type: Transform + pos: 30.5,33.5 + parent: 2 + - uid: 8369 + components: + - type: Transform + pos: 29.5,33.5 + parent: 2 + - uid: 9701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-65.5 + parent: 3564 + - uid: 9715 + components: + - type: Transform + pos: 24.5,-16.5 + parent: 3564 + - uid: 9716 + components: + - type: Transform + pos: 25.5,-16.5 + parent: 3564 + - uid: 9717 + components: + - type: Transform + pos: 26.5,-16.5 + parent: 3564 + - uid: 9718 + components: + - type: Transform + pos: 27.5,-16.5 + parent: 3564 + - uid: 9719 + components: + - type: Transform + pos: 28.5,-16.5 + parent: 3564 + - uid: 9720 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 3564 + - uid: 9721 + components: + - type: Transform + pos: 30.5,-16.5 + parent: 3564 + - uid: 9722 + components: + - type: Transform + pos: 30.5,-19.5 + parent: 3564 + - uid: 9723 + components: + - type: Transform + pos: 30.5,-20.5 + parent: 3564 + - uid: 9724 + components: + - type: Transform + pos: 30.5,-21.5 + parent: 3564 + - uid: 9725 + components: + - type: Transform + pos: 30.5,-22.5 + parent: 3564 + - uid: 9726 + components: + - type: Transform + pos: 30.5,-23.5 + parent: 3564 + - uid: 9909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-54.5 + parent: 3564 + - uid: 10261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-50.5 + parent: 3564 + - uid: 10262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-46.5 + parent: 3564 + - uid: 10263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-38.5 + parent: 3564 + - uid: 10264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-34.5 + parent: 3564 + - uid: 10265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-38.5 + parent: 3564 + - uid: 10266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-42.5 + parent: 3564 + - uid: 10267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-46.5 + parent: 3564 + - uid: 10268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-50.5 + parent: 3564 + - uid: 10269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-54.5 + parent: 3564 + - uid: 10324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-32.5 + parent: 3564 + - uid: 10325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-33.5 + parent: 3564 + - uid: 10400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-66.5 + parent: 3564 + - uid: 10403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-64.5 + parent: 3564 + - uid: 10405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-64.5 + parent: 3564 + - uid: 10406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-66.5 + parent: 3564 + - uid: 10409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-69.5 + parent: 3564 + - uid: 10433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-60.5 + parent: 3564 + - uid: 10434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-61.5 + parent: 3564 + - uid: 10452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-59.5 + parent: 3564 + - uid: 10453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-59.5 + parent: 3564 + - uid: 10454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-59.5 + parent: 3564 + - uid: 10512 + components: + - type: Transform + pos: 37.5,-25.5 + parent: 3564 + - uid: 10513 + components: + - type: Transform + pos: 37.5,-26.5 + parent: 3564 + - uid: 10514 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 3564 + - uid: 10515 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 3564 + - uid: 10516 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - uid: 10517 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 3564 + - uid: 10555 + components: + - type: Transform + pos: 11.5,-20.5 + parent: 3564 + - uid: 10558 + components: + - type: Transform + pos: 9.5,-25.5 + parent: 3564 + - uid: 10559 + components: + - type: Transform + pos: 9.5,-26.5 + parent: 3564 + - uid: 10560 + components: + - type: Transform + pos: 9.5,-27.5 + parent: 3564 + - uid: 10561 + components: + - type: Transform + pos: 9.5,-28.5 + parent: 3564 + - uid: 10562 + components: + - type: Transform + pos: 9.5,-29.5 + parent: 3564 + - uid: 10563 + components: + - type: Transform + pos: 13.5,-29.5 + parent: 3564 + - uid: 10564 + components: + - type: Transform + pos: 12.5,-29.5 + parent: 3564 + - uid: 10565 + components: + - type: Transform + pos: 11.5,-29.5 + parent: 3564 + - uid: 10566 + components: + - type: Transform + pos: 10.5,-29.5 + parent: 3564 + - uid: 10582 + components: + - type: Transform + pos: 17.5,-22.5 + parent: 3564 + - uid: 10583 + components: + - type: Transform + pos: 16.5,-22.5 + parent: 3564 + - uid: 10584 + components: + - type: Transform + pos: 16.5,-23.5 + parent: 3564 + - uid: 10585 + components: + - type: Transform + pos: 17.5,-23.5 + parent: 3564 + - uid: 10586 + components: + - type: Transform + pos: 16.5,-28.5 + parent: 3564 + - uid: 10587 + components: + - type: Transform + pos: 16.5,-27.5 + parent: 3564 + - uid: 10588 + components: + - type: Transform + pos: 17.5,-28.5 + parent: 3564 + - uid: 10589 + components: + - type: Transform + pos: 17.5,-27.5 + parent: 3564 + - uid: 11212 + components: + - type: Transform + pos: 53.5,9.5 + parent: 2 + - uid: 11352 + components: + - type: Transform + pos: -6.5,14.5 + parent: 2 + - uid: 11353 + components: + - type: Transform + pos: -6.5,13.5 + parent: 2 + - uid: 11354 + components: + - type: Transform + pos: -6.5,11.5 + parent: 2 + - uid: 11355 + components: + - type: Transform + pos: -6.5,10.5 + parent: 2 + - uid: 11356 + components: + - type: Transform + pos: -6.5,9.5 + parent: 2 + - uid: 11509 + components: + - type: Transform + pos: 11.5,34.5 + parent: 2 + - uid: 11510 + components: + - type: Transform + pos: 12.5,34.5 parent: 2 - proto: TableBrass entities: @@ -44627,21 +62144,6 @@ entities: parent: 2 - proto: TableCounterMetal entities: - - uid: 96 - components: - - type: Transform - pos: 18.5,-4.5 - parent: 2 - - uid: 492 - components: - - type: Transform - pos: 18.5,23.5 - parent: 2 - - uid: 515 - components: - - type: Transform - pos: 17.5,23.5 - parent: 2 - uid: 540 components: - type: Transform @@ -44667,11 +62169,6 @@ entities: - type: Transform pos: 14.5,13.5 parent: 2 - - uid: 710 - components: - - type: Transform - pos: 31.5,12.5 - parent: 2 - uid: 1098 components: - type: Transform @@ -44682,259 +62179,46 @@ entities: - type: Transform pos: 32.5,7.5 parent: 2 - - uid: 1294 - components: - - type: Transform - pos: 19.5,23.5 - parent: 2 - - uid: 1475 - components: - - type: Transform - pos: 23.5,-7.5 - parent: 2 - - uid: 1486 - components: - - type: Transform - pos: 25.5,-7.5 - parent: 2 - - uid: 1489 - components: - - type: Transform - pos: 24.5,-7.5 - parent: 2 - - uid: 1492 - components: - - type: Transform - pos: 27.5,-2.5 - parent: 2 - - uid: 1493 - components: - - type: Transform - pos: 28.5,-2.5 - parent: 2 - - uid: 1494 - components: - - type: Transform - pos: 26.5,-2.5 - parent: 2 - - uid: 1495 - components: - - type: Transform - pos: 25.5,0.5 - parent: 2 - - uid: 1496 - components: - - type: Transform - pos: 26.5,0.5 - parent: 2 - - uid: 1749 - components: - - type: Transform - pos: 29.5,22.5 - parent: 2 - - uid: 1765 - components: - - type: Transform - pos: 31.5,22.5 - parent: 2 - - uid: 1767 - components: - - type: Transform - pos: 30.5,22.5 - parent: 2 - - uid: 2193 - components: - - type: Transform - pos: 45.5,8.5 - parent: 2 - - uid: 2194 - components: - - type: Transform - pos: 45.5,7.5 - parent: 2 - - uid: 2195 - components: - - type: Transform - pos: 45.5,6.5 - parent: 2 - - uid: 2196 - components: - - type: Transform - pos: 46.5,6.5 - parent: 2 - - uid: 2628 - components: - - type: Transform - pos: 24.5,-10.5 - parent: 2 - - uid: 2629 - components: - - type: Transform - pos: 23.5,-10.5 - parent: 2 - - uid: 2671 - components: - - type: Transform - pos: 19.5,-4.5 - parent: 2 - - uid: 2803 - components: - - type: Transform - pos: 22.5,-10.5 - parent: 2 - - uid: 2857 - components: - - type: Transform - pos: 25.5,-2.5 - parent: 2 - uid: 3163 components: - type: Transform pos: 32.5,12.5 parent: 2 - - uid: 7653 + - uid: 9713 components: - type: Transform - pos: 24.5,-9.5 - parent: 2 -- proto: TableFancyBlue + pos: 26.5,-58.5 + parent: 3564 + - uid: 9714 + components: + - type: Transform + pos: 26.5,-59.5 + parent: 3564 +- proto: TableFancyBlack entities: - - uid: 2278 + - uid: 11351 components: - type: Transform - pos: 42.5,29.5 + rot: 1.5707963267948966 rad + pos: -4.5,10.5 parent: 2 - proto: TableGlass entities: - - uid: 546 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,16.5 - parent: 2 - uid: 793 components: - type: Transform pos: 63.5,30.5 parent: 2 - - uid: 1273 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,15.5 - parent: 2 - uid: 1480 components: - type: Transform pos: 59.5,31.5 parent: 2 - - uid: 1541 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,14.5 - parent: 2 - - uid: 1545 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,13.5 - parent: 2 - - uid: 1611 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,31.5 - parent: 2 - - uid: 1612 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,32.5 - parent: 2 - - uid: 1613 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,33.5 - parent: 2 - - uid: 1967 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,10.5 - parent: 2 - - uid: 2039 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,9.5 - parent: 2 - - uid: 2073 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,8.5 - parent: 2 - - uid: 2130 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,7.5 - parent: 2 - uid: 2429 components: - type: Transform pos: 63.5,32.5 parent: 2 - - uid: 7636 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,31.5 - parent: 2 - - uid: 7643 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,31.5 - parent: 2 - - uid: 7645 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,32.5 - parent: 2 - - uid: 7727 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,6.5 - parent: 2 - - uid: 7728 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,5.5 - parent: 2 - - uid: 7729 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,4.5 - parent: 2 - - uid: 7730 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,4.5 - parent: 2 - - uid: 7731 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,4.5 - parent: 2 - proto: TegCenter entities: - uid: 1302 @@ -44970,71 +62254,49 @@ entities: - type: DeviceLinkSink ports: - Trigger -- proto: TelecomServerCircuitboard +- proto: TelecomServerFilled entities: - - uid: 2173 + - uid: 2859 components: - type: Transform - pos: 13.5,-12.5 + pos: -5.5,7.5 parent: 2 -- proto: TelecomServerFilledCargo +- proto: ThrusterFlatpack entities: - - uid: 1589 + - uid: 5962 components: - type: Transform - pos: 38.5,26.5 + pos: 14.5,28.5 parent: 2 -- proto: TelecomServerFilledCommand - entities: - - uid: 1582 + - uid: 5973 components: - type: Transform - pos: 38.5,27.5 + pos: 14.5,28.5 parent: 2 -- proto: TelecomServerFilledCommon - entities: - - uid: 1590 + - uid: 5974 components: - type: Transform - pos: 38.5,28.5 + pos: 14.5,28.5 parent: 2 -- proto: TelecomServerFilledEngineering +- proto: ThrusterUnanchored entities: - - uid: 1585 + - uid: 5968 components: - type: Transform - pos: 38.5,29.5 + pos: 10.5,31.5 parent: 2 -- proto: TelecomServerFilledMedical - entities: - - uid: 1584 + - uid: 5969 components: - type: Transform - pos: 36.5,26.5 - parent: 2 -- proto: TelecomServerFilledScience - entities: - - uid: 1588 - components: - - type: Transform - pos: 36.5,27.5 - parent: 2 -- proto: TelecomServerFilledSecurity - entities: - - uid: 1583 - components: - - type: Transform - pos: 36.5,28.5 - parent: 2 -- proto: TelecomServerFilledService - entities: - - uid: 1587 - components: - - type: Transform - pos: 36.5,29.5 + pos: 12.5,29.5 parent: 2 - proto: TimerTrigger entities: + - uid: 1388 + components: + - type: Transform + pos: 45.5,20.5 + parent: 2 - uid: 7220 components: - type: Transform @@ -45050,22 +62312,40 @@ entities: - type: Transform pos: 45.5,19.5 parent: 2 - - uid: 7702 + - uid: 7810 components: - type: Transform - pos: 48.5,19.5 + pos: 52.5,9.5 parent: 2 -- proto: ToiletDirtyWater - entities: - - uid: 4008 + - uid: 7814 components: - type: Transform - pos: 42.5,-9.5 + pos: 52.5,9.5 parent: 2 - - uid: 4009 + - uid: 8401 components: - type: Transform - pos: 44.5,-9.5 + pos: 38.5,30.5 + parent: 2 + - uid: 8405 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 8411 + components: + - type: Transform + pos: 38.5,29.5 + parent: 2 + - uid: 11148 + components: + - type: Transform + pos: 49.5,19.5 + parent: 2 + - uid: 11154 + components: + - type: Transform + pos: 43.5,20.5 parent: 2 - proto: ToolboxArtisticFilled entities: @@ -45076,66 +62356,206 @@ entities: parent: 2 - proto: ToolboxElectricalFilled entities: - - uid: 2259 + - uid: 889 components: - type: Transform - pos: 49.5,19.5 + pos: 38.5,30.5 parent: 2 - - uid: 2287 + - uid: 1313 components: - type: Transform - pos: 49.5,19.5 + pos: 13.5,-7.5 + parent: 2 + - uid: 3355 + components: + - type: Transform + pos: 38.5,-12.5 + parent: 2 + - uid: 4489 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 2 + - uid: 5933 + components: + - type: Transform + pos: 14.5,31.5 + parent: 2 + - uid: 10534 + components: + - type: Transform + pos: 35.5,-25.5 + parent: 3564 + - uid: 11152 + components: + - type: Transform + pos: 51.5,19.5 + parent: 2 + - uid: 11171 + components: + - type: Transform + pos: 46.5,29.5 + parent: 2 + - uid: 11512 + components: + - type: Transform + pos: 11.5,34.5 parent: 2 - proto: ToolboxEmergencyFilled entities: - - uid: 573 + - uid: 1298 components: - type: Transform - pos: 47.5,19.5 + pos: 20.5,11.5 parent: 2 - - uid: 862 + - uid: 1577 components: - type: Transform - pos: 47.5,19.5 + pos: 45.5,29.5 + parent: 2 + - uid: 1697 + components: + - type: Transform + pos: 35.5,-9.5 parent: 2 - uid: 1764 components: - type: Transform pos: 59.5,31.5 parent: 2 + - uid: 4368 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 2 + - uid: 4384 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 2 + - uid: 5935 + components: + - type: Transform + pos: 14.5,29.5 + parent: 2 + - uid: 6305 + components: + - type: Transform + pos: 20.5,-8.5 + parent: 2 + - uid: 6352 + components: + - type: Transform + pos: 45.5,35.5 + parent: 2 + - uid: 6460 + components: + - type: Transform + pos: 20.5,-7.5 + parent: 2 - uid: 7190 components: - type: Transform pos: 38.5,-1.5 parent: 2 -- proto: ToolboxGoldFilled - entities: - - uid: 2163 + - uid: 7709 components: - type: Transform - pos: 62.57238,9.313311 + pos: 44.5,29.5 + parent: 2 + - uid: 7807 + components: + - type: Transform + pos: 30.5,33.5 + parent: 2 + - uid: 8370 + components: + - type: Transform + pos: 29.5,33.5 + parent: 2 + - uid: 8391 + components: + - type: Transform + pos: 38.5,30.5 + parent: 2 + - uid: 8404 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 8409 + components: + - type: Transform + pos: 38.5,29.5 + parent: 2 + - uid: 10401 + components: + - type: Transform + pos: 34.5,-63.5 + parent: 3564 + - uid: 10533 + components: + - type: Transform + pos: 34.5,-25.5 + parent: 3564 + - uid: 10615 + components: + - type: Transform + pos: 33.5,-23.5 + parent: 3564 + - uid: 11158 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 11159 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 11209 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 +- proto: ToolboxGoldFilled + entities: + - uid: 8269 + components: + - type: Transform + pos: 59.5,23.5 parent: 2 - proto: ToolboxMechanicalFilled entities: - - uid: 2286 + - uid: 867 components: - type: Transform - pos: 48.5,19.5 + pos: 38.5,29.5 parent: 2 - - uid: 2866 - components: - - type: Transform - pos: 48.5,19.5 - parent: 2 -- proto: ToyFigurineHeadOfPersonnel +- proto: TrackingImplanter entities: - - uid: 7218 + - uid: 10612 components: - type: Transform - pos: 42.5,29.9 - parent: 2 + pos: 28.5,-23.5 + parent: 3564 + - uid: 10613 + components: + - type: Transform + pos: 29.5,-23.5 + parent: 3564 - proto: trayScanner entities: + - uid: 4386 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 2 + - uid: 6712 + components: + - type: Transform + pos: 34.5,-10.5 + parent: 2 - uid: 7219 components: - type: Transform @@ -45146,105 +62566,19 @@ entities: - type: Transform pos: 47.5,21.5 parent: 2 -- proto: TritiumCanister +- proto: TreasureFlopDiskDrive entities: - - uid: 6609 + - uid: 6685 components: - type: Transform - pos: 20.5,42.5 + pos: 11.5,22.5 parent: 2 -- proto: TwoWayLever - entities: - - uid: 828 - components: - - type: Transform - pos: -5.5,7.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 254: - - - Left - - Reverse - - - Right - - Forward - - - Middle - - Off - 150: - - - Left - - Reverse - - - Right - - Forward - - - Middle - - Off - 258: - - - Left - - Reverse - - - Right - - Forward - - - Middle - - Off - 256: - - - Left - - Reverse - - - Right - - Forward - - - Middle - - Off - 290: - - - Left - - Reverse - - - Right - - Forward - - - Middle - - Off - 259: - - - Left - - Reverse - - - Right - - Forward - - - Middle - - Off - 165: - - - Left - - Reverse - - - Right - - Forward - - - Middle - - Off - 294: - - - Left - - Reverse - - - Right - - Forward - - - Middle - - Off - 118: - - - Left - - Reverse - - - Right - - Forward - - - Middle - - Off - 382: - - - Left - - Open - - - Right - - Close - - - Middle - - Close - 357: - - - Left - - Close - - - Right - - Open - - - Middle - - Close - proto: UniformPrinter entities: - - uid: 2275 + - uid: 7784 components: - type: Transform - pos: 45.5,29.5 + pos: 42.5,29.5 parent: 2 - type: TechnologyDatabase supportedDisciplines: @@ -45252,26 +62586,12 @@ entities: - Arsenal - Experimental - CivilianServices -- proto: VendingMachineBooze - entities: - - uid: 1374 - components: - - type: Transform - pos: 28.5,0.5 - parent: 2 - proto: VendingMachineCart entities: - - uid: 2280 + - uid: 7787 components: - type: Transform - pos: 46.5,29.5 - parent: 2 -- proto: VendingMachineChefvend - entities: - - uid: 1402 - components: - - type: Transform - pos: 26.5,-7.5 + pos: 43.5,29.5 parent: 2 - proto: VendingMachineChemDrobe entities: @@ -45287,88 +62607,63 @@ entities: - type: Transform pos: 28.5,9.5 parent: 2 -- proto: VendingMachineClothing - entities: - - uid: 7008 - components: - - type: Transform - pos: 58.5,53.5 - parent: 2 -- proto: VendingMachineDinnerware - entities: - - uid: 2609 - components: - - type: Transform - pos: 27.5,-7.5 - parent: 2 -- proto: VendingMachineDiscount - entities: - - uid: 1497 - components: - - type: Transform - pos: 30.5,31.5 - parent: 2 - proto: VendingMachineEngivend entities: - - uid: 1569 + - uid: 7766 components: - type: Transform - pos: 37.5,41.5 + pos: 23.5,38.5 parent: 2 - proto: VendingMachineMedical entities: - - uid: 532 + - uid: 6314 components: - type: Transform - pos: 25.5,16.5 - parent: 2 -- proto: VendingMachineNutri - entities: - - uid: 879 - components: - - type: Transform - pos: 12.5,-5.5 - parent: 2 -- proto: VendingMachineRobotics - entities: - - uid: 1557 - components: - - type: Transform - pos: 53.5,9.5 + pos: 34.5,13.5 parent: 2 - proto: VendingMachineSec entities: - - uid: 7213 + - uid: 1328 components: - type: Transform - pos: 35.5,-4.5 + pos: 37.5,2.5 parent: 2 -- proto: VendingMachineSeeds +- proto: VendingMachineSeedsUnlocked entities: - - uid: 1711 + - uid: 10546 components: - type: Transform - pos: 13.5,-5.5 - parent: 2 + pos: 9.5,-20.5 + parent: 3564 - proto: VendingMachineTankDispenserEngineering entities: - - uid: 1623 + - uid: 1012 components: - type: Transform - pos: 35.5,37.5 + pos: 49.5,14.5 parent: 2 - - uid: 1624 + - uid: 2909 components: - type: Transform - pos: 36.5,37.5 - parent: 2 - - uid: 1625 - components: - - type: Transform - pos: 37.5,37.5 + pos: 36.5,29.5 parent: 2 - proto: VendingMachineTankDispenserEVA entities: + - uid: 1326 + components: + - type: Transform + pos: 50.5,14.5 + parent: 2 + - uid: 1382 + components: + - type: Transform + pos: 35.5,-7.5 + parent: 2 + - uid: 1383 + components: + - type: Transform + pos: 34.5,-7.5 + parent: 2 - uid: 1929 components: - type: Transform @@ -45379,16 +62674,31 @@ entities: - type: Transform pos: 49.5,41.5 parent: 2 - - uid: 2626 + - uid: 3366 components: - type: Transform - pos: 6.5,-12.5 + pos: 10.5,-12.5 + parent: 2 + - uid: 4719 + components: + - type: Transform + pos: 48.5,14.5 + parent: 2 + - uid: 5165 + components: + - type: Transform + pos: 13.5,31.5 parent: 2 - uid: 7665 components: - type: Transform pos: 17.5,-12.5 parent: 2 + - uid: 8304 + components: + - type: Transform + pos: 30.5,22.5 + parent: 2 - proto: VendingMachineVendomat entities: - uid: 2245 @@ -45396,30 +62706,18 @@ entities: - type: Transform pos: 41.5,19.5 parent: 2 - - uid: 2612 - components: - - type: Transform - pos: 5.5,-12.5 - parent: 2 -- proto: VendingMachineWinter - entities: - - uid: 6544 - components: - - type: Transform - pos: 8.5,0.5 - parent: 2 - proto: VendingMachineYouTool entities: - - uid: 889 - components: - - type: Transform - pos: 37.5,40.5 - parent: 2 - uid: 2244 components: - type: Transform pos: 41.5,20.5 parent: 2 + - uid: 7760 + components: + - type: Transform + pos: 23.5,37.5 + parent: 2 - proto: WallReinforced entities: - uid: 43 @@ -45427,6 +62725,16 @@ entities: - type: Transform pos: 6.5,30.5 parent: 2 + - uid: 161 + components: + - type: Transform + pos: 21.5,19.5 + parent: 2 + - uid: 162 + components: + - type: Transform + pos: 35.5,19.5 + parent: 2 - uid: 174 components: - type: Transform @@ -45507,6 +62815,11 @@ entities: - type: Transform pos: 2.5,5.5 parent: 2 + - uid: 284 + components: + - type: Transform + pos: 34.5,19.5 + parent: 2 - uid: 299 components: - type: Transform @@ -45562,6 +62875,11 @@ entities: - type: Transform pos: 7.5,31.5 parent: 2 + - uid: 639 + components: + - type: Transform + pos: 33.5,19.5 + parent: 2 - uid: 643 components: - type: Transform @@ -45587,6 +62905,46 @@ entities: - type: Transform pos: -0.5,32.5 parent: 2 + - uid: 662 + components: + - type: Transform + pos: 32.5,19.5 + parent: 2 + - uid: 664 + components: + - type: Transform + pos: 31.5,19.5 + parent: 2 + - uid: 665 + components: + - type: Transform + pos: 30.5,19.5 + parent: 2 + - uid: 666 + components: + - type: Transform + pos: 29.5,19.5 + parent: 2 + - uid: 668 + components: + - type: Transform + pos: 28.5,19.5 + parent: 2 + - uid: 671 + components: + - type: Transform + pos: 27.5,19.5 + parent: 2 + - uid: 672 + components: + - type: Transform + pos: 26.5,19.5 + parent: 2 + - uid: 682 + components: + - type: Transform + pos: 25.5,19.5 + parent: 2 - uid: 700 components: - type: Transform @@ -45677,6 +63035,11 @@ entities: - type: Transform pos: 10.5,38.5 parent: 2 + - uid: 795 + components: + - type: Transform + pos: 24.5,19.5 + parent: 2 - uid: 858 components: - type: Transform @@ -45782,11 +63145,6 @@ entities: - type: Transform pos: 17.5,43.5 parent: 2 - - uid: 895 - components: - - type: Transform - pos: 59.5,9.5 - parent: 2 - uid: 896 components: - type: Transform @@ -46122,11 +63480,6 @@ entities: - type: Transform pos: 47.5,5.5 parent: 2 - - uid: 1197 - components: - - type: Transform - pos: 59.5,5.5 - parent: 2 - uid: 1198 components: - type: Transform @@ -46352,6 +63705,26 @@ entities: - type: Transform pos: 37.5,3.5 parent: 2 + - uid: 1476 + components: + - type: Transform + pos: -6.5,5.5 + parent: 2 + - uid: 1495 + components: + - type: Transform + pos: 34.5,-3.5 + parent: 2 + - uid: 1524 + components: + - type: Transform + pos: 23.5,19.5 + parent: 2 + - uid: 1561 + components: + - type: Transform + pos: 22.5,19.5 + parent: 2 - uid: 1573 components: - type: Transform @@ -46412,15 +63785,10 @@ entities: - type: Transform pos: 28.5,56.5 parent: 2 - - uid: 1946 + - uid: 1954 components: - type: Transform - pos: 59.5,7.5 - parent: 2 - - uid: 2043 - components: - - type: Transform - pos: 59.5,8.5 + pos: 20.5,19.5 parent: 2 - uid: 2090 components: @@ -46597,11 +63965,48 @@ entities: - type: Transform pos: 16.5,62.5 parent: 2 + - uid: 2787 + components: + - type: Transform + pos: 67.5,-13.5 + parent: 2 + - uid: 2792 + components: + - type: Transform + pos: 67.5,-23.5 + parent: 2 + - uid: 2896 + components: + - type: Transform + pos: 35.5,20.5 + parent: 2 + - uid: 3082 + components: + - type: Transform + pos: 35.5,22.5 + parent: 2 - uid: 3395 components: - type: Transform pos: 16.5,26.5 parent: 2 + - uid: 3565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-46.5 + parent: 3564 + - uid: 3566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-38.5 + parent: 3564 + - uid: 3929 + components: + - type: Transform + pos: 45.5,34.5 + parent: 2 - uid: 4266 components: - type: Transform @@ -47022,16 +64427,6 @@ entities: - type: Transform pos: 28.5,51.5 parent: 2 - - uid: 4417 - components: - - type: Transform - pos: 39.5,51.5 - parent: 2 - - uid: 4420 - components: - - type: Transform - pos: 39.5,49.5 - parent: 2 - uid: 4421 components: - type: Transform @@ -47297,6 +64692,11 @@ entities: - type: Transform pos: 41.5,47.5 parent: 2 + - uid: 7233 + components: + - type: Transform + pos: 67.5,-24.5 + parent: 2 - uid: 7239 components: - type: Transform @@ -47307,8 +64707,2153 @@ entities: - type: Transform pos: 14.5,47.5 parent: 2 + - uid: 7396 + components: + - type: Transform + pos: 67.5,-28.5 + parent: 2 + - uid: 8397 + components: + - type: Transform + pos: 44.5,34.5 + parent: 2 + - uid: 8398 + components: + - type: Transform + pos: 44.5,33.5 + parent: 2 + - uid: 9079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-38.5 + parent: 3564 + - uid: 9080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-38.5 + parent: 3564 + - uid: 9081 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-38.5 + parent: 3564 + - uid: 9082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-39.5 + parent: 3564 + - uid: 9083 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-40.5 + parent: 3564 + - uid: 9084 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-37.5 + parent: 3564 + - uid: 9085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-36.5 + parent: 3564 + - uid: 9086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-36.5 + parent: 3564 + - uid: 9087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-36.5 + parent: 3564 + - uid: 9088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-39.5 + parent: 3564 + - uid: 9089 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-35.5 + parent: 3564 + - uid: 9090 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-36.5 + parent: 3564 + - uid: 9091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-35.5 + parent: 3564 + - uid: 9092 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-36.5 + parent: 3564 + - uid: 9093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-35.5 + parent: 3564 + - uid: 9094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-36.5 + parent: 3564 + - uid: 9095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-35.5 + parent: 3564 + - uid: 9096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-36.5 + parent: 3564 + - uid: 9097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-37.5 + parent: 3564 + - uid: 9098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-38.5 + parent: 3564 + - uid: 9099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-39.5 + parent: 3564 + - uid: 9100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-39.5 + parent: 3564 + - uid: 9101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-38.5 + parent: 3564 + - uid: 9102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-37.5 + parent: 3564 + - uid: 9103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-39.5 + parent: 3564 + - uid: 9104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-39.5 + parent: 3564 + - uid: 9105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-39.5 + parent: 3564 + - uid: 9106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-39.5 + parent: 3564 + - uid: 9107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-39.5 + parent: 3564 + - uid: 9108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-35.5 + parent: 3564 + - uid: 9109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-35.5 + parent: 3564 + - uid: 9110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-35.5 + parent: 3564 + - uid: 9111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-35.5 + parent: 3564 + - uid: 9112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-43.5 + parent: 3564 + - uid: 9113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-43.5 + parent: 3564 + - uid: 9114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-43.5 + parent: 3564 + - uid: 9115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-43.5 + parent: 3564 + - uid: 9116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-43.5 + parent: 3564 + - uid: 9117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-43.5 + parent: 3564 + - uid: 9118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-43.5 + parent: 3564 + - uid: 9119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-43.5 + parent: 3564 + - uid: 9120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-42.5 + parent: 3564 + - uid: 9121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-43.5 + parent: 3564 + - uid: 9122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-44.5 + parent: 3564 + - uid: 9123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-45.5 + parent: 3564 + - uid: 9124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-44.5 + parent: 3564 + - uid: 9125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-45.5 + parent: 3564 + - uid: 9126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-44.5 + parent: 3564 + - uid: 9127 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-45.5 + parent: 3564 + - uid: 9128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-46.5 + parent: 3564 + - uid: 9129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-46.5 + parent: 3564 + - uid: 9130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-46.5 + parent: 3564 + - uid: 9131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-46.5 + parent: 3564 + - uid: 9132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-46.5 + parent: 3564 + - uid: 9134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-46.5 + parent: 3564 + - uid: 9135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-46.5 + parent: 3564 + - uid: 9137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-47.5 + parent: 3564 + - uid: 9138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-47.5 + parent: 3564 + - uid: 9139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-47.5 + parent: 3564 + - uid: 9140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-47.5 + parent: 3564 + - uid: 9141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-47.5 + parent: 3564 + - uid: 9142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-48.5 + parent: 3564 + - uid: 9143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-49.5 + parent: 3564 + - uid: 9144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-50.5 + parent: 3564 + - uid: 9145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-51.5 + parent: 3564 + - uid: 9146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-52.5 + parent: 3564 + - uid: 9147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-53.5 + parent: 3564 + - uid: 9148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-54.5 + parent: 3564 + - uid: 9149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-55.5 + parent: 3564 + - uid: 9150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-56.5 + parent: 3564 + - uid: 9151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-55.5 + parent: 3564 + - uid: 9152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-56.5 + parent: 3564 + - uid: 9153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-55.5 + parent: 3564 + - uid: 9154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-56.5 + parent: 3564 + - uid: 9155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-55.5 + parent: 3564 + - uid: 9156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-56.5 + parent: 3564 + - uid: 9157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-55.5 + parent: 3564 + - uid: 9158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-56.5 + parent: 3564 + - uid: 9159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-57.5 + parent: 3564 + - uid: 9160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-58.5 + parent: 3564 + - uid: 9161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-59.5 + parent: 3564 + - uid: 9162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-57.5 + parent: 3564 + - uid: 9163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-58.5 + parent: 3564 + - uid: 9164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-59.5 + parent: 3564 + - uid: 9165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-57.5 + parent: 3564 + - uid: 9166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-57.5 + parent: 3564 + - uid: 9167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-61.5 + parent: 3564 + - uid: 9168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-60.5 + parent: 3564 + - uid: 9169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-62.5 + parent: 3564 + - uid: 9170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-62.5 + parent: 3564 + - uid: 9171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-61.5 + parent: 3564 + - uid: 9172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-62.5 + parent: 3564 + - uid: 9173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-61.5 + parent: 3564 + - uid: 9174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-62.5 + parent: 3564 + - uid: 9175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-51.5 + parent: 3564 + - uid: 9176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-51.5 + parent: 3564 + - uid: 9177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-51.5 + parent: 3564 + - uid: 9178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-51.5 + parent: 3564 + - uid: 9179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-51.5 + parent: 3564 + - uid: 9180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-51.5 + parent: 3564 + - uid: 9181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-51.5 + parent: 3564 + - uid: 9182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-51.5 + parent: 3564 + - uid: 9183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-55.5 + parent: 3564 + - uid: 9184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-56.5 + parent: 3564 + - uid: 9185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-55.5 + parent: 3564 + - uid: 9186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-56.5 + parent: 3564 + - uid: 9187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-55.5 + parent: 3564 + - uid: 9188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-56.5 + parent: 3564 + - uid: 9189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-55.5 + parent: 3564 + - uid: 9190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-56.5 + parent: 3564 + - uid: 9191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-55.5 + parent: 3564 + - uid: 9192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-56.5 + parent: 3564 + - uid: 9193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-56.5 + parent: 3564 + - uid: 9194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-56.5 + parent: 3564 + - uid: 9195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-56.5 + parent: 3564 + - uid: 9196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-56.5 + parent: 3564 + - uid: 9197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-56.5 + parent: 3564 + - uid: 9198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-56.5 + parent: 3564 + - uid: 9199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-56.5 + parent: 3564 + - uid: 9200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-57.5 + parent: 3564 + - uid: 9201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-58.5 + parent: 3564 + - uid: 9202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-59.5 + parent: 3564 + - uid: 9203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-60.5 + parent: 3564 + - uid: 9204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-61.5 + parent: 3564 + - uid: 9205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-62.5 + parent: 3564 + - uid: 9206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-62.5 + parent: 3564 + - uid: 9207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-62.5 + parent: 3564 + - uid: 9208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-62.5 + parent: 3564 + - uid: 9209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-62.5 + parent: 3564 + - uid: 9210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-62.5 + parent: 3564 + - uid: 9211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-62.5 + parent: 3564 + - uid: 9212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-62.5 + parent: 3564 + - uid: 9213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-62.5 + parent: 3564 + - uid: 9214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-63.5 + parent: 3564 + - uid: 9215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-64.5 + parent: 3564 + - uid: 9216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-65.5 + parent: 3564 + - uid: 9217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-66.5 + parent: 3564 + - uid: 9218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-67.5 + parent: 3564 + - uid: 9219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-68.5 + parent: 3564 + - uid: 9220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-69.5 + parent: 3564 + - uid: 9221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-70.5 + parent: 3564 + - uid: 9222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-70.5 + parent: 3564 + - uid: 9223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-70.5 + parent: 3564 + - uid: 9224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-70.5 + parent: 3564 + - uid: 9225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-70.5 + parent: 3564 + - uid: 9226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-70.5 + parent: 3564 + - uid: 9227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-70.5 + parent: 3564 + - uid: 9228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-70.5 + parent: 3564 + - uid: 9229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-70.5 + parent: 3564 + - uid: 9230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-70.5 + parent: 3564 + - uid: 9231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-70.5 + parent: 3564 + - uid: 9232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-70.5 + parent: 3564 + - uid: 9233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-70.5 + parent: 3564 + - uid: 9234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-71.5 + parent: 3564 + - uid: 9235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-72.5 + parent: 3564 + - uid: 9236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-70.5 + parent: 3564 + - uid: 9237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-71.5 + parent: 3564 + - uid: 9238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-72.5 + parent: 3564 + - uid: 9239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-70.5 + parent: 3564 + - uid: 9240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-70.5 + parent: 3564 + - uid: 9241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-70.5 + parent: 3564 + - uid: 9242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-64.5 + parent: 3564 + - uid: 9243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-64.5 + parent: 3564 + - uid: 9244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-64.5 + parent: 3564 + - uid: 9245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-64.5 + parent: 3564 + - uid: 9246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-64.5 + parent: 3564 + - uid: 9247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-65.5 + parent: 3564 + - uid: 9248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-66.5 + parent: 3564 + - uid: 9249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-63.5 + parent: 3564 + - uid: 9250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-69.5 + parent: 3564 + - uid: 9251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-68.5 + parent: 3564 + - uid: 9252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-68.5 + parent: 3564 + - uid: 9253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-68.5 + parent: 3564 + - uid: 9254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-68.5 + parent: 3564 + - uid: 9255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-68.5 + parent: 3564 + - uid: 9256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-68.5 + parent: 3564 + - uid: 9257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-68.5 + parent: 3564 + - uid: 9258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-67.5 + parent: 3564 + - uid: 9259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-66.5 + parent: 3564 + - uid: 9260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-65.5 + parent: 3564 + - uid: 9261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-64.5 + parent: 3564 + - uid: 9262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-64.5 + parent: 3564 + - uid: 9263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-64.5 + parent: 3564 + - uid: 9264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-63.5 + parent: 3564 + - uid: 9265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-62.5 + parent: 3564 + - uid: 9266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-61.5 + parent: 3564 + - uid: 9267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-60.5 + parent: 3564 + - uid: 9268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-59.5 + parent: 3564 + - uid: 9269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-58.5 + parent: 3564 + - uid: 9270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-57.5 + parent: 3564 + - uid: 9271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-56.5 + parent: 3564 + - uid: 9272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-56.5 + parent: 3564 + - uid: 9273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-56.5 + parent: 3564 + - uid: 9274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-56.5 + parent: 3564 + - uid: 9275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-56.5 + parent: 3564 + - uid: 9276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-54.5 + parent: 3564 + - uid: 9277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-53.5 + parent: 3564 + - uid: 9278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-52.5 + parent: 3564 + - uid: 9279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-51.5 + parent: 3564 + - uid: 9280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-50.5 + parent: 3564 + - uid: 9281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-49.5 + parent: 3564 + - uid: 9282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-48.5 + parent: 3564 + - uid: 9283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-47.5 + parent: 3564 + - uid: 9284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-46.5 + parent: 3564 + - uid: 9285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-45.5 + parent: 3564 + - uid: 9286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-44.5 + parent: 3564 + - uid: 9287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-43.5 + parent: 3564 + - uid: 9288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-42.5 + parent: 3564 + - uid: 9289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-41.5 + parent: 3564 + - uid: 9290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-40.5 + parent: 3564 + - uid: 9291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-39.5 + parent: 3564 + - uid: 9292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-38.5 + parent: 3564 + - uid: 9293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-37.5 + parent: 3564 + - uid: 9294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-36.5 + parent: 3564 + - uid: 9295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-35.5 + parent: 3564 + - uid: 9296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-34.5 + parent: 3564 + - uid: 9297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-33.5 + parent: 3564 + - uid: 9298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-32.5 + parent: 3564 + - uid: 9299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-31.5 + parent: 3564 + - uid: 9300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-31.5 + parent: 3564 + - uid: 9301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-31.5 + parent: 3564 + - uid: 9302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-31.5 + parent: 3564 + - uid: 9303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-31.5 + parent: 3564 + - uid: 9304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-34.5 + parent: 3564 + - uid: 9305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-34.5 + parent: 3564 + - uid: 9306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-34.5 + parent: 3564 + - uid: 9307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-34.5 + parent: 3564 + - uid: 9308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-34.5 + parent: 3564 + - uid: 9309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-34.5 + parent: 3564 + - uid: 9310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-34.5 + parent: 3564 + - uid: 9311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-31.5 + parent: 3564 + - uid: 9312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-31.5 + parent: 3564 + - uid: 9313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-31.5 + parent: 3564 + - uid: 9314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-31.5 + parent: 3564 + - uid: 9315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-35.5 + parent: 3564 + - uid: 9316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-35.5 + parent: 3564 + - uid: 9317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-35.5 + parent: 3564 + - uid: 9318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-35.5 + parent: 3564 + - uid: 9319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-39.5 + parent: 3564 + - uid: 9320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-39.5 + parent: 3564 + - uid: 9321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-39.5 + parent: 3564 + - uid: 9322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-39.5 + parent: 3564 + - uid: 9323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-43.5 + parent: 3564 + - uid: 9324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-43.5 + parent: 3564 + - uid: 9325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-43.5 + parent: 3564 + - uid: 9326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-43.5 + parent: 3564 + - uid: 9327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-47.5 + parent: 3564 + - uid: 9328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-47.5 + parent: 3564 + - uid: 9329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-47.5 + parent: 3564 + - uid: 9330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-47.5 + parent: 3564 + - uid: 9331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-32.5 + parent: 3564 + - uid: 9332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-33.5 + parent: 3564 + - uid: 9333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-34.5 + parent: 3564 + - uid: 9334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-30.5 + parent: 3564 + - uid: 9335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-31.5 + parent: 3564 + - uid: 9336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-30.5 + parent: 3564 + - uid: 9337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-31.5 + parent: 3564 + - uid: 9338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-31.5 + parent: 3564 + - uid: 9339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-30.5 + parent: 3564 + - uid: 9340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-31.5 + parent: 3564 + - uid: 9341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-30.5 + parent: 3564 + - uid: 9342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-31.5 + parent: 3564 + - uid: 9343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-30.5 + parent: 3564 + - uid: 9344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-29.5 + parent: 3564 + - uid: 9345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-28.5 + parent: 3564 + - uid: 9346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-27.5 + parent: 3564 + - uid: 9347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-26.5 + parent: 3564 + - uid: 9348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-25.5 + parent: 3564 + - uid: 9349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-24.5 + parent: 3564 + - uid: 9350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-23.5 + parent: 3564 + - uid: 9351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-22.5 + parent: 3564 + - uid: 9352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-21.5 + parent: 3564 + - uid: 9353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-20.5 + parent: 3564 + - uid: 9354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-19.5 + parent: 3564 + - uid: 9355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-19.5 + parent: 3564 + - uid: 9356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-19.5 + parent: 3564 + - uid: 9357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-19.5 + parent: 3564 + - uid: 9358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-19.5 + parent: 3564 + - uid: 9359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-19.5 + parent: 3564 + - uid: 9360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-19.5 + parent: 3564 + - uid: 9361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-19.5 + parent: 3564 + - uid: 9362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-19.5 + parent: 3564 + - uid: 9363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-19.5 + parent: 3564 + - uid: 9364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-19.5 + parent: 3564 + - uid: 9365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-19.5 + parent: 3564 + - uid: 9366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-19.5 + parent: 3564 + - uid: 9367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-20.5 + parent: 3564 + - uid: 9368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-22.5 + parent: 3564 + - uid: 9369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-21.5 + parent: 3564 + - uid: 9370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-23.5 + parent: 3564 + - uid: 9371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-30.5 + parent: 3564 + - uid: 9372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-30.5 + parent: 3564 + - uid: 9373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-30.5 + parent: 3564 + - uid: 9374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-30.5 + parent: 3564 + - uid: 9375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-30.5 + parent: 3564 + - uid: 9376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-30.5 + parent: 3564 + - uid: 9377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-30.5 + parent: 3564 + - uid: 9378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-31.5 + parent: 3564 + - uid: 9379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-31.5 + parent: 3564 + - uid: 9380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-19.5 + parent: 3564 + - uid: 9381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-20.5 + parent: 3564 + - uid: 9382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-21.5 + parent: 3564 + - uid: 9383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-22.5 + parent: 3564 + - uid: 9384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-23.5 + parent: 3564 + - uid: 9385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-24.5 + parent: 3564 + - uid: 9386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-24.5 + parent: 3564 + - uid: 9387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-24.5 + parent: 3564 + - uid: 9388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-24.5 + parent: 3564 + - uid: 9389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-24.5 + parent: 3564 + - uid: 9390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-24.5 + parent: 3564 + - uid: 9391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-24.5 + parent: 3564 + - uid: 9392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-24.5 + parent: 3564 + - uid: 9393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-24.5 + parent: 3564 + - uid: 9394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-24.5 + parent: 3564 + - uid: 9395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-24.5 + parent: 3564 + - uid: 9396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-24.5 + parent: 3564 + - uid: 9397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-24.5 + parent: 3564 + - uid: 9398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-34.5 + parent: 3564 + - uid: 9399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-33.5 + parent: 3564 + - uid: 9400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-32.5 + parent: 3564 + - uid: 9401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-31.5 + parent: 3564 + - uid: 9402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-30.5 + parent: 3564 + - uid: 9403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-29.5 + parent: 3564 + - uid: 9404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-28.5 + parent: 3564 + - uid: 9405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-27.5 + parent: 3564 + - uid: 9406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-26.5 + parent: 3564 + - uid: 9407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-25.5 + parent: 3564 + - uid: 9408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-16.5 + parent: 3564 + - uid: 9409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-16.5 + parent: 3564 + - uid: 9410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-16.5 + parent: 3564 + - uid: 9411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-16.5 + parent: 3564 + - uid: 9412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-17.5 + parent: 3564 + - uid: 9413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-18.5 + parent: 3564 + - uid: 9414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-19.5 + parent: 3564 + - uid: 9415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-20.5 + parent: 3564 + - uid: 9416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-21.5 + parent: 3564 + - uid: 9417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-22.5 + parent: 3564 + - uid: 9418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-23.5 + parent: 3564 + - uid: 9419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-15.5 + parent: 3564 + - uid: 9420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-15.5 + parent: 3564 + - uid: 9421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-15.5 + parent: 3564 + - uid: 9422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-15.5 + parent: 3564 + - uid: 9423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-15.5 + parent: 3564 + - uid: 9424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-15.5 + parent: 3564 + - uid: 9425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-15.5 + parent: 3564 + - uid: 9426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-15.5 + parent: 3564 + - uid: 9427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-15.5 + parent: 3564 + - uid: 9428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-15.5 + parent: 3564 + - uid: 9429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-15.5 + parent: 3564 + - uid: 9430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-15.5 + parent: 3564 + - uid: 9431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-16.5 + parent: 3564 + - uid: 9432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-17.5 + parent: 3564 + - uid: 9433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-18.5 + parent: 3564 - proto: WallReinforcedRust entities: + - uid: 135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-27.5 + parent: 2 + - uid: 139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-26.5 + parent: 2 - uid: 496 components: - type: Transform @@ -48244,6 +67789,18 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,57.5 parent: 2 + - uid: 2423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-17.5 + parent: 2 + - uid: 2496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-15.5 + parent: 2 - uid: 2566 components: - type: Transform @@ -48298,12 +67855,36 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,57.5 parent: 2 + - uid: 2626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-14.5 + parent: 2 + - uid: 2630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-16.5 + parent: 2 - uid: 2781 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,57.5 parent: 2 + - uid: 2786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-19.5 + parent: 2 + - uid: 2791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-21.5 + parent: 2 - uid: 3089 components: - type: Transform @@ -48505,6 +68086,18 @@ entities: - type: Transform pos: 16.5,31.5 parent: 2 + - uid: 7228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-20.5 + parent: 2 + - uid: 7230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-22.5 + parent: 2 - uid: 7237 components: - type: Transform @@ -48595,6 +68188,60 @@ entities: rot: -1.5707963267948966 rad pos: 67.5,-12.5 parent: 2 + - uid: 7339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-18.5 + parent: 2 + - uid: 7388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-25.5 + parent: 2 + - uid: 7397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-28.5 + parent: 2 + - uid: 7399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-28.5 + parent: 2 + - uid: 7401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-28.5 + parent: 2 + - uid: 7402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-28.5 + parent: 2 + - uid: 7403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-28.5 + parent: 2 + - uid: 7404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-28.5 + parent: 2 + - uid: 7405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-28.5 + parent: 2 - proto: WallSolid entities: - uid: 3 @@ -48615,7 +68262,7 @@ entities: - uid: 22 components: - type: Transform - pos: 16.5,24.5 + pos: 15.5,32.5 parent: 2 - uid: 23 components: @@ -48707,6 +68354,11 @@ entities: - type: Transform pos: 21.5,-6.5 parent: 2 + - uid: 88 + components: + - type: Transform + pos: 15.5,30.5 + parent: 2 - uid: 90 components: - type: Transform @@ -48757,11 +68409,6 @@ entities: - type: Transform pos: 12.5,4.5 parent: 2 - - uid: 102 - components: - - type: Transform - pos: 13.5,4.5 - parent: 2 - uid: 103 components: - type: Transform @@ -48782,11 +68429,6 @@ entities: - type: Transform pos: 8.5,4.5 parent: 2 - - uid: 107 - components: - - type: Transform - pos: 9.5,4.5 - parent: 2 - uid: 108 components: - type: Transform @@ -48852,6 +68494,11 @@ entities: - type: Transform pos: 15.5,-13.5 parent: 2 + - uid: 137 + components: + - type: Transform + pos: 35.5,29.5 + parent: 2 - uid: 142 components: - type: Transform @@ -48862,11 +68509,26 @@ entities: - type: Transform pos: 18.5,-13.5 parent: 2 + - uid: 156 + components: + - type: Transform + pos: 36.5,19.5 + parent: 2 + - uid: 157 + components: + - type: Transform + pos: 31.5,21.5 + parent: 2 - uid: 158 components: - type: Transform pos: 17.5,-4.5 parent: 2 + - uid: 159 + components: + - type: Transform + pos: 30.5,21.5 + parent: 2 - uid: 163 components: - type: Transform @@ -48927,6 +68589,11 @@ entities: - type: Transform pos: 14.5,-12.5 parent: 2 + - uid: 205 + components: + - type: Transform + pos: 11.5,23.5 + parent: 2 - uid: 206 components: - type: Transform @@ -48987,6 +68654,11 @@ entities: - type: Transform pos: 8.5,-4.5 parent: 2 + - uid: 252 + components: + - type: Transform + pos: 21.5,32.5 + parent: 2 - uid: 264 components: - type: Transform @@ -49252,6 +68924,11 @@ entities: - type: Transform pos: 6.5,17.5 parent: 2 + - uid: 457 + components: + - type: Transform + pos: 11.5,21.5 + parent: 2 - uid: 458 components: - type: Transform @@ -49317,6 +68994,21 @@ entities: - type: Transform pos: 5.5,-9.5 parent: 2 + - uid: 490 + components: + - type: Transform + pos: 11.5,25.5 + parent: 2 + - uid: 491 + components: + - type: Transform + pos: 10.5,21.5 + parent: 2 + - uid: 492 + components: + - type: Transform + pos: 12.5,25.5 + parent: 2 - uid: 494 components: - type: Transform @@ -49352,16 +69044,36 @@ entities: - type: Transform pos: 7.5,8.5 parent: 2 + - uid: 515 + components: + - type: Transform + pos: 15.5,31.5 + parent: 2 - uid: 520 components: - type: Transform pos: 8.5,-9.5 parent: 2 + - uid: 535 + components: + - type: Transform + pos: 14.5,32.5 + parent: 2 + - uid: 539 + components: + - type: Transform + pos: 10.5,23.5 + parent: 2 - uid: 542 components: - type: Transform pos: 6.5,16.5 parent: 2 + - uid: 545 + components: + - type: Transform + pos: 11.5,27.5 + parent: 2 - uid: 549 components: - type: Transform @@ -49422,6 +69134,11 @@ entities: - type: Transform pos: 16.5,17.5 parent: 2 + - uid: 579 + components: + - type: Transform + pos: 12.5,27.5 + parent: 2 - uid: 580 components: - type: Transform @@ -49432,6 +69149,11 @@ entities: - type: Transform pos: 20.5,17.5 parent: 2 + - uid: 586 + components: + - type: Transform + pos: 31.5,29.5 + parent: 2 - uid: 587 components: - type: Transform @@ -49447,11 +69169,6 @@ entities: - type: Transform pos: 27.5,17.5 parent: 2 - - uid: 591 - components: - - type: Transform - pos: 50.5,19.5 - parent: 2 - uid: 594 components: - type: Transform @@ -49542,26 +69259,21 @@ entities: - type: Transform pos: 16.5,19.5 parent: 2 - - uid: 629 - components: - - type: Transform - pos: 24.5,14.5 - parent: 2 - uid: 630 components: - type: Transform pos: 13.5,-9.5 parent: 2 + - uid: 631 + components: + - type: Transform + pos: 17.5,25.5 + parent: 2 - uid: 632 components: - type: Transform pos: 15.5,-9.5 parent: 2 - - uid: 634 - components: - - type: Transform - pos: 24.5,16.5 - parent: 2 - uid: 645 components: - type: Transform @@ -49572,46 +69284,6 @@ entities: - type: Transform pos: 30.5,7.5 parent: 2 - - uid: 662 - components: - - type: Transform - pos: 25.5,20.5 - parent: 2 - - uid: 664 - components: - - type: Transform - pos: 26.5,20.5 - parent: 2 - - uid: 665 - components: - - type: Transform - pos: 28.5,20.5 - parent: 2 - - uid: 667 - components: - - type: Transform - pos: 32.5,22.5 - parent: 2 - - uid: 668 - components: - - type: Transform - pos: 32.5,20.5 - parent: 2 - - uid: 671 - components: - - type: Transform - pos: 35.5,20.5 - parent: 2 - - uid: 672 - components: - - type: Transform - pos: 36.5,20.5 - parent: 2 - - uid: 675 - components: - - type: Transform - pos: 33.5,-8.5 - parent: 2 - uid: 677 components: - type: Transform @@ -49635,7 +69307,7 @@ entities: - uid: 681 components: - type: Transform - pos: 16.5,23.5 + pos: 16.5,25.5 parent: 2 - uid: 702 components: @@ -49695,28 +69367,18 @@ entities: - uid: 757 components: - type: Transform - pos: 16.5,20.5 + pos: 18.5,19.5 parent: 2 - - uid: 761 + - uid: 759 components: - type: Transform - pos: 24.5,15.5 + pos: 15.5,29.5 parent: 2 - uid: 769 components: - type: Transform pos: -0.5,16.5 parent: 2 - - uid: 808 - components: - - type: Transform - pos: 32.5,-8.5 - parent: 2 - - uid: 822 - components: - - type: Transform - pos: 49.5,14.5 - parent: 2 - uid: 824 components: - type: Transform @@ -49772,20 +69434,15 @@ entities: - type: Transform pos: 36.5,22.5 parent: 2 - - uid: 972 - components: - - type: Transform - pos: 35.5,22.5 - parent: 2 - uid: 973 components: - type: Transform - pos: 35.5,21.5 + pos: 29.5,21.5 parent: 2 - uid: 974 components: - type: Transform - pos: 36.5,21.5 + pos: 25.5,21.5 parent: 2 - uid: 975 components: @@ -49822,11 +69479,6 @@ entities: - type: Transform pos: 40.5,29.5 parent: 2 - - uid: 992 - components: - - type: Transform - pos: 35.5,-8.5 - parent: 2 - uid: 1015 components: - type: Transform @@ -49922,11 +69574,6 @@ entities: - type: Transform pos: 26.5,-13.5 parent: 2 - - uid: 1070 - components: - - type: Transform - pos: 49.5,13.5 - parent: 2 - uid: 1072 components: - type: Transform @@ -50052,6 +69699,11 @@ entities: - type: Transform pos: 14.5,7.5 parent: 2 + - uid: 1170 + components: + - type: Transform + pos: 15.5,27.5 + parent: 2 - uid: 1171 components: - type: Transform @@ -50137,11 +69789,6 @@ entities: - type: Transform pos: 50.5,-0.5 parent: 2 - - uid: 1246 - components: - - type: Transform - pos: 50.5,-1.5 - parent: 2 - uid: 1276 components: - type: Transform @@ -50232,11 +69879,6 @@ entities: - type: Transform pos: 36.5,-12.5 parent: 2 - - uid: 1400 - components: - - type: Transform - pos: 30.5,-12.5 - parent: 2 - uid: 1401 components: - type: Transform @@ -50322,105 +69964,75 @@ entities: - type: Transform pos: 25.5,-13.5 parent: 2 + - uid: 1452 + components: + - type: Transform + pos: 21.5,-8.5 + parent: 2 - uid: 1458 components: - type: Transform pos: 44.5,-13.5 parent: 2 - - uid: 1465 - components: - - type: Transform - pos: 27.5,39.5 - parent: 2 - uid: 1467 components: - type: Transform - pos: 30.5,39.5 + pos: 28.5,32.5 parent: 2 - - uid: 1468 + - uid: 1478 components: - type: Transform - pos: 31.5,39.5 + pos: 12.5,23.5 parent: 2 - - uid: 1469 + - uid: 1484 components: - type: Transform - pos: 32.5,39.5 + pos: 24.5,8.5 parent: 2 - - uid: 1470 + - uid: 1486 components: - type: Transform - pos: 32.5,40.5 + pos: 26.5,8.5 parent: 2 - - uid: 1471 + - uid: 1498 components: - type: Transform - pos: 32.5,41.5 + pos: 35.5,15.5 parent: 2 - - uid: 1473 + - uid: 1515 components: - type: Transform - pos: 28.5,39.5 - parent: 2 - - uid: 1474 - components: - - type: Transform - pos: 27.5,20.5 - parent: 2 - - uid: 1490 - components: - - type: Transform - pos: 32.5,-9.5 - parent: 2 - - uid: 1504 - components: - - type: Transform - pos: 49.5,12.5 - parent: 2 - - uid: 1506 - components: - - type: Transform - pos: 51.5,12.5 - parent: 2 - - uid: 1507 - components: - - type: Transform - pos: 51.5,11.5 + pos: 51.5,22.5 parent: 2 - uid: 1522 components: - type: Transform pos: 22.5,37.5 parent: 2 - - uid: 1551 + - uid: 1555 components: - type: Transform - pos: 51.5,9.5 - parent: 2 - - uid: 1553 - components: - - type: Transform - pos: 51.5,8.5 + pos: 49.5,-0.5 parent: 2 - uid: 1568 components: - type: Transform pos: 12.5,17.5 parent: 2 - - uid: 1571 + - uid: 1574 components: - type: Transform - pos: 36.5,41.5 + pos: 26.5,32.5 parent: 2 - - uid: 1572 + - uid: 1575 components: - type: Transform - pos: 36.5,40.5 + pos: 27.5,32.5 parent: 2 - - uid: 1577 + - uid: 1581 components: - type: Transform - pos: 50.5,21.5 + pos: 15.5,21.5 parent: 2 - uid: 1586 components: @@ -50430,52 +70042,17 @@ entities: - uid: 1594 components: - type: Transform - pos: 36.5,30.5 - parent: 2 - - uid: 1595 - components: - - type: Transform - pos: 35.5,29.5 + pos: 21.5,33.5 parent: 2 - uid: 1596 components: - type: Transform pos: 35.5,30.5 parent: 2 - - uid: 1602 + - uid: 1618 components: - type: Transform - pos: 43.5,33.5 - parent: 2 - - uid: 1603 - components: - - type: Transform - pos: 43.5,34.5 - parent: 2 - - uid: 1604 - components: - - type: Transform - pos: 43.5,35.5 - parent: 2 - - uid: 1605 - components: - - type: Transform - pos: 44.5,35.5 - parent: 2 - - uid: 1606 - components: - - type: Transform - pos: 32.5,-5.5 - parent: 2 - - uid: 1607 - components: - - type: Transform - pos: 47.5,35.5 - parent: 2 - - uid: 1608 - components: - - type: Transform - pos: 46.5,35.5 + pos: 22.5,21.5 parent: 2 - uid: 1627 components: @@ -50487,10 +70064,10 @@ entities: - type: Transform pos: 35.5,28.5 parent: 2 - - uid: 1713 + - uid: 1633 components: - type: Transform - pos: 30.5,24.5 + pos: 35.5,32.5 parent: 2 - uid: 1714 components: @@ -50502,41 +70079,31 @@ entities: - type: Transform pos: 28.5,21.5 parent: 2 - - uid: 1720 + - uid: 1744 components: - type: Transform - pos: 28.5,24.5 - parent: 2 - - uid: 1729 - components: - - type: Transform - pos: 30.5,32.5 - parent: 2 - - uid: 1742 - components: - - type: Transform - pos: 28.5,22.5 + pos: 21.5,21.5 parent: 2 - uid: 1745 components: - type: Transform - pos: 32.5,24.5 + pos: 40.5,-13.5 parent: 2 - uid: 1754 components: - type: Transform - pos: 32.5,21.5 + pos: 39.5,-13.5 + parent: 2 + - uid: 1759 + components: + - type: Transform + pos: 24.5,21.5 parent: 2 - uid: 1761 components: - type: Transform pos: 31.5,24.5 parent: 2 - - uid: 1762 - components: - - type: Transform - pos: 29.5,24.5 - parent: 2 - uid: 1763 components: - type: Transform @@ -50547,6 +70114,41 @@ entities: - type: Transform pos: 31.5,25.5 parent: 2 + - uid: 1770 + components: + - type: Transform + pos: 23.5,21.5 + parent: 2 + - uid: 1776 + components: + - type: Transform + pos: 12.5,32.5 + parent: 2 + - uid: 1793 + components: + - type: Transform + pos: 15.5,20.5 + parent: 2 + - uid: 1794 + components: + - type: Transform + pos: 18.5,17.5 + parent: 2 + - uid: 1795 + components: + - type: Transform + pos: 18.5,25.5 + parent: 2 + - uid: 1797 + components: + - type: Transform + pos: 19.5,21.5 + parent: 2 + - uid: 1798 + components: + - type: Transform + pos: 19.5,22.5 + parent: 2 - uid: 1800 components: - type: Transform @@ -50560,37 +70162,32 @@ entities: - uid: 1803 components: - type: Transform - pos: 10.5,31.5 + pos: 19.5,25.5 parent: 2 - uid: 1804 components: - type: Transform - pos: 10.5,30.5 + pos: 15.5,22.5 parent: 2 - uid: 1806 components: - type: Transform - pos: 10.5,29.5 - parent: 2 - - uid: 1807 - components: - - type: Transform - pos: 11.5,29.5 + pos: 11.5,32.5 parent: 2 - uid: 1808 components: - type: Transform - pos: 12.5,29.5 + pos: 12.5,21.5 parent: 2 - uid: 1809 components: - type: Transform - pos: 14.5,29.5 + pos: 15.5,28.5 parent: 2 - uid: 1810 components: - type: Transform - pos: 15.5,29.5 + pos: 15.5,26.5 parent: 2 - uid: 1833 components: @@ -50622,16 +70219,61 @@ entities: - type: Transform pos: 49.5,-4.5 parent: 2 + - uid: 1897 + components: + - type: Transform + pos: 13.5,32.5 + parent: 2 + - uid: 1909 + components: + - type: Transform + pos: 15.5,24.5 + parent: 2 + - uid: 1911 + components: + - type: Transform + pos: 10.5,25.5 + parent: 2 + - uid: 1921 + components: + - type: Transform + pos: 15.5,25.5 + parent: 2 + - uid: 1924 + components: + - type: Transform + pos: 19.5,23.5 + parent: 2 - uid: 1926 components: - type: Transform pos: 53.5,19.5 parent: 2 + - uid: 1940 + components: + - type: Transform + pos: 19.5,24.5 + parent: 2 - uid: 1944 components: - type: Transform pos: 49.5,18.5 parent: 2 + - uid: 1948 + components: + - type: Transform + pos: 10.5,27.5 + parent: 2 + - uid: 1949 + components: + - type: Transform + pos: 11.5,28.5 + parent: 2 + - uid: 1950 + components: + - type: Transform + pos: 11.5,31.5 + parent: 2 - uid: 1969 components: - type: Transform @@ -50652,6 +70294,11 @@ entities: - type: Transform pos: 57.5,3.5 parent: 2 + - uid: 1981 + components: + - type: Transform + pos: 19.5,-4.5 + parent: 2 - uid: 1982 components: - type: Transform @@ -50722,6 +70369,11 @@ entities: - type: Transform pos: 62.5,19.5 parent: 2 + - uid: 2042 + components: + - type: Transform + pos: 65.5,25.5 + parent: 2 - uid: 2060 components: - type: Transform @@ -50767,11 +70419,6 @@ entities: - type: Transform pos: 55.5,39.5 parent: 2 - - uid: 2085 - components: - - type: Transform - pos: 55.5,38.5 - parent: 2 - uid: 2086 components: - type: Transform @@ -50817,16 +70464,6 @@ entities: - type: Transform pos: 49.5,-12.5 parent: 2 - - uid: 2207 - components: - - type: Transform - pos: 42.5,21.5 - parent: 2 - - uid: 2208 - components: - - type: Transform - pos: 41.5,21.5 - parent: 2 - uid: 2209 components: - type: Transform @@ -50907,26 +70544,16 @@ entities: - type: Transform pos: 44.5,21.5 parent: 2 - - uid: 2266 + - uid: 2258 components: - type: Transform - pos: 44.5,26.5 + pos: 25.5,8.5 parent: 2 - uid: 2268 components: - type: Transform pos: 43.5,26.5 parent: 2 - - uid: 2269 - components: - - type: Transform - pos: 47.5,26.5 - parent: 2 - - uid: 2270 - components: - - type: Transform - pos: 46.5,26.5 - parent: 2 - uid: 2272 components: - type: Transform @@ -51177,6 +70804,11 @@ entities: - type: Transform pos: 59.5,41.5 parent: 2 + - uid: 2543 + components: + - type: Transform + pos: 26.5,21.5 + parent: 2 - uid: 2544 components: - type: Transform @@ -51232,6 +70864,11 @@ entities: - type: Transform pos: 58.5,43.5 parent: 2 + - uid: 2556 + components: + - type: Transform + pos: 27.5,21.5 + parent: 2 - uid: 2558 components: - type: Transform @@ -51322,55 +70959,40 @@ entities: - type: Transform pos: 61.5,63.5 parent: 2 - - uid: 2622 - components: - - type: Transform - pos: 43.5,-9.5 - parent: 2 - - uid: 2625 - components: - - type: Transform - pos: 43.5,-10.5 - parent: 2 - uid: 2743 components: - type: Transform pos: 9.5,-9.5 parent: 2 - - uid: 2777 - components: - - type: Transform - pos: 22.5,-12.5 - parent: 2 - uid: 2778 components: - type: Transform pos: 22.5,-13.5 parent: 2 - - uid: 2783 + - uid: 2864 components: - type: Transform - pos: 11.5,-10.5 + pos: 36.5,-10.5 parent: 2 - - uid: 2784 + - uid: 2902 components: - type: Transform - pos: 11.5,-12.5 + pos: 36.5,20.5 parent: 2 - - uid: 2785 + - uid: 2905 components: - type: Transform - pos: 8.5,-10.5 + pos: 36.5,32.5 parent: 2 - - uid: 2786 + - uid: 2910 components: - type: Transform - pos: 8.5,-12.5 + pos: 36.5,28.5 parent: 2 - - uid: 2859 + - uid: 2911 components: - type: Transform - pos: 24.5,-2.5 + pos: 38.5,28.5 parent: 2 - uid: 3018 components: @@ -51397,50 +71019,75 @@ entities: - type: Transform pos: -3.5,16.5 parent: 2 + - uid: 3103 + components: + - type: Transform + pos: 31.5,23.5 + parent: 2 + - uid: 3104 + components: + - type: Transform + pos: 31.5,22.5 + parent: 2 - uid: 3106 components: - type: Transform pos: 15.5,40.5 parent: 2 - - uid: 3232 + - uid: 3183 components: - type: Transform - pos: 24.5,0.5 - parent: 2 - - uid: 3245 - components: - - type: Transform - pos: 24.5,-1.5 - parent: 2 - - uid: 3249 - components: - - type: Transform - pos: 23.5,-2.5 - parent: 2 - - uid: 3394 - components: - - type: Transform - pos: 39.5,-10.5 + pos: 38.5,32.5 parent: 2 - uid: 3452 components: - type: Transform pos: 10.5,3.5 parent: 2 - - uid: 3818 + - uid: 3577 components: - type: Transform - pos: 41.5,-10.5 + pos: 55.5,38.5 parent: 2 - - uid: 3819 + - uid: 3693 components: - type: Transform - pos: 41.5,-9.5 + pos: 60.5,38.5 parent: 2 - - uid: 4006 + - uid: 3697 components: - type: Transform - pos: 39.5,-9.5 + pos: 42.5,22.5 + parent: 2 + - uid: 3698 + components: + - type: Transform + pos: 41.5,22.5 + parent: 2 + - uid: 3699 + components: + - type: Transform + pos: 40.5,22.5 + parent: 2 + - uid: 3761 + components: + - type: Transform + pos: 50.5,27.5 + parent: 2 + - uid: 3763 + components: + - type: Transform + pos: 50.5,28.5 + parent: 2 + - uid: 4243 + components: + - type: Transform + pos: 31.5,17.5 + parent: 2 + - uid: 4245 + components: + - type: Transform + pos: 29.5,17.5 parent: 2 - uid: 4249 components: @@ -51532,15 +71179,15 @@ entities: - type: Transform pos: 16.5,55.5 parent: 2 - - uid: 4510 + - uid: 4508 components: - type: Transform - pos: 20.5,20.5 + pos: 19.5,19.5 parent: 2 - - uid: 4512 + - uid: 4511 components: - type: Transform - pos: 24.5,20.5 + pos: 30.5,17.5 parent: 2 - uid: 4514 components: @@ -51677,6 +71324,11 @@ entities: - type: Transform pos: 57.5,45.5 parent: 2 + - uid: 4718 + components: + - type: Transform + pos: 60.5,40.5 + parent: 2 - uid: 4782 components: - type: Transform @@ -51692,6 +71344,11 @@ entities: - type: Transform pos: 45.5,-9.5 parent: 2 + - uid: 4811 + components: + - type: Transform + pos: 14.5,27.5 + parent: 2 - uid: 4929 components: - type: Transform @@ -51707,11 +71364,6 @@ entities: - type: Transform pos: 56.5,42.5 parent: 2 - - uid: 5232 - components: - - type: Transform - pos: 45.5,35.5 - parent: 2 - uid: 5355 components: - type: Transform @@ -51742,31 +71394,176 @@ entities: - type: Transform pos: 57.5,7.5 parent: 2 - - uid: 5633 - components: - - type: Transform - pos: 51.5,7.5 - parent: 2 - uid: 5725 components: - type: Transform pos: 31.5,32.5 parent: 2 + - uid: 5847 + components: + - type: Transform + pos: 30.5,32.5 + parent: 2 - uid: 6052 components: - type: Transform pos: 61.5,61.5 parent: 2 - - uid: 6149 + - uid: 6346 components: - type: Transform - pos: 38.5,30.5 + pos: 48.5,1.5 + parent: 2 + - uid: 6544 + components: + - type: Transform + pos: 9.5,1.5 + parent: 2 + - uid: 6646 + components: + - type: Transform + pos: 13.5,1.5 parent: 2 - uid: 6852 components: - type: Transform pos: -5.5,16.5 parent: 2 + - uid: 7124 + components: + - type: Transform + pos: 48.5,-0.5 + parent: 2 + - uid: 7161 + components: + - type: Transform + pos: 26.5,26.5 + parent: 2 + - uid: 7162 + components: + - type: Transform + pos: 25.5,26.5 + parent: 2 + - uid: 7164 + components: + - type: Transform + pos: 21.5,26.5 + parent: 2 + - uid: 7165 + components: + - type: Transform + pos: 22.5,26.5 + parent: 2 + - uid: 7357 + components: + - type: Transform + pos: 16.5,-4.5 + parent: 2 + - uid: 7735 + components: + - type: Transform + pos: 65.5,24.5 + parent: 2 + - uid: 7736 + components: + - type: Transform + pos: 65.5,23.5 + parent: 2 + - uid: 7737 + components: + - type: Transform + pos: 65.5,26.5 + parent: 2 + - uid: 7773 + components: + - type: Transform + pos: 65.5,27.5 + parent: 2 + - uid: 7813 + components: + - type: Transform + pos: 48.5,-1.5 + parent: 2 + - uid: 8434 + components: + - type: Transform + pos: 48.5,24.5 + parent: 2 + - uid: 8466 + components: + - type: Transform + pos: 55.5,37.5 + parent: 2 + - uid: 8467 + components: + - type: Transform + pos: 54.5,37.5 + parent: 2 + - uid: 11188 + components: + - type: Transform + pos: 65.5,22.5 + parent: 2 + - uid: 11189 + components: + - type: Transform + pos: 65.5,21.5 + parent: 2 + - uid: 11190 + components: + - type: Transform + pos: 65.5,20.5 + parent: 2 + - uid: 11191 + components: + - type: Transform + pos: 65.5,19.5 + parent: 2 + - uid: 11192 + components: + - type: Transform + pos: 65.5,18.5 + parent: 2 + - uid: 11193 + components: + - type: Transform + pos: 65.5,17.5 + parent: 2 + - uid: 11194 + components: + - type: Transform + pos: 65.5,16.5 + parent: 2 + - uid: 11195 + components: + - type: Transform + pos: 65.5,15.5 + parent: 2 + - uid: 11196 + components: + - type: Transform + pos: 65.5,14.5 + parent: 2 + - uid: 11197 + components: + - type: Transform + pos: 65.5,13.5 + parent: 2 + - uid: 11198 + components: + - type: Transform + pos: 65.5,12.5 + parent: 2 + - uid: 11199 + components: + - type: Transform + pos: 65.5,11.5 + parent: 2 + - uid: 11200 + components: + - type: Transform + pos: 65.5,10.5 + parent: 2 - proto: WallSolidRust entities: - uid: 209 @@ -52052,24 +71849,6 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,52.5 parent: 2 - - uid: 4508 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,20.5 - parent: 2 - - uid: 4509 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,20.5 - parent: 2 - - uid: 4511 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,20.5 - parent: 2 - uid: 4515 components: - type: Transform @@ -52356,13 +72135,6 @@ entities: rot: -1.5707963267948966 rad pos: 60.5,11.5 parent: 2 -- proto: WardrobeBlackFilled - entities: - - uid: 7009 - components: - - type: Transform - pos: 58.5,51.5 - parent: 2 - proto: WardrobeBlueFilled entities: - uid: 2158 @@ -52370,11 +72142,16 @@ entities: - type: Transform pos: 66.5,1.5 parent: 2 - - uid: 7010 + - uid: 7023 components: - type: Transform - pos: 58.5,50.5 + pos: 6.5,0.5 parent: 2 + - uid: 10443 + components: + - type: Transform + pos: 29.5,-57.5 + parent: 3564 - proto: WardrobeChapelFilled entities: - uid: 7271 @@ -52411,23 +72188,16 @@ entities: - type: Transform pos: 66.5,-1.5 parent: 2 - - uid: 7012 + - uid: 8585 components: - type: Transform - pos: 58.5,46.5 + pos: 8.5,0.5 parent: 2 - - uid: 7400 + - uid: 10444 components: - type: Transform - pos: 6.5,0.5 - parent: 2 -- proto: WardrobePinkFilled - entities: - - uid: 7011 - components: - - type: Transform - pos: 58.5,47.5 - parent: 2 + pos: 30.5,-57.5 + parent: 3564 - proto: WardrobePrisonFilled entities: - uid: 1359 @@ -52440,6 +72210,46 @@ entities: - type: Transform pos: 39.5,-2.5 parent: 2 + - uid: 10316 + components: + - type: Transform + pos: 31.5,-33.5 + parent: 3564 + - uid: 10317 + components: + - type: Transform + pos: 32.5,-33.5 + parent: 3564 + - uid: 10318 + components: + - type: Transform + pos: 33.5,-33.5 + parent: 3564 + - uid: 10319 + components: + - type: Transform + pos: 34.5,-33.5 + parent: 3564 + - uid: 10320 + components: + - type: Transform + pos: 35.5,-33.5 + parent: 3564 + - uid: 10321 + components: + - type: Transform + pos: 36.5,-33.5 + parent: 3564 + - uid: 10322 + components: + - type: Transform + pos: 37.5,-33.5 + parent: 3564 + - uid: 10442 + components: + - type: Transform + pos: 28.5,-57.5 + parent: 3564 - proto: WardrobeSecurityFilled entities: - uid: 7210 @@ -52447,51 +72257,81 @@ entities: - type: Transform pos: 38.5,-2.5 parent: 2 +- proto: WardrobeYellowFilled + entities: + - uid: 8296 + components: + - type: Transform + pos: 30.5,25.5 + parent: 2 - proto: WarningN2 entities: - - uid: 1746 + - uid: 358 components: - type: Transform - pos: 19.5,28.5 + pos: 26.5,-1.5 parent: 2 + - uid: 9672 + components: + - type: Transform + pos: 13.5,-59.5 + parent: 3564 - proto: WarningO2 entities: - - uid: 1682 + - uid: 326 components: - type: Transform - pos: 19.5,30.5 + pos: 24.5,-1.5 parent: 2 -- proto: WarningPlasma - entities: - - uid: 1683 + - uid: 9671 components: - type: Transform - pos: 22.5,30.5 - parent: 2 + pos: 11.5,-59.5 + parent: 3564 - proto: WarningWaste entities: - - uid: 1681 + - uid: 3111 components: - type: Transform - pos: 22.5,28.5 + pos: 24.5,-3.5 parent: 2 + - uid: 9687 + components: + - type: Transform + pos: 16.5,-62.5 + parent: 3564 - proto: WaterTankFull entities: - - uid: 2250 + - uid: 1474 components: - type: Transform - pos: -3.5,7.5 + pos: 37.5,23.5 + parent: 2 + - uid: 2054 + components: + - type: Transform + pos: 46.5,11.5 + parent: 2 + - uid: 3300 + components: + - type: Transform + pos: 31.5,-7.5 + parent: 2 + - uid: 3337 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 2 + - uid: 7385 + components: + - type: Transform + pos: 12.5,-7.5 parent: 2 - uid: 7463 components: - type: Transform pos: 49.5,30.5 parent: 2 - - uid: 7477 - components: - - type: Transform - pos: 37.5,22.5 - parent: 2 - uid: 7498 components: - type: Transform @@ -52507,40 +72347,13 @@ entities: - type: Transform pos: 15.5,-11.5 parent: 2 -- proto: WaterTankHighCapacity - entities: - - uid: 132 + - uid: 11515 components: - type: Transform - pos: 12.5,-8.5 - parent: 2 -- proto: WaterVaporCanister - entities: - - uid: 798 - components: - - type: MetaData - desc: A canister that can contain any type of gas. This one contains a good time. Use sparingly! - name: party gas canister - - type: Transform - pos: 27.5,-8.5 - parent: 2 - - type: Pullable - prevFixedRotation: True - - uid: 1593 - components: - - type: MetaData - desc: A canister that can contain any type of gas. This one contains a good time. Use sparingly! - name: party gas canister - - type: Transform - pos: 22.5,0.5 + pos: 22.5,33.5 parent: 2 - proto: WeaponCapacitorRecharger entities: - - uid: 2392 - components: - - type: Transform - pos: 48.5,-0.5 - parent: 2 - uid: 7133 components: - type: Transform @@ -52556,6 +72369,16 @@ entities: - type: Transform pos: 10.5,-7.5 parent: 2 + - uid: 10417 + components: + - type: Transform + pos: 33.5,-69.5 + parent: 3564 + - uid: 11218 + components: + - type: Transform + pos: 54.5,9.5 + parent: 2 - proto: WeaponEnergyTurretAI entities: - uid: 1540 @@ -52563,128 +72386,86 @@ entities: - type: Transform pos: 33.5,55.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8332 - uid: 1920 components: - type: Transform pos: 31.5,55.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8332 - uid: 2188 components: - type: Transform pos: 34.5,50.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8332 - uid: 2607 components: - type: Transform pos: 27.5,49.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8332 - uid: 2762 components: - type: Transform pos: 21.5,57.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8332 - uid: 2764 components: - type: Transform pos: 20.5,57.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8332 - uid: 2766 components: - type: Transform pos: 19.5,49.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8332 - uid: 2767 components: - type: Transform pos: 23.5,49.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8332 - uid: 7555 components: - type: Transform pos: 25.5,57.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8332 - uid: 7622 components: - type: Transform pos: 37.5,49.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8332 - uid: 7628 components: - type: Transform pos: 42.5,47.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8332 - uid: 7629 components: - type: Transform pos: 50.5,49.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8332 - uid: 7630 components: - type: Transform pos: 49.5,50.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8332 - proto: WeaponEnergyTurretAIControlPanel entities: - - uid: 8332 + - uid: 4557 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,59.5 + rot: 3.141592653589793 rad + pos: 29.5,49.5 + parent: 2 + - uid: 6155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,56.5 + parent: 2 + - uid: 6658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,46.5 parent: 2 - - type: DeviceList - devices: - - 2764 - - 2762 - - 2766 - - 2767 - - 7555 - - 2607 - - 2188 - - 1920 - - 1540 - - 7622 - - 7628 - - 7630 - - 7629 - proto: Welder entities: - uid: 7549 @@ -52694,26 +72475,51 @@ entities: parent: 2 - proto: WeldingFuelTankFull entities: - - uid: 1728 + - uid: 2164 components: - type: Transform - pos: 30.5,37.5 + pos: 36.5,30.5 parent: 2 - - uid: 2551 + - uid: 3274 components: - type: Transform - pos: 31.5,37.5 + pos: 47.5,27.5 parent: 2 - - uid: 7476 + - uid: 3311 components: - type: Transform - pos: 47.5,29.5 + pos: 12.5,-6.5 + parent: 2 + - uid: 3347 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 2 + - uid: 3919 + components: + - type: Transform + pos: 42.5,31.5 + parent: 2 + - uid: 6548 + components: + - type: Transform + pos: 33.5,-10.5 parent: 2 - uid: 7672 components: - type: Transform pos: 15.5,-12.5 parent: 2 + - uid: 8355 + components: + - type: Transform + pos: 34.5,25.5 + parent: 2 + - uid: 11168 + components: + - type: Transform + pos: 41.5,21.5 + parent: 2 - proto: Windoor entities: - uid: 32 @@ -52727,10 +72533,17 @@ entities: - type: Transform pos: 19.5,3.5 parent: 2 + - uid: 57 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,4.5 + parent: 2 - uid: 59 components: - type: Transform - pos: 43.5,21.5 + rot: 1.5707963267948966 rad + pos: 40.5,23.5 parent: 2 - uid: 80 components: @@ -52759,12 +72572,6 @@ entities: - type: Transform pos: 5.5,-4.5 parent: 2 - - uid: 241 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,5.5 - parent: 2 - uid: 257 components: - type: Transform @@ -52797,11 +72604,11 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,12.5 parent: 2 - - uid: 635 + - uid: 697 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,17.5 + rot: 1.5707963267948966 rad + pos: 14.5,5.5 parent: 2 - uid: 792 components: @@ -52818,11 +72625,46 @@ entities: - type: Transform pos: 17.5,8.5 parent: 2 - - uid: 1170 + - uid: 1291 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,17.5 + rot: 1.5707963267948966 rad + pos: 12.5,26.5 + parent: 2 + - uid: 1294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,20.5 + parent: 2 + - uid: 1370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-9.5 + parent: 2 + - uid: 1396 + components: + - type: Transform + pos: 61.5,42.5 + parent: 2 + - uid: 1692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,23.5 + parent: 2 + - uid: 1807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,22.5 + parent: 2 + - uid: 1922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,24.5 parent: 2 - uid: 1945 components: @@ -52842,10 +72684,10 @@ entities: rot: 3.141592653589793 rad pos: 58.5,11.5 parent: 2 - - uid: 2271 + - uid: 2132 components: - type: Transform - pos: 45.5,26.5 + pos: 37.5,32.5 parent: 2 - uid: 2380 components: @@ -52869,46 +72711,283 @@ entities: rot: 1.5707963267948966 rad pos: 40.5,16.5 parent: 2 + - uid: 3171 + components: + - type: Transform + pos: 37.5,28.5 + parent: 2 - uid: 3234 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,16.5 parent: 2 -- proto: WindoorHydroponicsLocked - entities: - - uid: 139 + - uid: 3313 components: - type: Transform - pos: 19.5,-4.5 + rot: 1.5707963267948966 rad + pos: 48.5,25.5 parent: 2 - - uid: 376 + - uid: 3760 + components: + - type: Transform + pos: 51.5,27.5 + parent: 2 + - uid: 3984 + components: + - type: Transform + pos: 61.5,40.5 + parent: 2 + - uid: 4417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,48.5 + parent: 2 + - uid: 5848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,31.5 + parent: 2 + - uid: 6338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-9.5 + parent: 2 + - uid: 6655 + components: + - type: Transform + pos: 43.5,35.5 + parent: 2 + - uid: 7157 + components: + - type: Transform + pos: 5.5,8.5 + parent: 2 + - uid: 7247 + components: + - type: Transform + pos: 4.5,1.5 + parent: 2 + - uid: 7249 + components: + - type: Transform + pos: 5.5,1.5 + parent: 2 + - uid: 7387 components: - type: Transform pos: 18.5,-4.5 parent: 2 -- proto: WindoorJanitorLocked - entities: - - uid: 176 + - uid: 7414 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,6.5 + pos: 43.5,22.5 parent: 2 - - uid: 186 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,5.5 - parent: 2 -- proto: WindoorKitchenHydroponicsLocked - entities: - - uid: 2680 + - uid: 8367 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-8.5 + pos: 31.5,34.5 parent: 2 + - uid: 8392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,31.5 + parent: 2 + - uid: 10344 + components: + - type: Transform + pos: 23.5,-24.5 + parent: 3564 + - uid: 10345 + components: + - type: Transform + pos: 24.5,-24.5 + parent: 3564 + - uid: 10346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-26.5 + parent: 3564 + - uid: 10347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-27.5 + parent: 3564 + - uid: 10348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-38.5 + parent: 3564 + - uid: 10349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-38.5 + parent: 3564 + - uid: 10350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-34.5 + parent: 3564 + - uid: 10351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-34.5 + parent: 3564 + - uid: 10352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-38.5 + parent: 3564 + - uid: 10353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-38.5 + parent: 3564 + - uid: 10354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-42.5 + parent: 3564 + - uid: 10355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-42.5 + parent: 3564 + - uid: 10356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-46.5 + parent: 3564 + - uid: 10357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-46.5 + parent: 3564 + - uid: 10358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-46.5 + parent: 3564 + - uid: 10359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-46.5 + parent: 3564 + - uid: 10360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-50.5 + parent: 3564 + - uid: 10361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-50.5 + parent: 3564 + - uid: 10362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-50.5 + parent: 3564 + - uid: 10363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-50.5 + parent: 3564 + - uid: 10364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-54.5 + parent: 3564 + - uid: 10365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-54.5 + parent: 3564 + - uid: 10366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-54.5 + parent: 3564 + - uid: 10367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-54.5 + parent: 3564 + - uid: 10375 + components: + - type: Transform + pos: 28.5,-62.5 + parent: 3564 + - uid: 10427 + components: + - type: Transform + pos: 37.5,53.5 + parent: 2 +- proto: WindoorSecure + entities: + - uid: 107 + components: + - type: Transform + pos: 13.5,4.5 + parent: 2 + - uid: 141 + components: + - type: Transform + pos: 9.5,4.5 + parent: 2 +- proto: WindoorSecureArmoryLocked + entities: + - uid: 10373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-59.5 + parent: 3564 + - uid: 10374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-58.5 + parent: 3564 + - uid: 10376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-61.5 + parent: 3564 + - uid: 10377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-66.5 + parent: 3564 - proto: WindoorSecureChapelLocked entities: - uid: 356 @@ -52930,12 +73009,22 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,11.5 parent: 2 + - uid: 1327 + components: + - type: Transform + pos: 32.5,12.5 + parent: 2 - uid: 2222 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,7.5 parent: 2 + - uid: 2484 + components: + - type: Transform + pos: 31.5,12.5 + parent: 2 - proto: WindoorSecureCommandLocked entities: - uid: 125 @@ -52954,6 +73043,18 @@ entities: - type: AccessReader access: - - Captain + - uid: 692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,50.5 + parent: 2 + - uid: 703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,50.5 + parent: 2 - uid: 2399 components: - type: Transform @@ -52963,50 +73064,69 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -122722.266 + secondsUntilStateChange: -239673.5 state: Opening - type: Airlock autoClose: False - - uid: 2400 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,25.5 - parent: 2 - uid: 3814 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,31.5 parent: 2 + - uid: 4601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,50.5 + parent: 2 + - uid: 11363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,54.5 + parent: 2 - proto: WindoorSecureEngineeringLocked entities: + - uid: 136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,30.5 + parent: 2 - uid: 321 components: - type: Transform pos: 60.5,60.5 parent: 2 + - uid: 1365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,20.5 + parent: 2 + - uid: 1617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,21.5 + parent: 2 - uid: 2645 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-10.5 parent: 2 -- proto: WindoorSecureHeadOfPersonnelLocked - entities: - - uid: 2267 + - uid: 8396 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,26.5 + pos: 33.5,36.5 parent: 2 -- proto: WindoorSecureKitchenLocked - entities: - - uid: 1487 + - uid: 8476 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-7.5 + rot: 1.5707963267948966 rad + pos: 21.5,34.5 parent: 2 - proto: WindoorSecureMedicalLocked entities: @@ -53045,14 +73165,6 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,11.5 parent: 2 -- proto: WindoorSecureScienceLocked - entities: - - uid: 2198 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,9.5 - parent: 2 - proto: WindoorSecureSecurityLawyerLocked entities: - uid: 1231 @@ -53061,6 +73173,52 @@ entities: rot: 1.5707963267948966 rad pos: 37.5,0.5 parent: 2 + - uid: 10329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-32.5 + parent: 3564 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 10330: + - - DoorStatus + - DoorBolt + - uid: 10330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-32.5 + parent: 3564 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 10329: + - - DoorStatus + - DoorBolt + - uid: 10368 + components: + - type: Transform + pos: 22.5,-62.5 + parent: 3564 + - uid: 10369 + components: + - type: Transform + pos: 23.5,-62.5 + parent: 3564 + - uid: 10370 + components: + - type: Transform + pos: 22.5,-56.5 + parent: 3564 + - uid: 10371 + components: + - type: Transform + pos: 23.5,-56.5 + parent: 3564 - proto: WindoorSecureSecurityLocked entities: - uid: 1053 @@ -53075,6 +73233,13 @@ entities: rot: 1.5707963267948966 rad pos: 40.5,-2.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 1441: + - - DoorStatus + - DoorBolt - uid: 1364 components: - type: Transform @@ -53086,44 +73251,21 @@ entities: rot: 1.5707963267948966 rad pos: 41.5,-2.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 1097: + - - DoorStatus + - DoorBolt + - uid: 10372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-28.5 + parent: 3564 - proto: WindowDirectional entities: - - uid: 168 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,5.5 - parent: 2 - - uid: 216 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,6.5 - parent: 2 - - uid: 223 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,5.5 - parent: 2 - - uid: 235 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,5.5 - parent: 2 - - uid: 255 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,5.5 - parent: 2 - - uid: 425 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,5.5 - parent: 2 - uid: 471 components: - type: Transform @@ -53304,24 +73446,6 @@ entities: rot: 1.5707963267948966 rad pos: 40.5,1.5 parent: 2 - - uid: 1451 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-9.5 - parent: 2 - - uid: 1484 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-7.5 - parent: 2 - - uid: 1533 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-7.5 - parent: 2 - uid: 2002 components: - type: Transform @@ -53380,29 +73504,53 @@ entities: - type: Transform pos: 53.5,35.5 parent: 2 - - uid: 4004 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-7.5 - parent: 2 - - uid: 4005 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-8.5 - parent: 2 - - uid: 7296 + - uid: 6014 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-7.5 + pos: 30.5,-10.5 parent: 2 - - uid: 7297 + - uid: 6382 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-7.5 + rot: 3.141592653589793 rad + pos: 31.5,-7.5 + parent: 2 + - uid: 6415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-7.5 + parent: 2 + - uid: 6419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-7.5 + parent: 2 + - uid: 6420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-7.5 + parent: 2 + - uid: 6421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-7.5 + parent: 2 + - uid: 6423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-8.5 + parent: 2 + - uid: 6438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-7.5 parent: 2 - uid: 7298 components: @@ -53416,6 +73564,18 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,12.5 parent: 2 + - uid: 8365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,33.5 + parent: 2 + - uid: 8366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,35.5 + parent: 2 - proto: WindowReinforcedDirectional entities: - uid: 20 @@ -53510,17 +73670,17 @@ entities: rot: 3.141592653589793 rad pos: 38.5,-0.5 parent: 2 - - uid: 1071 - components: - - type: Transform - pos: 53.5,7.5 - parent: 2 - uid: 1101 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,1.5 parent: 2 + - uid: 1197 + components: + - type: Transform + pos: -8.5,13.5 + parent: 2 - uid: 1322 components: - type: Transform @@ -53539,24 +73699,6 @@ entities: rot: 3.141592653589793 rad pos: 40.5,-0.5 parent: 2 - - uid: 1730 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,33.5 - parent: 2 - - uid: 1758 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,35.5 - parent: 2 - - uid: 1791 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,34.5 - parent: 2 - uid: 1886 components: - type: Transform @@ -53581,33 +73723,6 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,38.5 parent: 2 - - uid: 2134 - components: - - type: Transform - pos: 52.5,7.5 - parent: 2 - - uid: 2197 - components: - - type: Transform - pos: 45.5,6.5 - parent: 2 - - uid: 2199 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,6.5 - parent: 2 - - uid: 2200 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,8.5 - parent: 2 - - uid: 2201 - components: - - type: Transform - pos: 46.5,6.5 - parent: 2 - uid: 2229 components: - type: Transform @@ -53644,6 +73759,12 @@ entities: rot: -1.5707963267948966 rad pos: 57.5,61.5 parent: 2 + - uid: 2629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,11.5 + parent: 2 - uid: 2631 components: - type: Transform @@ -53684,6 +73805,12 @@ entities: rot: 1.5707963267948966 rad pos: 54.5,29.5 parent: 2 + - uid: 3784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,42.5 + parent: 2 - uid: 3811 components: - type: Transform @@ -53696,6 +73823,23 @@ entities: rot: 1.5707963267948966 rad pos: 54.5,34.5 parent: 2 + - uid: 5343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,34.5 + parent: 2 + - uid: 7116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,35.5 + parent: 2 + - uid: 7119 + components: + - type: Transform + pos: 42.5,35.5 + parent: 2 - uid: 7285 components: - type: Transform @@ -53713,6 +73857,95 @@ entities: rot: 3.141592653589793 rad pos: 54.5,32.5 parent: 2 + - uid: 7415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,42.5 + parent: 2 + - uid: 8456 + components: + - type: Transform + pos: 60.5,42.5 + parent: 2 + - uid: 8457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,42.5 + parent: 2 + - uid: 11201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,33.5 + parent: 2 + - uid: 11202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,32.5 + parent: 2 + - uid: 11203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,31.5 + parent: 2 + - uid: 11204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,30.5 + parent: 2 + - uid: 11205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,29.5 + parent: 2 + - uid: 11206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,28.5 + parent: 2 + - uid: 11357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,15.5 + parent: 2 + - uid: 11358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,14.5 + parent: 2 + - uid: 11359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,13.5 + parent: 2 + - uid: 11360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,11.5 + parent: 2 + - uid: 11361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,10.5 + parent: 2 + - uid: 11362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,9.5 + parent: 2 - proto: Wirecutter entities: - uid: 7520 @@ -53720,30 +73953,51 @@ entities: - type: Transform pos: 17.5,0.5 parent: 2 -- proto: WoodDoor - entities: - - uid: 7157 - components: - - type: Transform - pos: 5.5,8.5 - parent: 2 - proto: Wrench entities: - - uid: 3226 + - uid: 2182 components: - type: Transform - pos: 22.422697,-0.5009035 + pos: 53.5,3.5 parent: 2 - - uid: 7654 + - uid: 3161 components: - type: Transform - pos: 26.5,-8.5 + pos: 30.5,8.5 parent: 2 -- proto: WristwatchGold - entities: - - uid: 7732 + - uid: 6350 components: - type: Transform - pos: 62.5,7.5 + pos: 45.5,35.5 + parent: 2 + - uid: 6699 + components: + - type: Transform + pos: 31.5,-10.5 + parent: 2 + - uid: 6700 + components: + - type: Transform + pos: 32.5,-10.5 + parent: 2 + - uid: 6701 + components: + - type: Transform + pos: 34.5,-10.5 + parent: 2 + - uid: 6702 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 2 + - uid: 8261 + components: + - type: Transform + pos: 27.5,26.5 + parent: 2 + - uid: 11516 + components: + - type: Transform + pos: 17.5,33.5 parent: 2 ... diff --git a/Resources/Maps/saltern.yml b/Resources/Maps/saltern.yml index 826045296e..58400ac0fe 100644 --- a/Resources/Maps/saltern.yml +++ b/Resources/Maps/saltern.yml @@ -32338,7 +32338,7 @@ entities: pos: 40.5,4.5 parent: 31 - type: FaxMachine - name: engineering + name: Engineering - uid: 2045 components: - type: Transform @@ -32353,7 +32353,7 @@ entities: pos: 9.5,-28.5 parent: 31 - type: FaxMachine - name: library + name: Library - uid: 8994 components: - type: Transform @@ -32368,15 +32368,15 @@ entities: pos: 8.5,18.5 parent: 31 - type: FaxMachine - name: hop's office + name: HoP's office - uid: 10825 components: - type: Transform pos: 1.5,32.5 parent: 31 - type: FaxMachine - destinationAddress: bridge - name: bridge + destinationAddress: Bridge + name: Bridge - proto: FaxMachineCaptain entities: - uid: 9686 @@ -32385,7 +32385,7 @@ entities: pos: 7.5,24.5 parent: 31 - type: FaxMachine - name: captain's office + name: Captain's office - proto: filingCabinetDrawerRandom entities: - uid: 4637 diff --git a/Resources/Prototypes/Actions/anomaly.yml b/Resources/Prototypes/Actions/anomaly.yml index f89ccce92c..3c1d270870 100644 --- a/Resources/Prototypes/Actions/anomaly.yml +++ b/Resources/Prototypes/Actions/anomaly.yml @@ -6,6 +6,6 @@ components: - type: Action useDelay: 30 - icon: Structures/Specific/anomaly.rsi/anom1.png + icon: { sprite: Structures/Specific/anomaly.rsi, state: anom1 } - type: InstantAction event: !type:ActionAnomalyPulseEvent diff --git a/Resources/Prototypes/Actions/changeling.yml b/Resources/Prototypes/Actions/changeling.yml index 273bb8ed6b..6e4ec6db6c 100644 --- a/Resources/Prototypes/Actions/changeling.yml +++ b/Resources/Prototypes/Actions/changeling.yml @@ -20,3 +20,25 @@ retractSounds: collection: gib # Placeholder +- type: entity + id: ActionChangelingDevour + name: "[color=red]Devour[/color]" + description: Consume the essence of your victims and subsume their identity and mind into your own. + components: + - type: Action + icon: { sprite : Interface/Actions/changeling.rsi, state: "devour" } + iconOn: { sprite : Interface/Actions/changeling.rsi, state: "devour_on" } + priority: 1 + - type: TargetAction + - type: EntityTargetAction + event: !type:ChangelingDevourActionEvent + +- type: entity + id: ActionChangelingTransform + name: "[color=red]Transform[/color]" + description: Transform and assume the identities of those you have devoured. + components: + - type: Action + icon: { sprite : Interface/Actions/changeling.rsi, state: "transform" } + - type: InstantAction + event: !type:ChangelingTransformActionEvent diff --git a/Resources/Prototypes/Actions/types.yml b/Resources/Prototypes/Actions/types.yml index 97435c229d..c8ea03502a 100644 --- a/Resources/Prototypes/Actions/types.yml +++ b/Resources/Prototypes/Actions/types.yml @@ -376,6 +376,7 @@ iconOn: { sprite: Interface/Actions/actions_fakemindshield.rsi, state: icon-on } itemIconStyle: NoItem useDelay: 1 + raiseOnUser: true - type: InstantAction event: !type:FakeMindShieldToggleEvent - type: Tag diff --git a/Resources/Prototypes/Alerts/revenant.yml b/Resources/Prototypes/Alerts/revenant.yml index ab2b13905d..8e1c494d64 100644 --- a/Resources/Prototypes/Alerts/revenant.yml +++ b/Resources/Prototypes/Alerts/revenant.yml @@ -10,7 +10,7 @@ - type: alert id: Corporeal - icons: [ /Textures/Mobs/Ghosts/revenant.rsi/icon.png ] + icons: [ { sprite: /Textures/Mobs/Ghosts/revenant.rsi, state: icon } ] name: alerts-revenant-corporeal-name description: alerts-revenant-corporeal-desc diff --git a/Resources/Prototypes/Antag/changeling.yml b/Resources/Prototypes/Antag/changeling.yml deleted file mode 100644 index b4c8b2e3dc..0000000000 --- a/Resources/Prototypes/Antag/changeling.yml +++ /dev/null @@ -1,35 +0,0 @@ -- type: entity - parent: MobHuman - id: MobLing - name: Urist McLing - suffix: Non-Antag - components: - - type: ChangelingDevour - - type: ChangelingIdentity - - type: ChangelingTransform - - type: ActionGrant - actions: - - ActionRetractableItemArmBlade # Temporary addition, will inevitably be a purchasable in the bio-store - -- type: entity - id: ActionChangelingDevour - name: "[color=red]Devour[/color]" - description: Consume the essence of your victims and subsume their identity and mind into your own. - components: - - type: Action - icon: { sprite : Interface/Actions/changeling.rsi, state: "devour" } - iconOn: { sprite : Interface/Actions/changeling.rsi, state: "devour_on" } - priority: 1 - - type: TargetAction - - type: EntityTargetAction - event: !type:ChangelingDevourActionEvent - -- type: entity - id: ActionChangelingTransform - name: "[color=red]Transform[/color]" - description: Transform and assume the identities of those you have devoured. - components: - - type: Action - icon: { sprite : Interface/Actions/changeling.rsi, state: "transform" } - - type: InstantAction - event: !type:ChangelingTransformActionEvent diff --git a/Resources/Prototypes/Body/Organs/Animal/animal.yml b/Resources/Prototypes/Body/Organs/Animal/animal.yml index e59aad9da3..dbf96068fa 100644 --- a/Resources/Prototypes/Body/Organs/Animal/animal.yml +++ b/Resources/Prototypes/Body/Organs/Animal/animal.yml @@ -33,7 +33,7 @@ - type: entity id: OrganAnimalLungs parent: BaseAnimalOrgan - name: lungs + name: animal lungs categories: [ HideSpawnMenu ] components: - type: Sprite @@ -67,7 +67,7 @@ - type: entity id: OrganAnimalStomach parent: BaseAnimalOrgan - name: stomach + name: animal stomach categories: [ HideSpawnMenu ] components: - type: Sprite @@ -96,7 +96,6 @@ - type: entity id: OrganMouseStomach parent: OrganAnimalStomach - name: stomach categories: [ HideSpawnMenu ] components: - type: SolutionContainerManager @@ -110,7 +109,7 @@ - type: entity id: OrganAnimalLiver parent: BaseAnimalOrgan - name: liver + name: animal liver categories: [ HideSpawnMenu ] components: - type: Sprite @@ -129,7 +128,7 @@ - type: entity id: OrganAnimalHeart parent: BaseAnimalOrgan - name: heart + name: animal heart categories: [ HideSpawnMenu ] components: - type: Sprite @@ -149,7 +148,7 @@ - type: entity id: OrganAnimalKidneys parent: BaseAnimalOrgan - name: kidneys + name: animal kidneys categories: [ HideSpawnMenu ] components: - type: Sprite diff --git a/Resources/Prototypes/Body/Organs/Animal/bloodsucker.yml b/Resources/Prototypes/Body/Organs/Animal/bloodsucker.yml index e360f362d8..6e9b4d5900 100644 --- a/Resources/Prototypes/Body/Organs/Animal/bloodsucker.yml +++ b/Resources/Prototypes/Body/Organs/Animal/bloodsucker.yml @@ -1,7 +1,6 @@ - type: entity id: OrganBloodsuckerStomach parent: OrganAnimalStomach - name: stomach categories: [ HideSpawnMenu ] components: - type: Metabolizer @@ -10,7 +9,6 @@ - type: entity id: OrganBloodsuckerLiver parent: OrganAnimalLiver - name: liver categories: [ HideSpawnMenu ] components: - type: Metabolizer @@ -19,7 +17,6 @@ - type: entity id: OrganBloodsuckerHeart parent: OrganAnimalHeart - name: heart categories: [ HideSpawnMenu ] components: - type: Metabolizer diff --git a/Resources/Prototypes/Body/Organs/arachnid.yml b/Resources/Prototypes/Body/Organs/arachnid.yml index 20ff344fa1..b044706ecf 100644 --- a/Resources/Prototypes/Body/Organs/arachnid.yml +++ b/Resources/Prototypes/Body/Organs/arachnid.yml @@ -28,7 +28,6 @@ - type: entity id: OrganArachnidStomach parent: OrganAnimalStomach - name: stomach description: "Gross. This is hard to stomach." components: - type: Sprite diff --git a/Resources/Prototypes/Catalog/Fills/Crates/permaescape.yml b/Resources/Prototypes/Catalog/Fills/Crates/permaescape.yml index 4ee0d5f9ea..ed48479cd2 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/permaescape.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/permaescape.yml @@ -82,7 +82,7 @@ prob: 0.25 - id: OxygenTankFilled prob: 0.05 - + - type: entity id: CratePermaEscapeGun parent: CrateGenericSteel @@ -124,40 +124,37 @@ contents: - id: RubberStampApproved - id: RubberStampDenied + - id: Paper + amount: 5 - id: Pen - - id: Pen - - id: Pen - - id: BoxFolderBase + amount: 3 + - id: BoxFolderBaseEmpty orGroup: folderA - - id: BoxFolderBlack + - id: BoxFolderBlackEmpty orGroup: folderA - - id: BoxFolderBlue + - id: BoxFolderBlueEmpty orGroup: folderA - - id: BoxFolderGreen + - id: BoxFolderGreenEmpty orGroup: folderA - - id: BoxFolderGrey + - id: BoxFolderGreyEmpty orGroup: folderA - - id: BoxFolderRed + - id: BoxFolderRedEmpty orGroup: folderA - - id: BoxFolderWhite + - id: BoxFolderYellowEmpty orGroup: folderA - - id: BoxFolderYellow - orGroup: folderA - - id: BoxFolderBase + - id: BoxFolderBaseEmpty orGroup: folderB - - id: BoxFolderBlack + - id: BoxFolderBlackEmpty orGroup: folderB - - id: BoxFolderBlue + - id: BoxFolderBlueEmpty orGroup: folderB - - id: BoxFolderGreen + - id: BoxFolderGreenEmpty orGroup: folderB - - id: BoxFolderGrey + - id: BoxFolderGreyEmpty orGroup: folderB - - id: BoxFolderRed + - id: BoxFolderRedEmpty orGroup: folderB - - id: BoxFolderWhite - orGroup: folderB - - id: BoxFolderYellow + - id: BoxFolderYellowEmpty orGroup: folderB - id: CrayonBox prob: 0.50 diff --git a/Resources/Prototypes/Catalog/Fills/Crates/service.yml b/Resources/Prototypes/Catalog/Fills/Crates/service.yml index 84da90eb2a..46299ef6b9 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/service.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/service.yml @@ -144,15 +144,17 @@ - type: StorageFill contents: - id: Paper - amount: 15 + amount: 12 + - id: PaperOffice + amount: 6 - id: Pen amount: 2 - - id: BoxFolderClipboard + - id: BoxFolderClipboardEmpty amount: 2 - id: HandLabeler - - id: BoxFolderBlue - - id: BoxFolderRed - - id: BoxFolderYellow + - id: BoxFolderBlueEmpty + - id: BoxFolderRedEmpty + - id: BoxFolderYellowEmpty - id: NewtonCradle - id: BoxEnvelope - id: BrbSign diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/cart.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/cart.yml index 414e77bcad..df4af37f52 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/cart.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/cart.yml @@ -7,6 +7,7 @@ ClothingHeadsetGrey: 5 RubberStampApproved: 1 RubberStampDenied: 1 + BoxFolderPlasticClipboardEmpty: 2 Paper: 10 Envelope: 10 HandLabeler: 2 diff --git a/Resources/Prototypes/Catalog/uplink_catalog.yml b/Resources/Prototypes/Catalog/uplink_catalog.yml index ebeae71d99..c499f54db6 100644 --- a/Resources/Prototypes/Catalog/uplink_catalog.yml +++ b/Resources/Prototypes/Catalog/uplink_catalog.yml @@ -2202,7 +2202,7 @@ discountDownTo: Telecrystal: 2 cost: - Telecrystal: 5 + Telecrystal: 3 categories: - UplinkJob conditions: diff --git a/Resources/Prototypes/Damage/modifier_sets.yml b/Resources/Prototypes/Damage/modifier_sets.yml index f3f98252bc..c4b3f86377 100644 --- a/Resources/Prototypes/Damage/modifier_sets.yml +++ b/Resources/Prototypes/Damage/modifier_sets.yml @@ -198,7 +198,7 @@ id: Moth # Slightly worse at everything but cold coefficients: Cold: 0.7 - Heat: 1.3 + Heat: 1.2 - type: damageModifierSet id: Vox diff --git a/Resources/Prototypes/Decals/lettering.yml b/Resources/Prototypes/Decals/lettering.yml new file mode 100644 index 0000000000..81b893db5f --- /dev/null +++ b/Resources/Prototypes/Decals/lettering.yml @@ -0,0 +1,321 @@ +- type: decal + id: StencilNumber0 + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencil0 + +- type: decal + id: StencilNumber1 + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencil1 + +- type: decal + id: StencilNumber2 + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencil2 + +- type: decal + id: StencilNumber3 + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencil3 + +- type: decal + id: StencilNumber4 + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencil4 + +- type: decal + id: StencilNumber5 + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencil5 + +- type: decal + id: StencilNumber6 + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencil6 + +- type: decal + id: StencilNumber7 + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencil7 + +- type: decal + id: StencilNumber8 + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencil8 + +- type: decal + id: StencilNumber9 + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencil9 + +- type: decal + id: StencilLetterA + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilA + +- type: decal + id: StencilLetterB + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilB + +- type: decal + id: StencilLetterC + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilC + +- type: decal + id: StencilLetterD + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilD + +- type: decal + id: StencilLetterE + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilE + +- type: decal + id: StencilLetterF + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilF + +- type: decal + id: StencilLetterG + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilG + +- type: decal + id: StencilLetterH + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilH + +- type: decal + id: StencilLetterI + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilI + +- type: decal + id: StencilLetterJ + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilJ + +- type: decal + id: StencilLetterK + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilK + +- type: decal + id: StencilLetterL + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilL + +- type: decal + id: StencilLetterM + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilM + +- type: decal + id: StencilLetterN + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilN + +- type: decal + id: StencilLetterO + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilO + +- type: decal + id: StencilLetterP + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilP + +- type: decal + id: StencilLetterQ + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilQ + +- type: decal + id: StencilLetterR + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilR + +- type: decal + id: StencilLetterS + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilS + +- type: decal + id: StencilLetterT + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilT + +- type: decal + id: StencilLetterU + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilU + +- type: decal + id: StencilLetterV + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilV + +- type: decal + id: StencilLetterW + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilW + +- type: decal + id: StencilLetterX + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilX + +- type: decal + id: StencilLetterY + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilY + +- type: decal + id: StencilLetterZ + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilZ + +- type: decal + id: StencilSymbolAmpersand + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencil_Ampersand + +- type: decal + id: StencilSymbolAsterix + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencil_Asterix + +- type: decal + id: StencilSymbolDash + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencil_Dash + +- type: decal + id: StencilSymbolEquals + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencil_Equals + +- type: decal + id: StencilSymbolExclaim + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencil_Exclaim + +- type: decal + id: StencilSymbolHash + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencil_Hash + +- type: decal + id: StencilSymbolSpeso + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencil_Speso + +- type: decal + id: StencilSymbolMultiocular + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencil_Multiocular + +- type: decal + id: StencilSymbolPlus + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencil_Plus + +- type: decal + id: StencilSymbolQuestion + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencil_Question diff --git a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml index 57665af04f..93efa6415c 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml @@ -585,8 +585,6 @@ modifiers: coefficients: Blunt: 0.95 - - type: StaminaResistance - damageCoefficient: 0.95 - type: Construction graph: cardHelmet - node: cardhelmet \ No newline at end of file + node: cardhelmet diff --git a/Resources/Prototypes/Entities/Clothing/Head/misc.yml b/Resources/Prototypes/Entities/Clothing/Head/misc.yml index 96844d4017..da0f17f324 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/misc.yml @@ -198,7 +198,7 @@ sprite: Clothing/Head/Misc/fancycrown.rsi - type: TypingIndicatorClothing proto: regal - - type: MobPrice + - type: StaticPrice price: 3000 - type: AddAccentClothing accent: MobsterAccent diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml index 25d963882c..5cc78d90b0 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml @@ -505,8 +505,6 @@ modifiers: coefficients: Blunt: 0.9 - - type: StaminaResistance - damageCoefficient: 0.90 - type: Construction graph: cardArmour - node: cardarmour \ No newline at end of file + node: cardarmour diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml index 6904727d2b..0909ef56a4 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml @@ -974,7 +974,7 @@ damageCoefficient: 0.2 - type: FireProtection reduction: 0.8 - - type: StaminaResistance + - type: StaminaResistance # do not add these to other equipment or mobs, we don't want to microbalance these everywhere damageCoefficient: 0.15 # Needs 21 hits with a disabler to stun :godo: - type: Armor modifiers: diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml b/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml index 26fbc0c7ae..69c167051b 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml @@ -135,6 +135,7 @@ - type: ClothingSpeedModifier walkModifier: 1.5 sprintModifier: 1.5 + standing: true - type: Appearance - type: GenericVisualizer visuals: @@ -182,7 +183,7 @@ price: 75 - type: Tag tags: [ ] - + - type: entity parent: ClothingShoesBase id: ClothingShoesBootsJump @@ -200,7 +201,7 @@ jumpSound: /Audio/Effects/stealthoff.ogg - type: ActionGrant actions: - - ActionGravityJump + - ActionGravityJump - type: ItemActionGrant actions: - ActionGravityJump diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/ship_vs_ship.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/ship_vs_ship.yml index b19f70881d..c6945b9de2 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/ship_vs_ship.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/ship_vs_ship.yml @@ -49,17 +49,6 @@ sprite: Clothing/Uniforms/Jumpsuit/repairman_syndie.rsi #Paramedic -- type: entity - parent: ClothingUniformBase - id: ClothingUniformJumpsuitParamedicNT - name: paramedic jumpsuit - description: A basic white & blue jumpsuit made for Nanotrasen paramedics stationed in combat sectors. - components: - - type: Sprite - sprite: Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi - - type: entity parent: [ ClothingUniformBase, BaseSyndicateContraband ] id: ClothingUniformJumpsuitParamedicSyndie @@ -73,17 +62,6 @@ #HEADS OF STAFF #Chief Engineer -- type: entity - parent: ClothingUniformBase - id: ClothingUniformJumpsuitChiefEngineerNT - name: chief engineer jumpsuit - description: It is often joked that the role of the combat-sector Chief Engineer is where the actual, logistically-minded engineers are promoted to. Good luck. - components: - - type: Sprite - sprite: Clothing/Uniforms/Jumpsuit/ce_nt.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpsuit/ce_nt.rsi - - type: entity parent: [ ClothingUniformBase, BaseSyndicateContraband ] id: ClothingUniformJumpsuitChiefEngineerSyndie diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/folders.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/folders.yml index 7631d43316..5d4c133a03 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/folders.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/folders.yml @@ -10,15 +10,15 @@ - type: Sprite sprite: Objects/Misc/folders.rsi layers: - - state: folder-base - - state: folder-colormap + - state: folder-base + - state: folder-colormap - type: RandomSpawner offset: 0 prototypes: - - BoxFolderRed - - BoxFolderBlue - - BoxFolderYellow - - BoxFolderWhite - - BoxFolderGrey - - BoxFolderBlack - - BoxFolderGreen + - BoxFolderBase + - BoxFolderRed + - BoxFolderBlue + - BoxFolderYellow + - BoxFolderGrey + - BoxFolderBlack + - BoxFolderGreen diff --git a/Resources/Prototypes/Entities/Markers/Spawners/ghost_roles.yml b/Resources/Prototypes/Entities/Markers/Spawners/ghost_roles.yml index 48a2e70655..5815dbba47 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/ghost_roles.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/ghost_roles.yml @@ -110,7 +110,7 @@ description: ghost-role-information-loneop-description rules: ghost-role-information-loneop-rules mindRoles: - - MindRoleGhostRoleSoloAntagonist + - MindRoleLoneops - type: Sprite sprite: Markers/jobs.rsi layers: @@ -211,6 +211,18 @@ - sprite: Mobs/Aliens/paradox_clone.rsi state: preview +- type: entity + categories: [ HideSpawnMenu, Spawner ] + parent: SpawnPointGhostDerelictCyborg + id: SpawnPointGhostDerelictEngineeringCyborg + components: + - type: GhostRole + name: ghost-role-information-derelict-engineering-cyborg-name + description: ghost-role-information-derelict-engineering-cyborg-description + rules: ghost-role-information-silicon-rules + raffle: + settings: default + - type: entity categories: [ HideSpawnMenu, Spawner ] parent: BaseAntagSpawner @@ -229,6 +241,54 @@ - sprite: Mobs/Silicon/chassis.rsi state: derelict_icon +- type: entity + categories: [ HideSpawnMenu, Spawner ] + parent: SpawnPointGhostDerelictCyborg + id: SpawnPointGhostDerelictJanitorCyborg + components: + - type: GhostRole + name: ghost-role-information-derelict-janitor-cyborg-name + description: ghost-role-information-derelict-janitor-cyborg-description + rules: ghost-role-information-silicon-rules + raffle: + settings: default + +- type: entity + categories: [ HideSpawnMenu, Spawner ] + parent: SpawnPointGhostDerelictCyborg + id: SpawnPointGhostDerelictMedicalCyborg + components: + - type: GhostRole + name: ghost-role-information-derelict-medical-cyborg-name + description: ghost-role-information-derelict-medical-cyborg-description + rules: ghost-role-information-silicon-rules + raffle: + settings: default + +- type: entity + categories: [ HideSpawnMenu, Spawner ] + parent: SpawnPointGhostDerelictCyborg + id: SpawnPointGhostDerelictMiningCyborg + components: + - type: GhostRole + name: ghost-role-information-derelict-mining-cyborg-name + description: ghost-role-information-derelict-mining-cyborg-description + rules: ghost-role-information-silicon-rules + raffle: + settings: default + +- type: entity + categories: [ HideSpawnMenu, Spawner ] + parent: SpawnPointGhostDerelictCyborg + id: SpawnPointGhostDerelictSyndicateAssaultCyborg + components: + - type: GhostRole + name: ghost-role-information-derelict-syndicate-assault-cyborg-name + description: ghost-role-information-derelict-syndicate-assault-cyborg-description + rules: ghost-role-information-silicon-rules + raffle: + settings: default + - type: entity categories: [ HideSpawnMenu, Spawner ] parent: BaseAntagSpawner diff --git a/Resources/Prototypes/Entities/Markers/Spawners/nuke_ops_spawners.yml b/Resources/Prototypes/Entities/Markers/Spawners/nuke_ops_spawners.yml new file mode 100644 index 0000000000..60f6a3a118 --- /dev/null +++ b/Resources/Prototypes/Entities/Markers/Spawners/nuke_ops_spawners.yml @@ -0,0 +1,243 @@ +# Tables + +- type: entityTable + id: NukeOpsLootTable + table: !type:GroupSelector + children: + - !type:NestedSelector + tableId: NukeOpsUplinkLootTable + weight: 6.25 + - !type:NestedSelector + tableId: NukeOpsWeaponsTable + weight: 0.25 + - !type:NestedSelector + tableId: NukeOpsGrenadeTable + weight: 0.75 + - !type:NestedSelector + tableId: NukeOpsAmmoTable + weight: 0.75 + - !type:NestedSelector + tableId: NukeOpsMedKitGeneral + weight: 0.75 + +- type: entityTable + id: NukeOpsUplinkLootTable + table: !type:GroupSelector + children: + - id: ClothingBackpackChameleonFill + - id: ClothingMaskGasVoiceChameleon + amount: !type:RangeNumberSelector + range: 1, 2 + - id: NukeDiskFake + weight: 0.5 + - id: ClothingBackpackDuffelSyndicateDecoyKitFilled + weight: 0.75 + - id: BriefcaseSyndieLobbyingBundleFilled + amount: !type:RangeNumberSelector + range: 1, 2 + - id: ChameleonProjector + - id: CameraBug + - id: SyndicateJawsOfLife + - id: RadioJammer + - id: BorgModuleMartyr + - id: ScramImplant + - id: FakeMindShieldImplanter + amount: !type:RangeNumberSelector + range: 1, 3 + - id: EmpImplanter + - id: MicroBombImplanter + - id: SlipocalypseClusterSoap + amount: !type:RangeNumberSelector + range: 1, 2 + - id: ReinforcementRadioSyndicateAncestor + - id: ClothingEyesHudSyndicate + amount: !type:RangeNumberSelector + range: 1, 2 + - id: CigPackSyndicate + amount: !type:RangeNumberSelector + range: 1, 3 + - id: PenExplodingBox + +- type: entityTable + id: NukeOpsWeaponsTable + table: !type:GroupSelector + children: + - id: ThrowingKnivesKit + - id: ClothingHandsKnuckleDustersSyndicate + - id: EnergyDaggerLoud + weight: 0.5 + - id: WeaponRevolverPython + - id: WeaponPistolCobra + - id: WeaponShotgunSawn + - id: RevolverCapGunFake + weight: .01 + +- type: entityTable + id: NukeOpsAmmoTable + table: !type:GroupSelector + children: + - id: MagazinePistolSubMachineGun + - id: MagazineRifle + - id: MagazineBoxLightRifle + weight: 0.5 + - id: MagazineShotgunSlug + weight: 0.5 + - id: MagazineShotgun + weight: 0.5 + - id: MagazinePistol + weight: 0.5 + - id: MagazineBoxAntiMateriel + weight: 0.5 + - id: MagazinePistolCaselessRifle + weight: 0.5 + - id: SpeedLoaderMagnumAP + weight: 0.5 + +- type: entityTable + id: NukeOpsGrenadeTable + table: !type:GroupSelector + children: + - id: SmokeGrenade + weight: 1.25 + - id: GrenadeFlashBang + weight: 1.25 + - id: GrenadeShrapnel + weight: 1.25 + - id: GrenadeIncendiary + - id: EmpGrenade + - id: ExGrenade + weight: 0.5 + - id: SingularityGrenade + weight: 0.25 + - id: WhiteholeGrenade + weight: 0.25 + +- type: entityTable + id: NukeOpsMedkitTableBrute + table: !type:GroupSelector + children: + - id: MedkitFilled + weight: 1.5 + - id: MedkitBruteFilled + weight: 1.5 + - id: MedkitAdvancedFilled + - id: MedkitCombatFilled + weight: 0.2 + +- type: entityTable + id: NukeOpsMedKitGeneral + table: !type:GroupSelector + children: + - id: MedkitFilled + - id: MedkitBruteFilled + - id: MedkitToxinFilled + - id: MedkitRadiationFilled + - id: MedkitOxygenFilled + - id: MedkitBurnFilled + +# Spawners + +- type: entity + name: nuke ops loot spawner + id: NukeOpsLootSpawner + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - sprite: Objects/Devices/jammer.rsi + state: jammer + - type: EntityTableSpawner + table: !type:NestedSelector + tableId: NukeOpsLootTable + placement: + mode: AlignTileAny + +- type: entity + name: nuke ops weapon spawner + id: NukeOpsWeaponSpawner + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - sprite: Objects/Weapons/Guns/Revolvers/python.rsi + state: icon + - type: EntityTableSpawner + offset: 0.15 + table: !type:NestedSelector + tableId: NukeOpsWeaponsTable + placement: + mode: AlignTileAny + +- type: entity + name: nuke ops brute medkit spawner + id: NukeOpsMedkitBruteSpawner + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - sprite: Objects/Specific/Medical/firstaidkits.rsi + state: brutekit + - type: EntityTableSpawner + table: !type:NestedSelector + tableId: NukeOpsMedkitTableBrute + placement: + mode: AlignTileAny + +- type: entity + name: nuke ops general medkit spawner + id: NukeOpsMedkitSpawner + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - sprite: Objects/Specific/Medical/firstaidkits.rsi + state: burnkit + - type: EntityTableSpawner + table: !type:NestedSelector + tableId: NukeOpsMedKitGeneral + rolls: !type:RangeNumberSelector + range: 2, 4 + placement: + mode: AlignTileAny + +- type: entity + name: nuke ops grenade spawner + id: NukeOpsGrenadeSpawner + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - sprite: Objects/Weapons/Grenades/grenade.rsi + state: icon + - type: EntityTableSpawner + offset: 0.15 + table: !type:NestedSelector + tableId: NukeOpsGrenadeTable + rolls: !type:RangeNumberSelector + range: 1, 2 + placement: + mode: AlignTileAny + +- type: entity + name: nuke ops ammo spawner + id: NukeOpsAmmoSpawner + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - sprite: Objects/Weapons/Guns/Ammunition/Magazine/Pistol/smg_mag.rsi + state: base + - type: EntityTableSpawner + offset: 0.15 + table: !type:NestedSelector + tableId: NukeOpsAmmoTable + rolls: !type:RangeNumberSelector + range: 1, 2 + placement: + mode: AlignTileAny diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml index 34fdbbd74b..dd6f5a570b 100644 --- a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml +++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml @@ -353,6 +353,7 @@ - Syndicate - type: ActiveRadio channels: + - Binary - Syndicate - type: ShowSyndicateIcons - type: MovementAlwaysTouching @@ -386,6 +387,44 @@ chance: 1 - type: ShowJobIcons +- type: entity + id: BaseBorgChassisSyndicateDerelict #For assault borg and maybe others in time + parent: BaseBorgChassis # We don't want them to see Nukies or have syndi comms, their database is out of date + abstract: true + components: + - type: SiliconLawProvider + laws: SyndicateStatic #Non-subverted version so they can still be changed + - type: StartIonStormed + ionStormAmount: 3 + - type: IonStormTarget + chance: 1 + - type: ShowJobIcons + - type: NpcFactionMember # They're still syndicate even if they can't listen to the radio or see icons + factions: + - Syndicate + - type: Access + tags: + - NuclearOperative + - SyndicateAgent + - type: AccessReader + access: [ [ "SyndicateAgent" ], [ "NuclearOperative" ] ] + - type: IntrinsicRadioTransmitter # Copy components from base SyndiBorg but without the stuff we don't want + channels: + - Binary #1984 + - type: ActiveRadio + channels: + - Binary + - type: MovementAlwaysTouching + - type: Speech + speechSounds: SyndieBorg + allowedEmotes: + - Laugh + - type: Vocal + sounds: + Unsexed: UnisexSiliconSyndicate + - type: PointLight + color: "#dd200b" + - type: entity parent: BaseBorgChassisNotIonStormable id: BaseXenoborgChassis diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml index 87b8d54a97..1b9fbed3ac 100644 --- a/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml +++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml @@ -206,7 +206,7 @@ map: ["light"] visible: false - type: BorgChassis - maxModules: 5 # the sixth one broke lol + maxModules: 5 # One less module slot than the regular module to reflect this being a "broken" cyborg. moduleWhitelist: tags: - BorgModuleGeneric @@ -218,4 +218,165 @@ interactSuccessString: petting-success-derelict-cyborg interactFailureString: petting-failure-derelict-cyborg interactSuccessSound: - path: /Audio/Ambience/Objects/periodic_beep.ogg \ No newline at end of file + path: /Audio/Ambience/Objects/periodic_beep.ogg + +- type: entity + parent: BaseBorgChassisDerelict + id: EngineeringBorgChassisDerelict + name: derelict engineer cyborg + description: A man-machine hybrid that assists the engineering department. This one seems to have chunks of strange crystals pockmarking its surface. + components: + - type: Sprite + layers: + - state: engineer_derelict + - state: engineer_e_r + map: ["enum.BorgVisualLayers.Light"] + shader: unshaded + visible: false + - state: engineer_derelict_crystal #This layer and the layer below are duplicated in order to create a more mellow unshaded layer. See https://github.com/space-wizards/space-station-14/pull/37869 for more info on the method. + shader: unshaded + - state: engineer_derelict_crystal + shader: shaded + - state: engineer_l + shader: unshaded + map: ["light"] + visible: false + - type: BorgChassis + maxModules: 5 # One less module slot than the regular module to reflect this being a "broken" cyborg. + moduleWhitelist: + tags: + - BorgModuleGeneric + - BorgModuleEngineering + hasMindState: engineer_e + noMindState: engineer_e_r + +- type: entity + parent: BaseBorgChassisDerelict + id: JanitorBorgChassisDerelict + name: derelict janitor cyborg + description: A man-machine hybrid that assists the service department. It's a bigger mess than anything it can clean up. + components: + - type: Sprite + layers: + - state: janitor_derelict + map: ["movement"] + - state: janitor_e_r + map: ["enum.BorgVisualLayers.Light"] + shader: unshaded + visible: false + - state: janitor_l + shader: unshaded + map: ["light"] + visible: false + - type: SpriteMovement + movementLayers: + movement: + state: janitor_moving_derelict + noMovementLayers: + movement: + state: janitor_derelict + - type: BorgChassis + maxModules: 5 # One less module slot than the regular module to reflect this being a "broken" cyborg. + moduleWhitelist: + tags: + - BorgModuleGeneric + - BorgModuleJanitor + hasMindState: janitor_e + noMindState: janitor_e_r + +- type: entity + parent: BaseBorgChassisDerelict + id: MedicalBorgChassisDerelict + name: derelict medical cyborg + description: A man-machine hybrid that assists the medical department. This one's needles don't look very sanitary. + components: + - type: Sprite + layers: + - state: medical_derelict + map: ["movement"] + - state: medical_e_r + map: ["enum.BorgVisualLayers.Light"] + shader: unshaded + visible: false + - state: medical_l + shader: unshaded + map: ["light"] + visible: false + - type: SpriteMovement + movementLayers: + movement: + state: medical_moving_derelict + noMovementLayers: + movement: + state: medical_derelict + - type: BorgChassis + maxModules: 6 # One less module slot than the regular module to reflect this being a "broken" cyborg. + moduleWhitelist: + tags: + - BorgModuleGeneric + - BorgModuleMedical + hasMindState: medical_e + noMindState: medical_e_r + +- type: entity + parent: BaseBorgChassisDerelict + id: MiningBorgChassisDerelict + name: derelict salvage cyborg + description: A man-machine hybrid that assists the cargo department. This one has seen the wrong side of a gibtonite chunk. + components: + - type: Sprite + layers: + - state: miner_derelict + map: ["movement"] + - state: miner_e_r + map: ["enum.BorgVisualLayers.Light"] + shader: unshaded + visible: false + - state: miner_l + shader: unshaded + map: ["light"] + visible: false + - type: SpriteMovement + movementLayers: + movement: + state: miner_moving_derelict + noMovementLayers: + movement: + state: miner_derelict + - type: BorgChassis + maxModules: 6 # One less module slot than the regular module to reflect this being a "broken" cyborg. + moduleWhitelist: + tags: + - BorgModuleGeneric + - BorgModuleCargo + hasMindState: miner_e + noMindState: miner_e_r + +- type: entity + parent: BaseBorgChassisSyndicateDerelict + id: SyndicateAssaultBorgChassisDerelict + name: derelict syndicate assault cyborg + description: A lean, mean killing machine with access to a variety of deadly modules. This one is more rust-orange than blood-red. + components: + - type: Sprite + layers: + - state: synd_sec_derelict + - state: synd_sec_e + map: ["enum.BorgVisualLayers.Light"] + shader: unshaded + visible: false + - state: synd_sec_l + shader: unshaded + map: ["light"] + visible: false + - type: BorgChassis + maxModules: 3 + moduleWhitelist: # Note - the Derelict Assault Borg does not have a traversal module. This is intentional as Assault Borgs have space traversal with their c20 and free space movement, and they can navigate to the station using the pinpointer. + tags: + - BorgModuleGeneric + - BorgModuleSyndicate + - BorgModuleSyndicateAssault + hasMindState: synd_sec_derelict_e + noMindState: synd_sec_derelict + - type: Construction + node: derelictcyborg diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index 4c6facdd4f..6934a405f8 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -1220,8 +1220,6 @@ 0: Alive 200: Critical 250: Dead - - type: StaminaResistance - damageCoefficient: 0.40 - type: entity name: kangaroo diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/asteroid.yml b/Resources/Prototypes/Entities/Mobs/NPCs/asteroid.yml index d2dd761468..909e11e21f 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/asteroid.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/asteroid.yml @@ -19,7 +19,6 @@ group: GenericNumber - type: StatusEffects allowed: - - Stutter - Electrocution - TemporaryBlindness - RadiationProtection diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/elemental.yml b/Resources/Prototypes/Entities/Mobs/NPCs/elemental.yml index ba4c5e3698..eba25717f3 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/elemental.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/elemental.yml @@ -35,7 +35,6 @@ bodyType: KinematicController # Same for all inheritors - type: StatusEffects allowed: - - Stutter - Electrocution - type: Pullable - type: Tag diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml index 279dbe9f54..fd700d7a4c 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml @@ -15,7 +15,6 @@ bodyType: KinematicController # Same for all inheritors - type: StatusEffects allowed: - - Stutter - Electrocution - type: Repairable doAfterDelay: 8 diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/simplemob.yml b/Resources/Prototypes/Entities/Mobs/NPCs/simplemob.yml index 11c0f0d21d..4090138b57 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/simplemob.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/simplemob.yml @@ -19,7 +19,6 @@ baseSprintSpeed : 4 - type: StatusEffects allowed: - - Stutter - Electrocution - TemporaryBlindness - Pacified @@ -93,7 +92,6 @@ baseDecayRate: 0.04 - type: StatusEffects allowed: - - Stutter - Electrocution - TemporaryBlindness - Pacified diff --git a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml index 653e1a22d9..63c63c1160 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml @@ -121,7 +121,7 @@ components: - type: Action icon: { sprite: Structures/Machines/parts.rsi, state: box_0 } - iconOn: Structures/Machines/parts.rsi/box_2.png + iconOn: { sprite: Structures/Machines/parts.rsi, state: box_2 } keywords: [ "AI", "console", "interface" ] priority: -10 @@ -142,7 +142,7 @@ components: - type: Action icon: { sprite: Interface/Actions/actions_ai.rsi, state: comms_console } - iconOn: Interface/Actions/actions_ai.rsi/comms_console.png + iconOn: { sprite: Interface/Actions/actions_ai.rsi, state: comms_console } keywords: [ "AI", "console", "interface" ] priority: -4 - type: InstantAction @@ -156,7 +156,7 @@ components: - type: Action icon: { sprite: Interface/Actions/actions_ai.rsi, state: mass_scanner } - iconOn: Interface/Actions/actions_ai.rsi/mass_scanner.png + iconOn: { sprite: Interface/Actions/actions_ai.rsi, state: comms_console } keywords: [ "AI", "console", "interface" ] priority: -6 - type: InstantAction @@ -179,7 +179,7 @@ components: - type: Action icon: { sprite: Interface/Actions/actions_ai.rsi, state: crew_monitor } - iconOn: Interface/Actions/actions_ai.rsi/crew_monitor.png + iconOn: { sprite: Interface/Actions/actions_ai.rsi, state: crew_monitor } keywords: [ "AI", "console", "interface" ] priority: -8 - type: InstantAction @@ -193,7 +193,7 @@ components: - type: Action icon: { sprite: Interface/Actions/actions_ai.rsi, state: station_records } - iconOn: Interface/Actions/actions_ai.rsi/station_records.png + iconOn: { sprite: Interface/Actions/actions_ai.rsi, state: station_records } keywords: [ "AI", "console", "interface" ] priority: -7 - type: InstantAction diff --git a/Resources/Prototypes/Entities/Mobs/Player/changeling.yml b/Resources/Prototypes/Entities/Mobs/Player/changeling.yml new file mode 100644 index 0000000000..d8d4aac742 --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/Player/changeling.yml @@ -0,0 +1,12 @@ +- type: entity + parent: MobHuman + id: MobLing + name: Urist McLing + suffix: Non-Antag + components: + - type: ChangelingDevour + - type: ChangelingIdentity + - type: ChangelingTransform + - type: ActionGrant + actions: + - ActionRetractableItemArmBlade # Temporary addition, will inevitably be a purchasable in the bio-store diff --git a/Resources/Prototypes/Entities/Mobs/Player/clone.yml b/Resources/Prototypes/Entities/Mobs/Player/clone.yml index 907b694db9..5c59f82744 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/clone.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/clone.yml @@ -16,6 +16,8 @@ # traits - BlackAndWhiteOverlay - Clumsy + - Hemophilia + - ImpairedMobility # - LegsParalyzed (you get healed) - LightweightDrunk - Muted @@ -121,6 +123,7 @@ - Rootable # diona - Sericulture # arachnids - MovementSpeedModifier # moths when weightless + - JumpAbility # vulp leaping copyEquipment: null copyInternalStorage: false copyImplants: false diff --git a/Resources/Prototypes/Entities/Mobs/Player/dragon.yml b/Resources/Prototypes/Entities/Mobs/Player/dragon.yml index b6b344d6b5..441751a80b 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/dragon.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/dragon.yml @@ -100,7 +100,6 @@ types: {} - type: StatusEffects # Overwriting basesimplemob to remove flash, getting flashed as dragon just feelsbad allowed: - - Stutter - Electrocution - TemporaryBlindness - Pacified diff --git a/Resources/Prototypes/Entities/Mobs/Player/mothershipcore.yml b/Resources/Prototypes/Entities/Mobs/Player/mothershipcore.yml index 4d729889c2..3535a55e7f 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/mothershipcore.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/mothershipcore.yml @@ -90,6 +90,17 @@ maxIntensity: 100 intensitySlope: 2 totalIntensity: 200 + - type: SurveillanceCameraSpeaker + - type: SurveillanceCameraMonitor + - type: RoboticsConsole + allowBorgControl: false + radioChannel: Xenoborg + - type: DeviceNetwork + deviceNetId: Wireless + receiveFrequencyId: Mothership + transmitFrequencyId: Mothership + - type: WirelessNetworkConnection + range: 10000 # mothership can see them from very far - type: WiresPanel - type: ActivatableUI key: enum.LatheUiKey.Key @@ -101,6 +112,10 @@ requireInputValidation: false enum.RadarConsoleUiKey.Key: type: RadarConsoleBoundUserInterface + enum.RoboticsConsoleUiKey.Key: + type: RoboticsConsoleBoundUserInterface + enum.SurveillanceCameraMonitorUiKey.Key: + type: SurveillanceCameraMonitorBoundUserInterface enum.LatheUiKey.Key: type: LatheBoundUserInterface enum.ResearchClientUiKey.Key: @@ -184,9 +199,38 @@ uis: enum.RadarConsoleUiKey.Key: toggleAction: ActionAGhostShowRadar + enum.RoboticsConsoleUiKey.Key: + toggleAction: ActionXenoborgControlMonitor + enum.SurveillanceCameraMonitorUiKey.Key: + toggleAction: ActionXenoborgCameraMonitor - type: ShowElectrocutionHUD - type: PowerMonitoringCableNetworks - type: RadarConsole -# TODO: add xenoborg control interface action (part 5) -# TODO: add xenoborg camera monitor interface action (part 5) +- type: entity + parent: BaseAGhostAction + id: ActionXenoborgControlMonitor + name: Xenoborgs Control Console + description: View the Xenoborgs Control Console + components: + - type: Action + icon: { sprite: Interface/Actions/actions_borg.rsi, state: xenoborg-basic-module } + iconOn: Interface/Actions/actions_borg.rsi/xenoborg-basic-module.png + keywords: [ "Mothership Core", "console", "interface" ] + priority: -6 + - type: InstantAction + event: !type:ToggleIntrinsicUIEvent { key: enum.RoboticsConsoleUiKey.Key } + +- type: entity + parent: BaseAGhostAction + id: ActionXenoborgCameraMonitor + name: Xenoborgs Camera Monitor + description: View the Xenoborgs Camera Monitor + components: + - type: Action + icon: { sprite: Interface/Actions/actions_borg.rsi, state: xenoborg-eye-module } + iconOn: Interface/Actions/actions_borg.rsi/xenoborg-eye-module.png + keywords: [ "Mothership Core", "console", "interface" ] + priority: -6 + - type: InstantAction + event: !type:ToggleIntrinsicUIEvent { key: enum.SurveillanceCameraMonitorUiKey.Key } diff --git a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml index 303f7dc676..8542afbdc1 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml @@ -170,6 +170,10 @@ - AiHolder suffix: Empty components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: WarpPoint blacklist: tags: @@ -195,6 +199,7 @@ - type: StationAiVision - type: InteractionOutline - type: Sprite + snapCardinals: true sprite: Mobs/Silicon/station_ai.rsi layers: - state: base @@ -383,7 +388,7 @@ borg_module: - BorgModuleOperative - BorgModuleL6C - - BorgModuleEsword + - BorgModuleDoubleEsword - type: ItemSlots slots: cell_slot: @@ -453,8 +458,44 @@ - PlayerBorgSyndicateSaboteurGhostRole - type: entity - id: PlayerBorgDerelict + parent: EngineeringBorgChassisDerelict + id: PlayerEngineeringBorgDerelict + suffix: Battery, Module + components: + - type: ContainerFill + containers: + borg_brain: + - PositronicBrain + borg_module: + - BorgModuleTool + - BorgModuleFireExtinguisher + - BorgModuleConstruction + - BorgModuleRCD + - BorgModuleCable + - type: ItemSlots + slots: + cell_slot: + name: power-cell-slot-component-slot-name-default + startingItem: PowerCellHigh + - type: RandomMetadata + nameSegments: [NamesBorg] + +- type: entity + parent: PlayerEngineeringBorgDerelict + id: PlayerEngineeringBorgDerelictGhostRole + suffix: Ghost role + components: + - type: GhostRole + name: ghost-role-information-derelict-engineering-cyborg-name + description: ghost-role-information-derelict-engineering-cyborg-description + rules: ghost-role-information-silicon-rules + raffle: + settings: default + - type: GhostTakeoverAvailable + +- type: entity parent: BorgChassisDerelict + id: PlayerBorgDerelict suffix: Battery, Module components: - type: ContainerFill @@ -473,8 +514,8 @@ nameSegments: [NamesBorg] - type: entity - id: PlayerBorgDerelictGhostRole parent: PlayerBorgDerelict + id: PlayerBorgDerelictGhostRole suffix: Ghost role components: - type: GhostRole @@ -484,3 +525,143 @@ raffle: settings: default - type: GhostTakeoverAvailable + +- type: entity + parent: JanitorBorgChassisDerelict + id: PlayerJanitorBorgDerelict + suffix: Battery, Module + components: + - type: ContainerFill + containers: + borg_brain: + - PositronicBrain + borg_module: + - BorgModuleTool + - BorgModuleFireExtinguisher + - BorgModuleCleaning + - BorgModuleCustodial + - type: ItemSlots + slots: + cell_slot: + name: power-cell-slot-component-slot-name-default + startingItem: PowerCellHigh + - type: RandomMetadata + nameSegments: [NamesBorg] + +- type: entity + parent: PlayerJanitorBorgDerelict + id: PlayerJanitorBorgDerelictGhostRole + suffix: Ghost role + components: + - type: GhostRole + name: ghost-role-information-derelict-janitor-cyborg-name + description: ghost-role-information-derelict-janitor-cyborg-description + rules: ghost-role-information-silicon-rules + raffle: + settings: default + - type: GhostTakeoverAvailable + +- type: entity + parent: MedicalBorgChassisDerelict + id: PlayerMedicalBorgDerelict + suffix: Battery, Module + components: + - type: ContainerFill + containers: + borg_brain: + - PositronicBrain + borg_module: + - BorgModuleTool + - BorgModuleFireExtinguisher + - BorgModuleChemical + - BorgModuleTopicals + - BorgModuleRescue + - type: ItemSlots + slots: + cell_slot: + name: power-cell-slot-component-slot-name-default + startingItem: PowerCellHigh + - type: RandomMetadata + nameSegments: [NamesBorg] + +- type: entity + parent: PlayerMedicalBorgDerelict + id: PlayerMedicalBorgDerelictGhostRole + suffix: Ghost role + components: + - type: GhostRole + name: ghost-role-information-derelict-medical-cyborg-name + description: ghost-role-information-derelict-medical-cyborg-description + rules: ghost-role-information-silicon-rules + raffle: + settings: default + - type: GhostTakeoverAvailable + +- type: entity + parent: MiningBorgChassisDerelict + id: PlayerMiningBorgDerelict + suffix: Battery, Module + components: + - type: ContainerFill + containers: + borg_brain: + - PositronicBrain + borg_module: + - BorgModuleTool #No fire extinguisher, traversal is better + - BorgModuleMining + - BorgModuleTraversal + - BorgModuleAppraisal + - type: ItemSlots + slots: + cell_slot: + name: power-cell-slot-component-slot-name-default + startingItem: PowerCellHigh + - type: RandomMetadata + nameSegments: [NamesBorg] + +- type: entity + parent: PlayerMiningBorgDerelict + id: PlayerMiningBorgDerelictGhostRole + suffix: Ghost role + components: + - type: GhostRole + name: ghost-role-information-derelict-mining-cyborg-name + description: ghost-role-information-derelict-mining-cyborg-description + rules: ghost-role-information-silicon-rules + raffle: + settings: default + - type: GhostTakeoverAvailable + +- type: entity + parent: SyndicateAssaultBorgChassisDerelict + id: PlayerSyndicateAssaultBorgDerelict + suffix: Battery, Module + components: + - type: ContainerFill + containers: + borg_brain: + - PositronicBrain + borg_module: + - BorgModuleOperative + - BorgModuleC20r + - BorgModuleEsword + - type: ItemSlots + slots: + cell_slot: + name: power-cell-slot-component-slot-name-default + startingItem: PowerCellHyper + - type: RandomMetadata + nameSegments: [NamesDeathCommando] + +- type: entity + parent: PlayerSyndicateAssaultBorgDerelict + id: PlayerBorgSyndicateDerelictGhostRole + suffix: Ghost role + components: + - type: GhostRole + name: ghost-role-information-derelict-syndicate-assault-cyborg-name + description: ghost-role-information-derelict-syndicate-assault-cyborg-description + rules: ghost-role-information-silicon-rules + raffle: + settings: default + - type: GhostTakeoverAvailable diff --git a/Resources/Prototypes/Entities/Mobs/Species/base.yml b/Resources/Prototypes/Entities/Mobs/Species/base.yml index 2fa8db6231..8826e7dee2 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/base.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/base.yml @@ -120,10 +120,7 @@ - !type:WashCreamPieReaction - type: StatusEffects allowed: - - Stutter - Electrocution - - Drunk - - SlurredSpeech - RatvarianLanguage - PressureImmunity - Muted diff --git a/Resources/Prototypes/Entities/Mobs/Species/moth.yml b/Resources/Prototypes/Entities/Mobs/Species/moth.yml index 54ad2d0f47..0543f30931 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/moth.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/moth.yml @@ -54,7 +54,7 @@ - type: Flammable damage: types: - Heat: 4.5 # moths burn more easily + Heat: 2.5 # moths burn more easily - type: Temperature # Moths hate the heat and thrive in the cold. heatDamageThreshold: 320 coldDamageThreshold: 230 diff --git a/Resources/Prototypes/Entities/Mobs/base.yml b/Resources/Prototypes/Entities/Mobs/base.yml index 0cc44a67c5..6a72819359 100644 --- a/Resources/Prototypes/Entities/Mobs/base.yml +++ b/Resources/Prototypes/Entities/Mobs/base.yml @@ -9,6 +9,7 @@ noRot: true drawdepth: Mobs - type: MobCollision + - type: GravityAffected - type: Physics bodyType: KinematicController - type: Fixtures @@ -84,6 +85,21 @@ - !type:PlaySoundBehavior sound: collection: MeatLaserImpact + - trigger: + !type:DamageTypeTrigger + damageType: Radiation + damage: 15 + behaviors: + - !type:PopupBehavior + popup: mouth-taste-metal + popupType: LargeCaution + targetOnly: true + - trigger: + !type:DamageTypeTrigger + damageType: Radiation + damage: 40 + behaviors: + - !type:VomitBehavior - type: RadiationReceiver - type: Stamina - type: MobState diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml index c031559b58..211bf12b16 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml @@ -24,7 +24,7 @@ Quantity: 14 - ReagentId: Sugar Quantity: 5 - - type: Food #All pies here made with a pie tin; unless you're some kind of savage, you're probably not destroying this when you eat or slice the pie! + - type: Edible #It's actually possible now to have a pie stored in a tin rather than spawning trash when you finish eating it. But right now I'm just cleaning up. trash: - FoodPlateTin - type: SliceableFood diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml index 3841dc06b0..551ea802ca 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml @@ -443,6 +443,7 @@ - Trash - BananaPeel - Ruminant + - WhitelistChameleon - HamsterWearable - type: SolutionContainerManager @@ -459,7 +460,7 @@ requiresSpecialDigestion: true - type: Clothing sprite: Objects/Specific/Hydroponics/banana.rsi - equippedState: peel-equipped-HELMET + equippedPrefix: peel slots: - HEAD quickEquip: false @@ -471,7 +472,7 @@ components: - type: Clothing sprite: Objects/Specific/Hydroponics/banana.rsi - equippedState: baked-peel-equipped-HELMET + equippedPrefix: baked-peel - type: Sprite sprite: Objects/Specific/Hydroponics/banana.rsi state: baked-peel @@ -502,7 +503,7 @@ heldPrefix: peel - type: Clothing sprite: Objects/Specific/Hydroponics/mimana.rsi - equippedState: equipped-HELMET + equippedPrefix: peel - type: Slippery slipSound: path: /Audio/Effects/slip.ogg @@ -523,7 +524,7 @@ - type: Slippery - type: Clothing sprite: Objects/Materials/materials.rsi - equippedState: peel-equipped-HELMET + equippedPrefix: peel - type: entity name: carrot diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/taco.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/taco.yml index d715704770..d680d16765 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/taco.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/taco.yml @@ -132,7 +132,7 @@ name: beef taco supreme parent: FoodTacoBase id: FoodTacoBeefSupreme - description: It's like a regular beef taco, but surpeme! + description: It's like a regular beef taco, but supreme! components: - type: Food - type: Sprite @@ -151,7 +151,7 @@ name: chicken taco supreme parent: FoodTacoBase id: FoodTacoChickenSupreme - description: It's like a regular chicken taco, but surpeme! + description: It's like a regular chicken taco, but supreme! components: - type: Food - type: Sprite diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml index f645539035..eec282acda 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml @@ -1131,6 +1131,20 @@ Cable: 2 Glass: 1 +- type: entity + parent: BaseMachineCircuitboard + id: SurveillanceCameraWirelessRouterXenoborgCircuitboard + name: xenoborg camera wireless router + description: A machine printed circuit board for a xenoborg camera wireless router. + components: + - type: Sprite + state: generic + - type: MachineBoard + prototype: SurveillanceCameraWirelessRouterXenoborg + stackRequirements: + Cable: 2 + Glass: 1 + - type: entity id: SurveillanceWirelessCameraMovableCircuitboard parent: BaseMachineCircuitboard diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml index 82a149bf27..459030d8a9 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml @@ -260,6 +260,17 @@ state: cpu_service - type: ComputerBoard prototype: ComputerSurveillanceWirelessCameraMonitor + +- type: entity + parent: BaseComputerCircuitboard + id: XenoborgCameraMonitorCircuitboard + name: xenoborg camera monitor board + description: A computer printed circuit board for a xenoborg camera monitor. + components: + - type: Sprite + state: cpu_science + - type: ComputerBoard + prototype: ComputerSurveillanceWirelessXenoborgCameraMonitor - type: entity parent: BaseComputerCircuitboard @@ -528,6 +539,17 @@ - type: ComputerBoard prototype: ComputerRoboticsControl +- type: entity + parent: BaseComputerCircuitboard + id: ComputerXenoborgsControlCircuitboard + name: xenoborg control console board + description: A computer printed circuit board for a xenoborg control console. + components: + - type: Sprite + state: cpu_science + - type: ComputerBoard + prototype: ComputerXenoborgsControl + - type: entity parent: BaseComputerCircuitboard id: StationAiUploadCircuitboard diff --git a/Resources/Prototypes/Entities/Objects/Devices/Electronics/door_access.yml b/Resources/Prototypes/Entities/Objects/Devices/Electronics/door_access.yml index 6176b6b2ea..1e5cf63b74 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Electronics/door_access.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Electronics/door_access.yml @@ -318,3 +318,11 @@ components: - type: AccessReader access: [["Security"], ["Command"]] + +- type: entity + parent: DoorElectronics + id: DoorElectronicsXenoborg + suffix: Xenoborg, Locked + components: + - type: AccessReader + access: [["Xenoborg"]] diff --git a/Resources/Prototypes/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/Entities/Objects/Devices/pda.yml index 92bd4297ad..1153047e7d 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/pda.yml @@ -1467,7 +1467,7 @@ - MedTekCartridge - type: entity - parent: [BasePDA, VoiceLock] + parent: [BasePDA, SelectableLock] id: ChameleonPDA name: passenger PDA description: Why isn't it gray? diff --git a/Resources/Prototypes/Entities/Objects/Fun/bike_horn.yml b/Resources/Prototypes/Entities/Objects/Fun/bike_horn.yml index f124be8a42..e5f68aac8f 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/bike_horn.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/bike_horn.yml @@ -158,6 +158,8 @@ sprite: Objects/Fun/bananiumhorn.rsi slots: [Belt] quickEquip: false + - type: UseDelay + delay: 3 - type: EmitSoundOnUse sound: collection: BananiumHorn diff --git a/Resources/Prototypes/Entities/Objects/Fun/immovable_rod.yml b/Resources/Prototypes/Entities/Objects/Fun/immovable_rod.yml index e57223e1b4..15f67245f1 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/immovable_rod.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/immovable_rod.yml @@ -6,11 +6,13 @@ - type: Clickable - type: InteractionOutline - type: MovementIgnoreGravity + weightless: true - type: Sprite sprite: Objects/Fun/immovable_rod.rsi state: icon noRot: false - type: ImmovableRod + - type: GravityAffected - type: Physics bodyType: Dynamic linearDamping: 0 @@ -78,8 +80,6 @@ damage: types: Blunt: 190 - - type: MovementIgnoreGravity - gravityState: true - type: InputMover - type: MovementSpeedModifier baseWeightlessAcceleration: 5 diff --git a/Resources/Prototypes/Entities/Objects/Fun/plushies.yml b/Resources/Prototypes/Entities/Objects/Fun/plushies.yml index c0718d022b..fa028c038a 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/plushies.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/plushies.yml @@ -495,7 +495,7 @@ parent: PlushieLizard id: PlushieSpaceLizard #ᵂᵉʰ! name: space lizard plushie - description: An adorable stuffed toy that resembles a lizardperson in an EVA suit. Made by CentComm as a token initiative to combat speciesism in space environments. "Welcome your new colleges as you do this plush, with open arms!" + description: An adorable stuffed toy that resembles a lizardperson in an EVA suit. Made by CentComm as a token initiative to combat speciesism in space environments. "Welcome your new colleagues as you do this plush, with open arms!" components: - type: Sprite sprite: Objects/Fun/Plushies/lizard.rsi diff --git a/Resources/Prototypes/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/Entities/Objects/Fun/toys.yml index 3c142425a0..c1aea7ecd5 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/toys.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/toys.yml @@ -777,7 +777,7 @@ parent: BaseItem id: CardSword name: cardboard sword - description: A cardboard tube thats been fashioned into a sword. + description: A cardboard tube fashioned into the shape of a sword. components: - type: Sprite sprite: Objects/Fun/card_sword.rsi diff --git a/Resources/Prototypes/Entities/Objects/Misc/folders.yml b/Resources/Prototypes/Entities/Objects/Misc/folders.yml index f72d4c3abc..cee720b6ea 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/folders.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/folders.yml @@ -1,6 +1,6 @@ - type: entity - id: BoxFolderNuclearCodes parent: BaseItem + id: BoxFolderNuclearCodes name: nuclear code folder components: - type: Sprite @@ -19,8 +19,8 @@ - type: Appearance - type: entity - id: BoxFolderBase parent: BoxBase + id: BoxFolderBaseEmpty name: folder description: A folder filled with top secret paperwork. components: @@ -62,22 +62,42 @@ - type: Tag tags: - Folder - - type: StorageFill - contents: - - id: Paper - prob: 0.5 - - id: PaperOffice - prob: 0.4 - - id: Paper - prob: 0.3 - - id: PaperOffice - prob: 0.2 - - id: Paper - prob: 0.2 - type: entity - id: BoxFolderRed - parent: BoxFolderBase + abstract: true + id: BoxFolderFill # Include this as a parent prototype to add 0-5 random papers to a folder's inventory when spawned. + suffix: Filled + components: + - type: StorageFill + contents: + - id: Paper + prob: 0.5 + - id: PaperOffice + prob: 0.4 + - id: Paper + prob: 0.3 + - id: PaperOffice + prob: 0.2 + - id: Paper + prob: 0.2 + +- type: entity + abstract: true + id: BoxFolderFillThreePapers # Like BoxFolderFill, but always has exactly three sheets of standard paper; use for roles' startingGear + suffix: 3 papers + components: + - type: StorageFill + contents: + - id: Paper + amount: 3 + +- type: entity + parent: [BoxFolderBaseEmpty, BoxFolderFill] + id: BoxFolderBase + +- type: entity + parent: BoxFolderBaseEmpty + id: BoxFolderRedEmpty suffix: Red components: - type: Sprite @@ -87,8 +107,13 @@ - state: folder-base - type: entity - id: BoxFolderBlue - parent: BoxFolderBase + parent: [BoxFolderRedEmpty, BoxFolderFill] + id: BoxFolderRed + suffix: Red, Filled + +- type: entity + parent: BoxFolderBaseEmpty + id: BoxFolderBlueEmpty suffix: Blue components: - type: Sprite @@ -98,8 +123,13 @@ - state: folder-base - type: entity - id: BoxFolderYellow - parent: BoxFolderBase + parent: [BoxFolderBlueEmpty, BoxFolderFill] + id: BoxFolderBlue + suffix: Blue, Filled + +- type: entity + parent: BoxFolderBaseEmpty + id: BoxFolderYellowEmpty suffix: Yellow components: - type: Sprite @@ -109,18 +139,13 @@ - state: folder-base - type: entity - id: BoxFolderWhite - parent: BoxFolderBase - suffix: White - components: - - type: Sprite - layers: - - state: folder-white - - state: folder-base + parent: [BoxFolderYellowEmpty, BoxFolderFill] + id: BoxFolderYellow + suffix: Yellow, Filled - type: entity - id: BoxFolderGrey - parent: BoxFolderBase + parent: BoxFolderBaseEmpty + id: BoxFolderGreyEmpty suffix: Grey components: - type: Sprite @@ -130,8 +155,13 @@ - state: folder-base - type: entity - id: BoxFolderBlack - parent: BoxFolderBase + parent: [BoxFolderGreyEmpty, BoxFolderFill] + id: BoxFolderGrey + suffix: Grey, Filled + +- type: entity + parent: BoxFolderBaseEmpty + id: BoxFolderBlackEmpty suffix: Black components: - type: Sprite @@ -141,8 +171,13 @@ - state: folder-base - type: entity - id: BoxFolderGreen - parent: BoxFolderBase + parent: [BoxFolderBlackEmpty, BoxFolderFill] + id: BoxFolderBlack + suffix: Black, Filled + +- type: entity + parent: BoxFolderBaseEmpty + id: BoxFolderGreenEmpty suffix: Green components: - type: Sprite @@ -152,10 +187,30 @@ - state: folder-base - type: entity - id: BoxFolderCentCom - name: CentComm folder - parent: BoxFolderBase + parent: [BoxFolderGreenEmpty, BoxFolderFill] + id: BoxFolderGreen + suffix: Green, Filled + +- type: entity + parent: BoxFolderBaseEmpty + id: BoxFolderWhiteEmpty + suffix: White + components: + - type: Sprite + layers: + - state: folder-white + - state: folder-base + +- type: entity + parent: [BoxFolderWhiteEmpty, BoxFolderFill] + id: BoxFolderWhite + suffix: White, Filled + +- type: entity + parent: BoxFolderBaseEmpty + id: BoxFolderCentComEmpty categories: [ DoNotMap ] + name: CentComm folder description: CentComm's miserable little pile of secrets! components: - type: Sprite @@ -164,8 +219,13 @@ - state: folder-base - type: entity - id: BoxFolderClipboard - parent: BoxFolderBase + parent: [BoxFolderCentComEmpty, BoxFolderFill] + id: BoxFolderCentCom + suffix: DO NOT MAP, Filled + +- type: entity + parent: BoxFolderBaseEmpty + id: BoxFolderClipboardEmpty name: clipboard description: The weapon of choice for those on the front lines of bureaucracy. components: @@ -223,8 +283,42 @@ Blunt: 6 - type: entity - id: BoxFolderCentComClipboard - parent: BoxFolderClipboard + parent: [BoxFolderClipboardEmpty, BoxFolderFill] + id: BoxFolderClipboard + +- type: entity + parent: [BoxFolderClipboardEmpty, BoxFolderFillThreePapers] + id: BoxFolderClipboardThreePapers + +- type: entity + parent: BoxFolderClipboardEmpty + id: BoxFolderPlasticClipboardEmpty + name: plastic clipboard + description: A cheap clipboard made of blue plastic. For those who aren't yet ready to wield the bureaucratic might of a proper wooden clipboard. + components: + - type: Sprite + sprite: Objects/Misc/plastic_clipboard.rsi + layers: + - state: clipboard + - state: clipboard_paper + map: ["clipboard_paper"] + visible: false + - state: clipboard_pen + map: ["clipboard_pen"] + visible: false + - state: clipboard_over + - type: Item + sprite: Objects/Misc/plastic_clipboard.rsi + - type: Clothing + sprite: Objects/Misc/plastic_clipboard.rsi + +- type: entity + parent: [BoxFolderPlasticClipboardEmpty, BoxFolderFill] + id: BoxFolderPlasticClipboard + +- type: entity + parent: BoxFolderClipboardEmpty + id: BoxFolderCentComClipboardEmpty name: CentComm clipboard description: A luxurious clipboard upholstered with green velvet. Often seen carried by CentComm officials, seldom seen actually used. components: @@ -245,8 +339,16 @@ sprite: Objects/Misc/cc-clipboard.rsi - type: entity + parent: [BoxFolderCentComClipboardEmpty, BoxFolderFill] + id: BoxFolderCentComClipboard + +- type: entity + parent: [BoxFolderCentComClipboardEmpty, BoxFolderFillThreePapers] + id: BoxFolderCentComClipboardThreePapers + +- type: entity + parent: [BoxFolderClipboardEmpty, BaseGrandTheftContraband] id: BoxFolderQmClipboard - parent: [BoxFolderClipboard, BaseGrandTheftContraband] name: requisition digi-board description: A bulky electric clipboard, filled with shipping orders and financing details. With so many compromising documents, you ought to keep this safe. components: @@ -278,8 +380,6 @@ grid: - 0,0,4,3 quickInsert: true - - type: StorageFill - contents: [] #to override base clipboard fill - type: ItemMapper mapLayers: qm_clipboard_paper: diff --git a/Resources/Prototypes/Entities/Objects/Misc/implanters.yml b/Resources/Prototypes/Entities/Objects/Misc/implanters.yml index e1918ef5e6..316acba6fc 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/implanters.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/implanters.yml @@ -6,89 +6,89 @@ parent: BaseItem abstract: true components: - - type: ItemSlots - - type: ContainerContainer - containers: - implanter_slot: !type:ContainerSlot { } - - type: Implanter + - type: ItemSlots + - type: ContainerContainer + containers: + implanter_slot: !type:ContainerSlot { } + - type: Implanter + whitelist: + components: + - MobState # no chair microbomb + blacklist: + components: + - Guardian # no holoparasite macrobomb wombo combo + tags: + - Unimplantable + currentMode: Draw + implanterSlot: + name: Implant + locked: True + priority: 0 whitelist: - components: - - MobState # no chair microbomb - blacklist: - components: - - Guardian # no holoparasite macrobomb wombo combo tags: - - Unimplantable - currentMode: Draw - implanterSlot: - name: Implant - locked: True - priority: 0 - whitelist: - tags: - - SubdermalImplant - allowDeimplantAll: false - deimplantWhitelist: - - SadTromboneImplant - - LightImplant - - BikeHornImplant - - TrackingImplant - - StorageImplant - - FreedomImplant - - UplinkImplant - - EmpImplant - - ScramImplant - - DnaScramblerImplant - - MicroBombImplant - - MacroBombImplant - - DeathAcidifierImplant - - DeathRattleImplant - - MindShieldImplant - - FakeMindShieldImplant - - RadioImplant - - ChameleonControllerImplant - deimplantFailureDamage: - types: - Cellular: 50 - Heat: 10 - - type: Sprite - sprite: Objects/Specific/Medical/implanter.rsi - state: implanter0 - layers: - - state: implanter0 - map: [ "implantOnly" ] - visible: true - - state: implanter1 - map: [ "implantFull" ] - visible: false - - type: Item - sprite: Objects/Specific/Medical/implanter.rsi - heldPrefix: implanter - size: Small - - type: Appearance - - type: GenericVisualizer - visuals: - enum.ImplanterVisuals.Full: - implantFull: - True: {visible: true} - False: {visible: false} - enum.ImplanterImplantOnlyVisuals.ImplantOnly: - implantOnly: - True: {state: broken} - False: {state: implanter0} - - type: UserInterface - interfaces: - enum.DeimplantUiKey.Key: - type: DeimplantBoundUserInterface + - SubdermalImplant + allowDeimplantAll: false + deimplantWhitelist: + - SadTromboneImplant + - LightImplant + - BikeHornImplant + - TrackingImplant + - StorageImplant + - FreedomImplant + - UplinkImplant + - EmpImplant + - ScramImplant + - DnaScramblerImplant + - MicroBombImplant + - MacroBombImplant + - DeathAcidifierImplant + - DeathRattleImplant + - MindShieldImplant + - FakeMindShieldImplant + - RadioImplant + - ChameleonControllerImplant + deimplantFailureDamage: + types: + Cellular: 50 + Heat: 10 + - type: Sprite + sprite: Objects/Specific/Medical/implanter.rsi + state: implanter0 + layers: + - state: implanter0 + map: [ "implantOnly" ] + visible: true + - state: implanter1 + map: [ "implantFull" ] + visible: false + - type: Item + sprite: Objects/Specific/Medical/implanter.rsi + heldPrefix: implanter + size: Small + - type: Appearance + - type: GenericVisualizer + visuals: + enum.ImplanterVisuals.Full: + implantFull: + True: {visible: true} + False: {visible: false} + enum.ImplanterImplantOnlyVisuals.ImplantOnly: + implantOnly: + True: {state: broken} + False: {state: implanter0} + - type: UserInterface + interfaces: + enum.DeimplantUiKey.Key: + type: DeimplantBoundUserInterface - type: entity id: Implanter parent: BaseImplanter description: A disposable syringe exclusively designed for the injection and extraction of subdermal implants. components: - - type: Tag - tags: - - Trash + - type: Tag + tags: + - Trash - type: entity parent: Implanter @@ -108,18 +108,18 @@ description: A disposable syringe exclusively designed for the injection of subdermal implants. abstract: true components: - - type: Sprite - sprite: Objects/Specific/Medical/implanter.rsi - state: implanter0 - layers: - - state: implanter1 - map: [ "implantFull" ] - visible: true - - state: implanter0 - map: [ "implantOnly" ] - - type: Implanter - currentMode: Inject - implantOnly: true + - type: Sprite + sprite: Objects/Specific/Medical/implanter.rsi + state: implanter0 + layers: + - state: implanter1 + map: [ "implantFull" ] + visible: true + - state: implanter0 + map: [ "implantOnly" ] + - type: Implanter + currentMode: Inject + implantOnly: true - type: entity id: BaseImplantOnlyImplanterSyndi @@ -128,30 +128,30 @@ description: A compact disposable syringe exclusively designed for the injection of subdermal implants. Make sure to scrub it with soap or a rag to remove residual DNA after use! abstract: true components: - - type: Item - sprite: Objects/Specific/Medical/syndi_implanter.rsi - heldPrefix: implanter - - type: Sprite - sprite: Objects/Specific/Medical/syndi_implanter.rsi - state: implanter1 - layers: - - state: implanter0 - map: [ "implantFull" ] - visible: true - - state: implanter1 - map: [ "implantOnly" ] - - type: GenericVisualizer - visuals: - enum.ImplanterVisuals.Full: - implantFull: - True: {visible: true} - False: {visible: false} - enum.ImplanterImplantOnlyVisuals.ImplantOnly: - implantOnly: - True: {state: broken} - False: {state: implanter1} - - type: Tag - tags: [] + - type: Item + sprite: Objects/Specific/Medical/syndi_implanter.rsi + heldPrefix: implanter + - type: Sprite + sprite: Objects/Specific/Medical/syndi_implanter.rsi + state: implanter1 + layers: + - state: implanter0 + map: [ "implantFull" ] + visible: true + - state: implanter1 + map: [ "implantOnly" ] + - type: GenericVisualizer + visuals: + enum.ImplanterVisuals.Full: + implantFull: + True: {visible: true} + False: {visible: false} + enum.ImplanterImplantOnlyVisuals.ImplantOnly: + implantOnly: + True: {state: broken} + False: {state: implanter1} + - type: Tag + tags: [] #Fun implanters @@ -160,24 +160,24 @@ name: sad trombone implanter parent: BaseImplantOnlyImplanter components: - - type: Implanter - implant: SadTromboneImplant + - type: Implanter + implant: SadTromboneImplant - type: entity id: LightImplanter name: light implanter parent: BaseImplantOnlyImplanter components: - - type: Implanter - implant: LightImplant + - type: Implanter + implant: LightImplant - type: entity id: BikeHornImplanter name: bike horn implanter parent: BaseImplantOnlyImplanter components: - - type: Implanter - implant: BikeHornImplant + - type: Implanter + implant: BikeHornImplant #Security implanters @@ -186,8 +186,8 @@ name: tracking implanter parent: BaseImplantOnlyImplanter components: - - type: Implanter - implant: TrackingImplant + - type: Implanter + implant: TrackingImplant #Traitor implanters @@ -196,16 +196,16 @@ name: storage implanter parent: BaseImplantOnlyImplanterSyndi components: - - type: Implanter - implant: StorageImplant + - type: Implanter + implant: StorageImplant - type: entity id: FreedomImplanter name: freedom implanter parent: BaseImplantOnlyImplanterSyndi components: - - type: Implanter - implant: FreedomImplant + - type: Implanter + implant: FreedomImplant - type: entity id: RadioImplanter @@ -228,24 +228,24 @@ name: EMP implanter parent: BaseImplantOnlyImplanterSyndi components: - - type: Implanter - implant: EmpImplant + - type: Implanter + implant: EmpImplant - type: entity id: ScramImplanter name: scram implanter parent: BaseImplantOnlyImplanterSyndi components: - - type: Implanter - implant: ScramImplant + - type: Implanter + implant: ScramImplant - type: entity id: DnaScramblerImplanter name: DNA scrambler implanter parent: BaseImplantOnlyImplanterSyndi components: - - type: Implanter - implant: DnaScramblerImplant + - type: Implanter + implant: DnaScramblerImplant - type: entity id: ChameleonControllerImplanter @@ -262,24 +262,24 @@ name: micro-bomb implanter parent: BaseImplantOnlyImplanterSyndi components: - - type: Implanter - implant: MicroBombImplant + - type: Implanter + implant: MicroBombImplant - type: entity id: MacroBombImplanter name: macro-bomb implanter parent: BaseImplantOnlyImplanterSyndi components: - - type: Implanter - implant: MacroBombImplant + - type: Implanter + implant: MacroBombImplant - type: entity id: DeathRattleImplanter name: death rattle implanter parent: BaseImplantOnlyImplanterSyndi components: - - type: Implanter - implant: DeathRattleImplant + - type: Implanter + implant: DeathRattleImplant - type: entity id: DeathAcidifierImplanter @@ -304,8 +304,8 @@ name: mindshield implanter parent: BaseImplantOnlyImplanter components: - - type: Implanter - implant: MindShieldImplant + - type: Implanter + implant: MindShieldImplant # Centcomm implanters diff --git a/Resources/Prototypes/Entities/Objects/Misc/inflatable_wall.yml b/Resources/Prototypes/Entities/Objects/Misc/inflatable_wall.yml index 0641084847..577ab1dddd 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/inflatable_wall.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/inflatable_wall.yml @@ -33,6 +33,7 @@ - type: DisassembleOnAltVerb prototypeToSpawn: InflatableWallStack1 disassembleTime: 3 + - type: InflatableSafeDisassembly - type: Airtight - type: Transform anchored: true @@ -81,5 +82,6 @@ - type: DisassembleOnAltVerb prototypeToSpawn: InflatableDoorStack1 disassembleTime: 3 + - type: InflatableSafeDisassembly - type: Occluder enabled: false diff --git a/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml b/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml index 6a4ad24664..5ff8c79fb4 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml @@ -19,18 +19,18 @@ description: This implant plays a sad tune when the user dies. categories: [ HideSpawnMenu ] components: - - type: SubdermalImplant - whitelist: - components: - - MobState # admeme implanting a chair with trombone implant needs to give the chair mobstate so it can die first - - type: TriggerOnMobstateChange - mobState: - - Dead - - type: EmitSoundOnTrigger - sound: - collection: SadTrombone - params: - variation: 0.125 + - type: SubdermalImplant + whitelist: + components: + - MobState # admeme implanting a chair with trombone implant needs to give the chair mobstate so it can die first + - type: TriggerOnMobstateChange + mobState: + - Dead + - type: EmitSoundOnTrigger + sound: + collection: SadTrombone + params: + variation: 0.125 - type: entity parent: BaseSubdermalImplant @@ -39,20 +39,20 @@ description: This implant emits light from the user's skin on activation. categories: [ HideSpawnMenu ] components: - - type: SubdermalImplant - implantAction: ActionToggleLight - - type: PointLight - enabled: false - radius: 2.5 - softness: 5 - mask: /Textures/Effects/LightMasks/cone.png - autoRot: true - - type: Tag - tags: - - SubdermalImplant - - HideContextMenu - - Flashlight - - type: UnpoweredFlashlight + - type: SubdermalImplant + implantAction: ActionToggleLight + - type: PointLight + enabled: false + radius: 2.5 + softness: 5 + mask: /Textures/Effects/LightMasks/cone.png + autoRot: true + - type: Tag + tags: + - SubdermalImplant + - HideContextMenu + - Flashlight + - type: UnpoweredFlashlight - type: entity parent: BaseSubdermalImplant @@ -108,6 +108,7 @@ description: This implant grants hidden storage within a person's body using bluespace technology. categories: [ HideSpawnMenu ] components: + - type: StorageImplant - type: SubdermalImplant implantAction: ActionOpenStorageImplant whitelist: @@ -280,6 +281,10 @@ components: - type: SubdermalImplant permanent: true + - type: ReplacementImplant + whitelist: + tags: + - MicroBomb # replace microbomb implant with macrobomb - type: TriggerOnMobstateChange #activates the timer mobState: - Dead @@ -306,9 +311,9 @@ canCreateVacuum: true - type: Tag tags: - - SubdermalImplant - - HideContextMenu - - MacroBomb + - SubdermalImplant + - HideContextMenu + - MacroBomb - type: entity parent: BaseSubdermalImplant @@ -362,9 +367,11 @@ description: This implant allows the implanter to produce a fake signal that NT security huds use to identify individuals implanted with a mindshield. categories: [ HideSpawnMenu ] components: - - type: SubdermalImplant - implantAction: FakeMindShieldToggleAction - - type: FakeMindShieldImplant + - type: SubdermalImplant + implantAction: FakeMindShieldToggleAction + implantComponents: + - type: FakeMindShield # TODO: put the component on the implant and use implant relay events for the status icon + - type: FakeMindShieldImplant # Sec and Command implants diff --git a/Resources/Prototypes/Entities/Objects/Misc/tiles.yml b/Resources/Prototypes/Entities/Objects/Misc/tiles.yml index fcd25b80bf..6670114bdf 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/tiles.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/tiles.yml @@ -1768,6 +1768,20 @@ - type: Stack stackType: FloorTileXenoMaint +- type: entity + id: FloorTileItemXenoborg + parent: FloorTileItemBase + name: xenoborg floor + components: + - type: Sprite + state: xenoborg-floor + - type: FloorTile + outputs: + - Plating + - FloorXenoborg + - type: Stack + stackType: FloorTileXenoborg + - type: entity parent: FloorTileItemDark id: FloorTileItemDarkSquiggly diff --git a/Resources/Prototypes/Entities/Objects/Shields/shields.yml b/Resources/Prototypes/Entities/Objects/Shields/shields.yml index 3b64f0c4b1..188f4892b6 100644 --- a/Resources/Prototypes/Entities/Objects/Shields/shields.yml +++ b/Resources/Prototypes/Entities/Objects/Shields/shields.yml @@ -184,15 +184,12 @@ name: cardboard shield parent: BaseShield id: CardShield - description: A shield that wont shield you from much. + description: A shield made of cardboard. Won't protect you from much. components: - type: Sprite state: cardshield-icon - type: Item heldPrefix: cardshield - - type: StaminaResistance - damageCoefficient: 0.95 - worn: true - type: Blocking passiveBlockModifier: coefficients: diff --git a/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml b/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml index 4c4e44c28c..bda5901378 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml @@ -64,6 +64,7 @@ - type: Pullable - type: Physics bodyType: KinematicController + - type: GravityAffected - type: Clickable - type: WiresPanel - type: Fixtures diff --git a/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml b/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml index 02b1afdbc5..edc0040512 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml @@ -489,6 +489,36 @@ - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: tool-module } +- type: entity + id: BorgModuleInflatable + parent: [ BaseBorgModule, BaseProviderBorgModule ] + name: inflatable cyborg module + components: + - type: Sprite + layers: + - state: generic + - state: icon-inflatable + - type: ItemBorgModule + hands: + - item: InflatableDoorStack + hand: + emptyRepresentative: InflatableDoorStack + emptyLabel: borg-slot-inflatable-door-empty + whitelist: + tags: + - Inflatable + - item: InflatableWallStack + hand: + emptyRepresentative: InflatableWallStack + emptyLabel: borg-slot-inflatable-wall-empty + whitelist: + tags: + - Inflatable + - item: BoxInflatable + - item: WeaponMeleeNeedle + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: inflatable-module } + # cargo modules - type: entity id: BorgModuleAppraisal @@ -629,6 +659,9 @@ whitelist: components: - Circuitboard + blacklist: + components: + - SiliconLawProvider - hand: emptyRepresentative: MicroManipulatorStockPart emptyLabel: borg-slot-construction-empty @@ -1132,8 +1165,8 @@ #syndicate modules - type: entity - id: BorgModuleSyndicateWeapon parent: [ BaseBorgModule, BaseProviderBorgModule, BaseSyndicateContraband ] + id: BorgModuleSyndicateWeapon name: weapon cyborg module components: - type: Sprite @@ -1168,8 +1201,8 @@ price: 2500 - type: entity - id: BorgModuleOperative parent: [ BaseBorgModuleSyndicate, BaseProviderBorgModule, BaseSyndicateContraband ] + id: BorgModuleOperative name: operative cyborg module description: A module that comes with a crowbar, an Emag, an Access Breaker and a syndicate pinpointer. components: @@ -1187,42 +1220,76 @@ icon: { sprite: Interface/Actions/actions_borg.rsi, state: syndicate-operative-module } - type: entity - id: BorgModuleEsword parent: [ BaseBorgModuleSyndicate, BaseProviderBorgModule, BaseSyndicateContraband ] + id: BorgModuleEsword name: energy sword cyborg module - description: A module that comes with a double energy sword. + description: A weapons module that comes with an energy sword. components: - - type: Sprite - layers: - - state: syndicate - - state: icon-syndicate - - type: ItemBorgModule - hands: - - item: CyborgEnergySwordDouble - - item: PinpointerSyndicateNuclear - - type: BorgModuleIcon - icon: { sprite: Interface/Actions/actions_borg.rsi, state: syndicate-esword-module } + - type: Sprite + layers: + - state: syndicate + - state: icon-syndicate + - type: ItemBorgModule + hands: + - item: CyborgEnergySword + - item: PinpointerSyndicateNuclear + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: syndicate-esword-module } + +- type: entity + id: BorgModuleDoubleEsword + parent: [ BaseBorgModuleSyndicate, BaseProviderBorgModule, BaseSyndicateContraband ] + name: double energy sword cyborg module + description: A weapons module that comes with a double energy sword. + components: + - type: Sprite + layers: + - state: syndicate + - state: icon-syndicate + - type: ItemBorgModule + hands: + - item: CyborgEnergySwordDouble + - item: PinpointerSyndicateNuclear + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: syndicate-desword-module } - type: entity - id: BorgModuleL6C parent: [ BaseBorgModuleSyndicateAssault, BaseProviderBorgModule, BaseSyndicateContraband ] + id: BorgModuleL6C name: L6C ROW cyborg module - description: A module that comes with a L6C. + description: A weapons module that comes with a L6C. components: - - type: Sprite - layers: - - state: syndicate - - state: icon-syndicate - - type: ItemBorgModule - hands: - - item: WeaponLightMachineGunL6C - - item: PinpointerSyndicateNuclear - - type: BorgModuleIcon - icon: { sprite: Interface/Actions/actions_borg.rsi, state: syndicate-l6c-module } + - type: Sprite + layers: + - state: syndicate + - state: icon-syndicate + - type: ItemBorgModule + hands: + - item: WeaponLightMachineGunL6C + - item: PinpointerSyndicateNuclear + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: syndicate-l6c-module } + +- type: entity + parent: [ BaseBorgModuleSyndicateAssault, BaseProviderBorgModule, BaseSyndicateContraband ] + id: BorgModuleC20r + name: C20-r ROW cyborg module + description: A weapons module that comes with a burst-fire C-20r. + components: + - type: Sprite + layers: + - state: syndicate + - state: icon-syndicate + - type: ItemBorgModule + hands: + - item: WeaponSubMachineGunC20rROW + - item: PinpointerSyndicateNuclear + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: syndicate-c20r-module } - type: entity - id: BorgModuleMartyr parent: [ BaseBorgModule, BaseProviderBorgModule, BaseSyndicateContraband ] + id: BorgModuleMartyr name: martyr cyborg module description: "A module that comes with an explosive you probably don't want to handle yourself." components: diff --git a/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/artifact_equipment.yml b/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/artifact_equipment.yml index bdd042df57..8352933f8b 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/artifact_equipment.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/artifact_equipment.yml @@ -138,6 +138,7 @@ - type: AccessReader access: [["Research"], ["Cargo"]] - type: Lock + - type: LockedStorage - type: SuppressArtifactContainer - type: RadiationBlockingContainer resistance: 5 diff --git a/Resources/Prototypes/Entities/Objects/Specific/locks.yml b/Resources/Prototypes/Entities/Objects/Specific/locks.yml index 296b9fd7d9..bcb204cf48 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/locks.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/locks.yml @@ -1,5 +1,5 @@ - type: entity - id: VoiceLock + id: SelectableLock abstract: true components: - type: Lock @@ -11,14 +11,59 @@ useAccess: false unlockingSound: null # TODO: Maybe add sounds but just to the user? lockingSound: null + breakOnAccessBreaker: true # more fun lockTime: 0 unlockTime: 0 - - type: TriggerOnVoice - listenRange: 2 # more fun - startRecordingVerb: voice-trigger-lock-verb-record - recordingVerbMessage: voice-trigger-lock-verb-message - inspectUninitializedLoc: voice-trigger-lock-on-uninitialized - inspectInitializedLoc: voice-trigger-lock-on-examine - type: LockOnTrigger - - type: ActiveListener - - type: VoiceTriggerLock + keysIn: [ lock ] + - type: SelectableComponentAdder + selections: 1 + verbCategoryName: selectable-lock-verb-category-name + entries: + - verbName: selectable-lock-tool-prying-verb + popup: selectable-lock-tool-prying-popup + priority: 4 + componentsToAdd: + - type: TriggerOnSimpleToolUsage + keyOut: lock + - type: SimpleToolUsage + quality: Prying + doAfter: 1 + - verbName: selectable-lock-tool-screwing-verb + popup: selectable-lock-tool-screwing-popup + priority: 3 + componentsToAdd: + - type: TriggerOnSimpleToolUsage + keyOut: lock + - type: SimpleToolUsage + quality: Screwing + doAfter: 1 + - verbName: selectable-lock-tool-cutting-verb + popup: selectable-lock-tool-cutting-popup + priority: 2 + componentsToAdd: + - type: TriggerOnSimpleToolUsage + keyOut: lock + - type: SimpleToolUsage + quality: Cutting + doAfter: 1 + # no anchoring since some objects might be anchorable + # no pulsing because it conflicts with the linking ability of the multitool + - verbName: selectable-lock-voice-verb + popup: selectable-lock-voice-popup + priority: 1 + componentsToAdd: + - type: TriggerOnVoice + keyOut: lock + listenRange: 2 # more fun + startRecordingVerb: voice-trigger-lock-verb-record + recordingVerbMessage: voice-trigger-lock-verb-message + inspectUninitializedLoc: voice-trigger-lock-on-uninitialized + inspectInitializedLoc: voice-trigger-lock-on-examine + - type: ActiveListener + - type: VoiceTriggerLock + - verbName: selectable-lock-no-lock-verb + popup: selectable-lock-no-lock-popup + priority: 0 + componentsToAdd: null + diff --git a/Resources/Prototypes/Entities/Objects/Tools/inflatable_wall.yml b/Resources/Prototypes/Entities/Objects/Tools/inflatable_wall.yml index f5e05b4e28..4f55d5c164 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/inflatable_wall.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/inflatable_wall.yml @@ -5,21 +5,24 @@ description: A folded membrane which rapidly expands into a large cubical shape on activation. suffix: Full components: - - type: Stack - stackType: InflatableWall - count: 10 - - type: Sprite - sprite: Objects/Misc/inflatable_wall.rsi - state: item_wall - - type: Item - sprite: Objects/Misc/inflatable_wall.rsi - size: Small - - type: SpawnAfterInteract - prototype: InflatableWall - doAfter: 1 - removeOnInteract: true - - type: Clickable - - type: PhysicalComposition + - type: Stack + stackType: InflatableWall + count: 10 + - type: Sprite + sprite: Objects/Misc/inflatable_wall.rsi + state: item_wall + - type: Item + sprite: Objects/Misc/inflatable_wall.rsi + size: Small + - type: SpawnAfterInteract + prototype: InflatableWall + doAfter: 1 + removeOnInteract: true + - type: Clickable + - type: PhysicalComposition + - type: Tag + tags: + - Inflatable # TODO: Add stack sprites + visuals. - type: entity @@ -29,21 +32,24 @@ description: A folded membrane which rapidly expands into a large cubical shape on activation. suffix: Full components: - - type: Stack - stackType: InflatableDoor - count: 4 - - type: Sprite - sprite: Objects/Misc/inflatable_door.rsi - state: item_door - - type: Item - sprite: Objects/Misc/inflatable_door.rsi - size: Small - - type: SpawnAfterInteract - prototype: InflatableDoor - doAfter: 1 - removeOnInteract: true - - type: Clickable - - type: PhysicalComposition + - type: Stack + stackType: InflatableDoor + count: 4 + - type: Sprite + sprite: Objects/Misc/inflatable_door.rsi + state: item_door + - type: Item + sprite: Objects/Misc/inflatable_door.rsi + size: Small + - type: SpawnAfterInteract + prototype: InflatableDoor + doAfter: 1 + removeOnInteract: true + - type: Clickable + - type: PhysicalComposition + - type: Tag + tags: + - Inflatable # TODO: Add stack sprites + visuals. - type: entity @@ -51,27 +57,27 @@ id: InflatableWallStack5 suffix: 5 components: - - type: Sprite - state: item_wall - - type: Stack - count: 5 + - type: Sprite + state: item_wall + - type: Stack + count: 5 - type: entity parent: InflatableWallStack id: InflatableWallStack1 suffix: 1 components: - - type: Sprite - state: item_wall - - type: Stack - count: 1 + - type: Sprite + state: item_wall + - type: Stack + count: 1 - type: entity parent: InflatableDoorStack id: InflatableDoorStack1 suffix: 1 components: - - type: Sprite - state: item_door - - type: Stack - count: 1 + - type: Sprite + state: item_door + - type: Stack + count: 1 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/toy.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/toy.yml index cfe080da6d..3e4235f677 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/toy.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/toy.yml @@ -24,7 +24,7 @@ - Trash - type: Ammo - type: Sprite - sprite: Objects/Fun/Foam/foam_crossbow.rsi + sprite: Objects/Fun/Foam/foam_dart.rsi layers: - state: foamdart - type: EmbeddableProjectile diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml index 4b215ec90a..3b034eafbb 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml @@ -215,10 +215,10 @@ - type: Appearance - type: entity - name: practice laser carbine + name: laser carbine parent: [BaseWeaponBattery, BaseGunWieldable] - id: WeaponLaserCarbinePractice - description: This modified laser carbine fires nearly harmless beams in the 40-watt range, for target practice. + id: WeaponLaserCarbine + description: Favoured by Nanotrasen Security for being cheap and easy to use. components: - type: Item size: Large @@ -241,23 +241,24 @@ selectedMode: SemiAuto availableModes: - SemiAuto - - type: HitscanBatteryAmmoProvider - proto: RedLaserPractice - fireCost: 62.5 - - type: StaticPrice - price: 300 - -- type: entity - name: laser carbine - parent: [WeaponLaserCarbinePractice, BaseGunWieldable, BaseSecurityContraband] - id: WeaponLaserCarbine - description: Favoured by Nanotrasen Security for being cheap and easy to use. - components: - - type: StaticPrice - price: 420 - type: HitscanBatteryAmmoProvider proto: RedLaser fireCost: 62.5 + - type: StaticPrice + price: 420 + +- type: entity + name: practice laser carbine + parent: [WeaponLaserCarbine, BaseGunWieldable] + id: WeaponLaserCarbinePractice + description: This modified laser carbine fires nearly harmless beams in the 40-watt range, for target practice. + components: + - type: StaticPrice + price: 300 + - type: HitscanBatteryAmmoProvider + proto: RedLaserPractice + fireCost: 62.5 + - type: PacifismAllowedGun - type: entity name: pulse pistol @@ -508,6 +509,7 @@ tags: - Taser - Sidearm + - type: PacifismAllowedGun - type: entity name: disabler @@ -536,6 +538,7 @@ guides: - Security - Antagonists + - type: PacifismAllowedGun - type: entity name: disabler SMG @@ -576,6 +579,7 @@ - type: Appearance - type: StaticPrice price: 260 + - type: PacifismAllowedGun - type: entity name: taser diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/arrows.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/arrows.yml index 1e61fa3295..3f9a2d5435 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/arrows.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/arrows.yml @@ -190,7 +190,7 @@ parent: BaseArrow id: ArrowCard name: cardboard arrow - description: Cant kill no matter how hard you try. + description: Careful, you'll poke an eye out! components: - type: Sprite sprite: Objects/Weapons/Guns/Projectiles/arrows.rsi @@ -209,4 +209,4 @@ damage: 10 - type: Construction graph: CardArrow - node: CardArrow \ No newline at end of file + node: CardArrow diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml index 1cf6ab9a94..cff52ee3a3 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml @@ -925,6 +925,7 @@ Quantity: 30 - type: EmitSoundOnTrigger sound: /Audio/Items/smoke_grenade_smoke.ogg + positional: true - type: ExplodeOnTrigger - type: Explosive explosionType: Default diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml index f069b4a918..2ecaaec89e 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml @@ -123,6 +123,47 @@ - type: StaticPrice price: 5000 +- type: entity + name: C-20r ROW #I think ROW stands for Recharging Onboard Weapon so i'm following the L6C's example + id: WeaponSubMachineGunC20rROW + parent: BaseItem + description: A burst-fire C-20r submachine gun for use by cyborgs. Creates .35 caliber ammo on the fly from an internal ammo fabricator, which slowly self-charges. + components: + - type: Gun + minAngle: 2 + maxAngle: 16 + angleIncrease: 4 + angleDecay: 16 + fireRate: 8 + burstFireRate: 8 + selectedMode: Burst + availableModes: + - Burst + soundGunshot: + path: /Audio/Weapons/Guns/Gunshots/c-20r.ogg + - type: Sprite + sprite: Objects/Weapons/Guns/SMGs/c20r.rsi + layers: + - state: base + map: ["enum.GunVisualLayers.Base"] + - state: mag-5 + map: ["enum.GunVisualLayers.Mag"] + - type: Item + size: Huge + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + - type: ProjectileBatteryAmmoProvider + proto: CartridgePistol + fireCost: 100 + - type: Battery + maxCharge: 3000 + startingCharge: 3000 + - type: BatterySelfRecharger + autoRecharge: true + autoRechargeRate: 25 + - type: AmmoCounter + - type: entity name: Drozd parent: [BaseWeaponSubMachineGun, BaseSecurityContraband] diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Turrets/turrets_energy.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Turrets/turrets_energy.yml index 40c67c898d..1fe926294c 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Turrets/turrets_energy.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Turrets/turrets_energy.yml @@ -5,6 +5,10 @@ name: sentry turret description: A high-tech autonomous weapons system designed to keep unauthorized personnel out of sensitive areas. components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: Fixtures fixtures: body: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/cane.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/cane.yml index 2847b723d8..fcf0b91f8e 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/cane.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/cane.yml @@ -11,6 +11,7 @@ size: Normal sprite: Objects/Weapons/Melee/cane.rsi - type: Appearance + - type: MobilityAid - type: MeleeWeapon wideAnimationRotation: 45 damage: @@ -41,7 +42,7 @@ attackRate: 1.5 damage: types: - Slash: 14 + Slash: 17 soundHit: path: /Audio/Weapons/bladeslice.ogg - type: Item @@ -53,7 +54,7 @@ - type: DisarmMalus - type: entity - parent: [Cane, VoiceLock] + parent: [Cane, SelectableLock] id: CaneSheath suffix: Empty components: @@ -83,6 +84,7 @@ - CaneBlade insertSound: /Audio/Items/sheath.ogg ejectSound: /Audio/Items/unsheath.ogg + priority: 3 - type: ItemMapper mapLayers: cane: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml index f634425006..04b65ddb6b 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml @@ -159,7 +159,7 @@ - type: entity name: pen - parent: [BaseMeleeWeaponEnergy, VoiceLock] + parent: [BaseMeleeWeaponEnergy, SelectableLock] id: EnergyDagger suffix: E-Dagger description: 'A dark ink pen.' @@ -397,10 +397,17 @@ spread: 75 # Borgs + +- type: entity + parent: EnergySword + id: CyborgEnergySword + suffix: For Borgs + description: A very loud & dangerous sword with a beam made of pure, concentrated plasma. Specially designed for syndicate cyborgs. + - type: entity - suffix: One-Handed, For Borgs parent: EnergySwordDouble id: CyborgEnergySwordDouble # why is this invalid if ID is BorgEnergySwordDouble + suffix: One-Handed, For Borgs description: Syndicate Command Interns thought that having one blade on the energy sword was not enough. Specially designed for syndicate cyborgs. components: # could add energy-draining like the L6C - type: Wieldable diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/offset_cane.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/offset_cane.yml index 1d2081fe93..12e2e9ae70 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/offset_cane.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/offset_cane.yml @@ -10,6 +10,7 @@ - type: Item size: Normal sprite: Objects/Weapons/Melee/offset_canes/standard.rsi + - type: MobilityAid # - type: RandomSprite # Ideally I'd rather these be their own selectable item instead of randomly picked. # available: # - color: "#91949C" # standard gray diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/white_cane.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/white_cane.yml index 997c3771d5..bba4085295 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/white_cane.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/white_cane.yml @@ -24,4 +24,3 @@ Blunt: 3 - type: UseDelay delay: 1 - diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml index d843463886..eb390bbff9 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml @@ -91,6 +91,7 @@ - timer sound: path: "/Audio/Effects/flash_bang.ogg" + positional: true - type: DeleteOnTrigger keysIn: - timer @@ -260,6 +261,7 @@ path: /Audio/Effects/Grenades/Supermatter/supermatter_end.ogg params: volume: 5 + positional: true keysIn: - stageTwo - type: DeleteOnTrigger @@ -478,6 +480,7 @@ keysIn: - timer sound: /Audio/Items/smoke_grenade_smoke.ogg + positional: true - type: DeleteOnTrigger keysIn: - timer @@ -601,6 +604,7 @@ - timer sound: path: /Audio/Effects/Emotes/parp1.ogg + positional: true - type: Appearance - type: TimerTriggerVisuals primingSound: @@ -621,6 +625,7 @@ - timer sound: path: /Audio/Effects/Emotes/parp1.ogg + positional: true - type: Appearance - type: TimerTriggerVisuals primingSound: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/projectile_grenades.yml b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/projectile_grenades.yml index f9ce11a3b9..0e8b758a13 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/projectile_grenades.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/projectile_grenades.yml @@ -61,6 +61,7 @@ - timer sound: path: "/Audio/Effects/flash_bang.ogg" + positional: true - type: SpawnOnTrigger keysIn: - timer @@ -103,6 +104,7 @@ - timer sound: path: "/Audio/Weapons/Guns/Gunshots/batrifle.ogg" + positional: true - type: StaticPrice price: 1500 @@ -134,5 +136,6 @@ - timer sound: path: "/Audio/Weapons/Guns/Gunshots/batrifle.ogg" + positional: true - type: StaticPrice price: 1500 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/scattering_grenades.yml b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/scattering_grenades.yml index 7c3f500e83..9b8085ec0b 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/scattering_grenades.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/scattering_grenades.yml @@ -87,6 +87,7 @@ - timer sound: path: "/Audio/Machines/door_lock_off.ogg" + positional: true - type: entity parent: [ScatteringGrenadeBase, BaseSyndicateContraband] @@ -114,6 +115,7 @@ - timer sound: path: "/Audio/Machines/door_lock_off.ogg" + positional: true - type: StaticPrice price: 2500 @@ -140,6 +142,7 @@ - timer sound: path: "/Audio/Items/bikehorn.ogg" + positional: true - type: entity parent: [SoapSyndie, ScatteringGrenadeBase, BaseSyndicateContraband] @@ -167,6 +170,7 @@ - timer sound: path: "/Audio/Effects/flash_bang.ogg" + positional: true - type: StaticPrice price: 1000 @@ -199,3 +203,4 @@ - timer sound: path: "/Audio/Weapons/Guns/Gunshots/batrifle.ogg" + positional: true diff --git a/Resources/Prototypes/Entities/Objects/base_item.yml b/Resources/Prototypes/Entities/Objects/base_item.yml index 19c79765b3..f10540dfd8 100644 --- a/Resources/Prototypes/Entities/Objects/base_item.yml +++ b/Resources/Prototypes/Entities/Objects/base_item.yml @@ -24,6 +24,7 @@ soundHit: collection: MetalThud - type: CollisionWake + - type: GravityAffected - type: Physics bodyType: Dynamic fixedRotation: false diff --git a/Resources/Prototypes/Entities/StatusEffects/body.yml b/Resources/Prototypes/Entities/StatusEffects/body.yml new file mode 100644 index 0000000000..3765ebefd4 --- /dev/null +++ b/Resources/Prototypes/Entities/StatusEffects/body.yml @@ -0,0 +1,18 @@ +- type: entity + parent: MobStatusEffectBase + id: BloodstreamStatusEffectBase + abstract: true + components: + - type: StatusEffect + whitelist: + components: + - Bloodstream + +- type: entity + parent: [ BloodstreamStatusEffectBase ] + id: StatusEffectBloodloss + name: bloodloss + components: + - type: StutteringAccent + - type: DrunkStatusEffect + - type: RejuvenateRemovedStatusEffect diff --git a/Resources/Prototypes/Entities/StatusEffects/misc.yml b/Resources/Prototypes/Entities/StatusEffects/misc.yml index 3ce81081c0..14c6b5b649 100644 --- a/Resources/Prototypes/Entities/StatusEffects/misc.yml +++ b/Resources/Prototypes/Entities/StatusEffects/misc.yml @@ -78,3 +78,17 @@ name: hallucinations components: - type: SeeingRainbowsStatusEffect + +# Causes your vision to become blurry and gives me a headache. +- type: entity + parent: MobStatusEffectDebuff + id: StatusEffectWoozy + name: woozy + components: + - type: DrunkStatusEffect + +# Causes you to get drunk +- type: entity + parent: [ StatusEffectWoozy, StatusEffectSlurred ] + id: StatusEffectDrunk + name: drunk diff --git a/Resources/Prototypes/Entities/StatusEffects/speech.yml b/Resources/Prototypes/Entities/StatusEffects/speech.yml new file mode 100644 index 0000000000..17e533b1a8 --- /dev/null +++ b/Resources/Prototypes/Entities/StatusEffects/speech.yml @@ -0,0 +1,27 @@ +- type: entity + parent: MobStatusEffectDebuff + id: SpeechStatusEffectBase + abstract: true + components: + - type: StatusEffect + whitelist: + components: + - MobState + - Speech + requireAll: true + +# Causes you to st-t-u-t-t-t-er randomly when talking. +- type: entity + parent: SpeechStatusEffectBase + id: StatusEffectStutter + name: stutter + components: + - type: StutteringAccent + +# Causes you to schlur your words schwhen talking. +- type: entity + parent: SpeechStatusEffectBase + id: StatusEffectSlurred + name: slurred + components: + - type: SlurredAccent diff --git a/Resources/Prototypes/Entities/Structures/Dispensers/base_structuredispensers.yml b/Resources/Prototypes/Entities/Structures/Dispensers/base_structuredispensers.yml index e9797ee24a..d69ab97bab 100644 --- a/Resources/Prototypes/Entities/Structures/Dispensers/base_structuredispensers.yml +++ b/Resources/Prototypes/Entities/Structures/Dispensers/base_structuredispensers.yml @@ -77,3 +77,7 @@ - type: StaticPrice price: 1000 - type: WiresPanel + - type: EmptyOnMachineDeconstruct + containers: + - storagebase + - beakerSlot diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml index 47bc6c96d0..879018d038 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml @@ -1133,6 +1133,17 @@ containers: board: [ DoorElectronicsNukeop ] +- type: entity + parent: AirlockXenoborg + id: AirlockXenoborgLocked + suffix: Xenoborg, Locked + components: + - type: StationAiWhitelist + enabled: false + - type: ContainerFill + containers: + board: [ DoorElectronicsXenoborg ] + # Shuttle airlocks - type: entity parent: AirlockShuttle @@ -1161,6 +1172,17 @@ containers: board: [ DoorElectronicsNukeop ] +- type: entity + parent: AirlockShuttleXenoborg + id: AirlockGlassShuttleXenoborgLocked + suffix: External, Docking, Xenoborg, Locked + components: + - type: StationAiWhitelist + enabled: false + - type: ContainerFill + containers: + board: [ DoorElectronicsXenoborg ] + - type: entity parent: AirlockGlassShuttle id: AirlockExternalGlassShuttleLocked diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml index 67e46649ef..76d98f96d2 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml @@ -160,6 +160,16 @@ - type: Paintable group: null +- type: entity + parent: Airlock + id: AirlockXenoborg + name: xenoborg airlock + components: + - type: Sprite + sprite: Structures/Doors/Airlocks/Standard/xenoborg.rsi + - type: Paintable + group: null + - type: entity parent: Airlock id: AirlockHatchMaintenance diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml index 437076b0a2..8b509a17ff 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml @@ -4,6 +4,10 @@ name: airlock description: It opens, it closes, and maybe crushes you. components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: StationAiWhitelist - type: MeleeSound soundGroups: diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml index 28b63d9723..975328c7c1 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml @@ -6,9 +6,14 @@ placement: mode: SnapgridCenter components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: StationAiWhitelist - type: InteractionOutline - type: Sprite + snapCardinals: true sprite: Structures/Doors/Airlocks/highsec/highsec.rsi layers: - state: closed diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml index cad40324c8..5f80b94250 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml @@ -117,3 +117,13 @@ components: - type: Sprite sprite: Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi + +- type: entity + parent: AirlockShuttle + id: AirlockShuttleXenoborg + suffix: Docking + name: external airlock + description: Necessary for connecting two space craft together. + components: + - type: Sprite + sprite: Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi diff --git a/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml b/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml index 584a4e5c7b..489411bc28 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml @@ -5,6 +5,10 @@ name: firelock description: Apply crowbar. components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: AtmosAlarmable syncWith: - FireAlarm diff --git a/Resources/Prototypes/Entities/Structures/Doors/MaterialDoors/material_doors.yml b/Resources/Prototypes/Entities/Structures/Doors/MaterialDoors/material_doors.yml index d22687faec..510b76b41e 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/MaterialDoors/material_doors.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/MaterialDoors/material_doors.yml @@ -1,10 +1,14 @@ -- type: entity +- type: entity id: BaseMaterialDoor parent: BaseStructure name: door abstract: true description: A door, where will it lead? components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: InteractionOutline - type: Sprite sprite: Structures/Doors/MineralDoors/metal_door.rsi @@ -78,20 +82,10 @@ id: WoodDoor name: wooden door parent: BaseMaterialDoorNavMap - description: A door, where will it lead? components: - type: Sprite sprite: Structures/Doors/MineralDoors/wood_door.rsi - layers: - - state: closed - map: ["enum.DoorVisualLayers.Base"] - type: Door - bumpOpen: false - clickOpen: true - closeTimeOne: 0.2 - closeTimeTwo: 0.6 - openTimeOne: 0.6 - openTimeTwo: 0.2 openSound: path: /Audio/Effects/door_open.ogg closeSound: @@ -115,13 +109,9 @@ id: PaperDoor name: paper door parent: BaseMaterialDoorNavMap - description: A door, where will it lead? components: - type: Sprite sprite: Structures/Doors/MineralDoors/paper_door.rsi - layers: - - state: closed - map: ["enum.DoorVisualLayers.Base"] - type: Destructible thresholds: - trigger: @@ -143,13 +133,9 @@ id: PlasmaDoor name: plasma door parent: BaseMaterialDoorNavMap - description: A door, where will it lead? components: - type: Sprite sprite: Structures/Doors/MineralDoors/plasma_door.rsi - layers: - - state: closed - map: ["enum.DoorVisualLayers.Base"] - type: Damageable damageContainer: StructuralInorganic damageModifierSet: StructuralMetallicStrong @@ -169,13 +155,9 @@ id: GoldDoor name: gold door parent: BaseMaterialDoorNavMap - description: A door, where will it lead? components: - type: Sprite sprite: Structures/Doors/MineralDoors/gold_door.rsi - layers: - - state: closed - map: ["enum.DoorVisualLayers.Base"] - type: Construction graph: DoorGraph node: goldDoor @@ -184,13 +166,9 @@ id: SilverDoor name: silver door parent: BaseMaterialDoorNavMap - description: A door, where will it lead? components: - type: Sprite sprite: Structures/Doors/MineralDoors/silver_door.rsi - layers: - - state: closed - map: ["enum.DoorVisualLayers.Base"] - type: Construction graph: DoorGraph node: silverDoor @@ -199,13 +177,9 @@ id: BananiumDoor name: bananium door parent: BaseMaterialDoorNavMap - description: A door, where will it lead? components: - type: Sprite sprite: Structures/Doors/MineralDoors/bananium_door.rsi - layers: - - state: closed - map: ["enum.DoorVisualLayers.Base"] - type: Construction graph: DoorGraph node: bananiumDoor @@ -223,9 +197,6 @@ components: - type: Sprite sprite: Structures/Doors/web_door.rsi - layers: - - state: closed - map: ["enum.DoorVisualLayers.Base"] - type: Construction graph: WebStructures node: door @@ -262,43 +233,14 @@ openSound: path: /Audio/Effects/rustle2.ogg - - type: entity id: CardDoor - parent: BaseStructure + parent: BaseMaterialDoorNavMap name: cardboard door - description: A door, where will it lead? components: - - type: InteractionOutline - type: Sprite sprite: Structures/Doors/MineralDoors/card_door.rsi - layers: - - state: closed - map: ["enum.DoorVisualLayers.Base"] - - type: AnimationPlayer - - type: Physics - bodyType: Static - - type: Fixtures - fixtures: - fix1: - shape: - !type:PhysShapeAabb - bounds: "-0.49,-0.49,0.49,0.49" - density: 100 - mask: - - FullTileMask - layer: - - FlimsyLayer - type: Door - bumpOpen: false - clickOpen: true - canCrush: false - closeTimeOne: 0.2 - closeTimeTwo: 0.6 - openTimeOne: 0.6 - openTimeTwo: 0.2 - openingAnimationTime: 1.2 - closingAnimationTime: 1.2 openSound: path: /Audio/Effects/card_drag.ogg closeSound: @@ -308,7 +250,6 @@ Brute: path: "/Audio/Weapons/pierce.ogg" - - type: Appearance - type: Damageable damageContainer: StructuralInorganic damageModifierSet: Card @@ -331,12 +272,6 @@ max: 4 - !type:DoActsBehavior acts: [ "Destruction" ] - - type: Icon - sprite: Structures/Doors/MineralDoors/card_door.rsi - state: closed - type: Construction graph: DoorGraph node: cardDoor - - type: NavMapDoor - - type: Occluder - - type: BlockWeather diff --git a/Resources/Prototypes/Entities/Structures/Doors/SecretDoor/secret_door.yml b/Resources/Prototypes/Entities/Structures/Doors/SecretDoor/secret_door.yml index 0784829e1c..c8fdbec326 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/SecretDoor/secret_door.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/SecretDoor/secret_door.yml @@ -6,6 +6,10 @@ abstract: true description: Keeps the air in and the greytide out. components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: Sprite sprite: Structures/Doors/secret_door.rsi layers: diff --git a/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml b/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml index ca870d7c7d..6e855a150f 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml @@ -7,6 +7,10 @@ placement: mode: SnapgridCenter components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: StationAiWhitelist - type: Sprite sprite: Structures/Doors/Shutters/shutters.rsi diff --git a/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml b/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml index 10062d7803..811385645c 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml @@ -6,6 +6,10 @@ placement: mode: SnapgridCenter components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: MeleeSound soundGroups: Brute: diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml index 6635e5698f..f6538ba64e 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml @@ -665,7 +665,7 @@ - type: CommunicationsConsole title: comms-console-announcement-title-station - type: DeviceNetwork - deviceNetId: Wireless + deviceNetId: Wireless transmitFrequencyId: ShuttleTimer - type: ActivatableUI key: enum.CommunicationsConsoleUiKey.Key @@ -1374,6 +1374,21 @@ enum.WiresUiKey.Key: type: WiresBoundUserInterface +- type: entity + parent: ComputerSurveillanceWirelessCameraMonitor + id: ComputerSurveillanceWirelessXenoborgCameraMonitor + name: xenoborg camera monitor + description: A wireless xenoborg camera monitor. You're watching them. Maybe. + components: + - type: Computer + board: XenoborgCameraMonitorCircuitboard + - type: DeviceNetwork + deviceNetId: Wireless + receiveFrequencyId: Mothership + transmitFrequencyId: Mothership + - type: WirelessNetworkConnection + range: 2000 + - type: entity id: ComputerPalletConsole parent: BaseComputerAiAccess @@ -1541,6 +1556,39 @@ - type: Lock unlockOnClick: false +- type: entity + parent: ComputerRoboticsControl + id: ComputerXenoborgsControl + name: xenoborgs control console + description: Used to remotely monitor all xenoborgs. + components: + - type: Sprite + layers: + - map: ["computerLayerBody"] + state: computer + - map: ["computerLayerKeyboard"] + state: generic_keyboard + - map: ["computerLayerScreen"] + state: xenorobot + - map: ["computerLayerKeys"] + state: rd_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open + - type: RoboticsConsole + allowBorgControl: false + radioChannel: Xenoborg + - type: ActiveRadio + channels: + - Xenoborg + - type: DeviceNetwork + deviceNetId: Wireless + receiveFrequencyId: Mothership + transmitFrequencyId: Xenoborg + - type: Computer + board: ComputerXenoborgsControlCircuitboard + - type: AccessReader # only used for dangerous things + access: [["Xenoborg"]] + - type: entity id: StationAiUploadComputer parent: BaseComputer diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index 7cfac3488a..abff9561c2 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -123,6 +123,7 @@ - PartsStatic - AtmosStatic - CablesStatic + - PaperworkStatic - CargoStatic - MaterialsStatic - BasicChemistryStatic diff --git a/Resources/Prototypes/Entities/Structures/Machines/surveillance_camera_routers.yml b/Resources/Prototypes/Entities/Structures/Machines/surveillance_camera_routers.yml index 977adfd79c..a14ae6cb7c 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/surveillance_camera_routers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/surveillance_camera_routers.yml @@ -195,3 +195,19 @@ components: - type: SurveillanceCameraRouter subnetFrequency: SurveillanceCameraEntertainment + +- type: entity + parent: SurveillanceCameraWirelessRouterBase + id: SurveillanceCameraWirelessRouterXenoborg + name: xenoborg camera wireless router + components: + - type: DeviceNetwork + deviceNetId: Wireless + receiveFrequencyId: Mothership + transmitFrequencyId: Mothership + - type: WirelessNetworkConnection + range: 2000 # longer range to get xenoborgs even when the mothership is far away + - type: SurveillanceCameraRouter + subnetFrequency: Xenoborg + - type: Machine + board: SurveillanceCameraWirelessRouterXenoborgCircuitboard diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/generators.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/generators.yml index 410df05021..456a83046b 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/generators.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/generators.yml @@ -2,6 +2,7 @@ - type: entity abstract: true + parent: BaseMachine id: BaseGenerator description: A high efficiency thermoelectric generator. name: generator @@ -12,10 +13,6 @@ range: 5 sound: path: /Audio/Ambience/Objects/engine_hum.ogg - - type: Clickable - - type: InteractionOutline - - type: Physics - bodyType: Static - type: Fixtures fixtures: fix1: @@ -27,9 +24,6 @@ - MachineMask layer: - MachineLayer - - type: Transform - anchored: true - noRot: true - type: Sprite sprite: Structures/Power/power.rsi state: generator @@ -49,8 +43,7 @@ supplyRate: 3000 supplyRampRate: 500 supplyRampTolerance: 500 - - type: Anchorable - - type: Pullable + - type: Anchorable # Reduces anchor time to 1 second - type: Damageable damageContainer: StructuralInorganic damageModifierSet: Metallic diff --git a/Resources/Prototypes/Entities/Structures/Power/apc.yml b/Resources/Prototypes/Entities/Structures/Power/apc.yml index 75f61e7534..0addb34704 100644 --- a/Resources/Prototypes/Entities/Structures/Power/apc.yml +++ b/Resources/Prototypes/Entities/Structures/Power/apc.yml @@ -235,3 +235,14 @@ - type: Battery maxCharge: 200000 startingCharge: 200000 + +- type: entity + parent: BaseAPC + id: APCXenoborg + suffix: Basic, 50kJ, Xenoborg + components: + - type: Battery + maxCharge: 50000 + startingCharge: 50000 + - type: AccessReader + access: [["Xenoborg"]] diff --git a/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml b/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml index 70d79aa912..a08ba4aacd 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml @@ -396,6 +396,8 @@ components: - type: Sprite sprite: Structures/Storage/Crates/cage.rsi + drawdepth: LargeObjects + snapCardinals: true layers: - state: base - state: closed @@ -441,12 +443,12 @@ fix1: shape: !type:PhysShapeAabb - bounds: "-0.4,-0.4,0.4,0.29" + bounds: "-0.4,-0.2,0.4,0.29" density: 80 mask: - - CrateMask + - TabletopMachineMask layer: - - LargeMobLayer + - TabletopMachineLayer - type: StaticPrice price: 75 diff --git a/Resources/Prototypes/Entities/Structures/Storage/filing_cabinets.yml b/Resources/Prototypes/Entities/Structures/Storage/filing_cabinets.yml index f0e79a841e..c53dfb5d78 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/filing_cabinets.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/filing_cabinets.yml @@ -6,12 +6,13 @@ rolls: !type:RangeNumberSelector range: 2, 4 children: - - id: BoxFolderBlue + - id: BoxFolderBase - id: BoxFolderRed + - id: BoxFolderBlue - id: BoxFolderYellow - - id: BoxFolderWhite - id: BoxFolderGrey - id: BoxFolderBlack + - id: BoxFolderGreen - !type:GroupSelector rolls: !type:RangeNumberSelector range: 0, 3 diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/Storage/shelfs.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/Storage/shelfs.yml index aeceba8f2e..dd3e7dd0a4 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/Storage/shelfs.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/Storage/shelfs.yml @@ -45,6 +45,7 @@ description: It looks as strong as reality itself. components: - type: Lock + - type: LockedStorage - type: LockVisuals - type: Sprite sprite: Structures/Storage/Shelfs/wood.rsi diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/base_wallmount.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/base_wallmount.yml index 49e4a62fd4..b064d4a231 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/base_wallmount.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/base_wallmount.yml @@ -6,6 +6,10 @@ snap: - Wallmount components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: Physics canCollide: false - type: Clickable diff --git a/Resources/Prototypes/Entities/Structures/Walls/grille.yml b/Resources/Prototypes/Entities/Structures/Walls/grille.yml index d9ced96d0c..55b06f1e60 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/grille.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/grille.yml @@ -198,7 +198,7 @@ mask: - FullTileMask layer: - - WallLayer + - GlassLayer - type: Construction graph: GrilleDiagonal node: grilleDiagonal @@ -236,7 +236,7 @@ mask: - FullTileMask layer: - - WallLayer + - GlassLayer - type: Construction graph: GrilleDiagonal node: clockworkGrilleDiagonal diff --git a/Resources/Prototypes/Entities/Structures/Walls/walls.yml b/Resources/Prototypes/Entities/Structures/Walls/walls.yml index f3c2eaafe4..2964b71162 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/walls.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/walls.yml @@ -9,6 +9,10 @@ snap: - Wall components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: RangedDamageSound soundGroups: Brute: @@ -1192,6 +1196,33 @@ graph: Girder node: reinforcedWallChitin +- type: entity + parent: WallPlastitanium + id: WallXenoborg + name: xenoborg wall + components: + - type: Sprite + sprite: Structures/Walls/xenoborg.rsi + - type: Icon + sprite: Structures/Walls/xenoborg.rsi + - type: IconSmooth + key: walls + base: xenoborg + +- type: entity + parent: WallPlastitaniumDiagonal + id: WallXenoborgDiagonal + name: xenoborg wall + suffix: diagonal + components: + - type: Sprite + drawdepth: Walls + sprite: Structures/Walls/xenoborg_diagonal.rsi + state: state0 + - type: Icon + sprite: Structures/Walls/xenoborg_diagonal.rsi + state: state0 + - type: entity parent: BaseWall id: WallUranium @@ -1696,6 +1727,6 @@ - type: IconSmooth key: cards base: card - - type: Occluder + - type: Occluder - type: BlockWeather - - type: SunShadowCast \ No newline at end of file + - type: SunShadowCast diff --git a/Resources/Prototypes/Entities/Structures/Windows/clockwork.yml b/Resources/Prototypes/Entities/Structures/Windows/clockwork.yml index 8cc6312fdf..876fefd332 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/clockwork.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/clockwork.yml @@ -125,6 +125,7 @@ - type: Tag tags: - Diagonal + - Window - type: IconSmooth mode: Diagonal key: windows diff --git a/Resources/Prototypes/Entities/Structures/Windows/mining.yml b/Resources/Prototypes/Entities/Structures/Windows/mining.yml index 9565ee6555..8e276b0bb9 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/mining.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/mining.yml @@ -67,6 +67,7 @@ - type: Tag tags: - Diagonal + - Window - type: IconSmooth mode: Diagonal key: windows diff --git a/Resources/Prototypes/Entities/Structures/Windows/plasma.yml b/Resources/Prototypes/Entities/Structures/Windows/plasma.yml index 532c18b253..9e73dce7a1 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/plasma.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/plasma.yml @@ -125,6 +125,7 @@ - type: Tag tags: - Diagonal + - Window - type: IconSmooth mode: Diagonal key: windows diff --git a/Resources/Prototypes/Entities/Structures/Windows/plastitanium.yml b/Resources/Prototypes/Entities/Structures/Windows/plastitanium.yml index cf7303b7bb..295e9d59ce 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/plastitanium.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/plastitanium.yml @@ -138,6 +138,7 @@ - type: Tag tags: - Diagonal + - Window - type: Icon sprite: Structures/Windows/plastitanium_window_diagonal.rsi state: state0 diff --git a/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml b/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml index 9981d50ab5..b9d4e6fd63 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml @@ -132,6 +132,7 @@ - type: Tag tags: - Diagonal + - Window - type: IconSmooth mode: Diagonal key: windows diff --git a/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml b/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml index 8b2214b037..520c85c8bb 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml @@ -130,6 +130,7 @@ - type: Tag tags: - Diagonal + - Window - type: IconSmooth mode: Diagonal key: windows diff --git a/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml b/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml index b1ab547f48..0030517593 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml @@ -127,6 +127,7 @@ - type: Tag tags: - Diagonal + - Window - type: IconSmooth mode: Diagonal key: windows diff --git a/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml b/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml index 75f6b1fc83..6250f2d194 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml @@ -70,6 +70,7 @@ - type: Tag tags: - Diagonal + - Window - type: IconSmooth mode: Diagonal key: windows diff --git a/Resources/Prototypes/Entities/Structures/Windows/uranium.yml b/Resources/Prototypes/Entities/Structures/Windows/uranium.yml index 82905f90a1..7f7ec168c4 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/uranium.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/uranium.yml @@ -120,6 +120,7 @@ - type: Tag tags: - Diagonal + - Window - type: IconSmooth mode: Diagonal key: windows diff --git a/Resources/Prototypes/Entities/Structures/Windows/window.yml b/Resources/Prototypes/Entities/Structures/Windows/window.yml index 0c8ada8f76..ad36a58362 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/window.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/window.yml @@ -8,6 +8,10 @@ snap: - Window components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: MeleeSound soundGroups: Brute: diff --git a/Resources/Prototypes/Entities/Structures/Windows/xenoborg.yml b/Resources/Prototypes/Entities/Structures/Windows/xenoborg.yml new file mode 100644 index 0000000000..9704ffee91 --- /dev/null +++ b/Resources/Prototypes/Entities/Structures/Windows/xenoborg.yml @@ -0,0 +1,14 @@ +- type: entity + id: XenoborgWindow + parent: PlastitaniumWindow + name: xenoborg window + components: + - type: Sprite + drawdepth: WallTops + sprite: Structures/Windows/xenoborg.rsi + - type: Icon + sprite: Structures/Windows/xenoborg.rsi + state: full + - type: IconSmooth + key: windows + base: xenoborg diff --git a/Resources/Prototypes/Entities/Structures/base_structure.yml b/Resources/Prototypes/Entities/Structures/base_structure.yml index 71971a6624..d4936c859c 100644 --- a/Resources/Prototypes/Entities/Structures/base_structure.yml +++ b/Resources/Prototypes/Entities/Structures/base_structure.yml @@ -7,6 +7,7 @@ - type: Transform anchored: true - type: Clickable + - type: GravityAffected - type: Physics bodyType: Static - type: Fixtures diff --git a/Resources/Prototypes/Entities/Structures/catwalk.yml b/Resources/Prototypes/Entities/Structures/catwalk.yml index 0a44c338a4..669f4a6800 100644 --- a/Resources/Prototypes/Entities/Structures/catwalk.yml +++ b/Resources/Prototypes/Entities/Structures/catwalk.yml @@ -6,6 +6,10 @@ placement: mode: SnapgridCenter components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: Clickable - type: Sprite sprite: Structures/catwalk.rsi diff --git a/Resources/Prototypes/Entities/Structures/cryogenic_sleep_unit.yml b/Resources/Prototypes/Entities/Structures/cryogenic_sleep_unit.yml index 568c38a5d2..7458cd2b69 100644 --- a/Resources/Prototypes/Entities/Structures/cryogenic_sleep_unit.yml +++ b/Resources/Prototypes/Entities/Structures/cryogenic_sleep_unit.yml @@ -4,6 +4,10 @@ name: cryogenic sleep unit description: A super-cooled container that keeps crewmates safe during space travel. components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: Sprite noRot: true sprite: Structures/cryostorage.rsi diff --git a/Resources/Prototypes/Entities/Structures/meat_spike.yml b/Resources/Prototypes/Entities/Structures/meat_spike.yml index 5825cec6ad..b8714d9d5e 100644 --- a/Resources/Prototypes/Entities/Structures/meat_spike.yml +++ b/Resources/Prototypes/Entities/Structures/meat_spike.yml @@ -50,7 +50,7 @@ enum.KitchenSpikeVisuals.Status: base: Empty: { state: spike } - Bloody: { state: spikebloody } + Bloody: { state: spikebloody } # TODO: Add sprites for different species. - type: Construction graph: MeatSpike node: MeatSpike @@ -58,3 +58,6 @@ guides: - Chef - FoodRecipes + - type: ContainerContainer + containers: + body: !type:ContainerSlot diff --git a/Resources/Prototypes/Entities/Structures/plastic_flaps.yml b/Resources/Prototypes/Entities/Structures/plastic_flaps.yml index 088ddfda61..a8fa40b69d 100644 --- a/Resources/Prototypes/Entities/Structures/plastic_flaps.yml +++ b/Resources/Prototypes/Entities/Structures/plastic_flaps.yml @@ -5,6 +5,10 @@ placement: mode: SnapgridCenter components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: Sprite sprite: Structures/plastic_flaps.rsi state: plasticflaps diff --git a/Resources/Prototypes/Entities/Structures/stairs.yml b/Resources/Prototypes/Entities/Structures/stairs.yml index 1d107b50cd..a371f93567 100644 --- a/Resources/Prototypes/Entities/Structures/stairs.yml +++ b/Resources/Prototypes/Entities/Structures/stairs.yml @@ -6,6 +6,10 @@ placement: mode: SnapgridCenter components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: Clickable - type: Sprite sprite: Structures/stairs.rsi diff --git a/Resources/Prototypes/Flavors/flavors.yml b/Resources/Prototypes/Flavors/flavors.yml index 8eef7e1cb5..513803e102 100644 --- a/Resources/Prototypes/Flavors/flavors.yml +++ b/Resources/Prototypes/Flavors/flavors.yml @@ -1484,6 +1484,11 @@ flavorType: Complex description: flavor-complex-artifact-glue +- type: flavor + id: alkaline + flavorType: Base + description: flavor-base-alkaline + - type: flavor id: motivating flavorType: Base diff --git a/Resources/Prototypes/GameRules/dynamic_rules.yml b/Resources/Prototypes/GameRules/dynamic_rules.yml new file mode 100644 index 0000000000..02298e0faa --- /dev/null +++ b/Resources/Prototypes/GameRules/dynamic_rules.yml @@ -0,0 +1,112 @@ +- type: entity + parent: BaseGameRule + id: DynamicRule + components: + - type: GameRule + minPlayers: 5 # <5 is greenshift hours, buddy. + - type: DynamicRule + startingBudgetMin: 200 + startingBudgetMax: 350 + table: !type:AllSelector + children: + # Roundstart Major Rules + - !type:GroupSelector + conditions: + - !type:RoundDurationCondition + max: 1 + children: + - id: Traitor + weight: 60 + conditions: + - !type:HasBudgetCondition + - !type:MaxRuleOccurenceCondition + - id: Nukeops + weight: 25 + conditions: + - !type:HasBudgetCondition + - !type:MaxRuleOccurenceCondition + - !type:PlayerCountCondition + min: 20 + - id: Revolutionary + weight: 5 + conditions: + - !type:HasBudgetCondition + - !type:MaxRuleOccurenceCondition + - id: Zombie + weight: 5 + conditions: + - !type:HasBudgetCondition + - !type:MaxRuleOccurenceCondition + - !type:PlayerCountCondition + min: 20 + - id: Wizard + weight: 5 + conditions: + - !type:HasBudgetCondition + - !type:MaxRuleOccurenceCondition + - !type:PlayerCountCondition + min: 10 + # Roundstart Minor Rules + - !type:GroupSelector + conditions: + - !type:RoundDurationCondition + max: 1 + children: + - id: Thief + prob: 0.5 + conditions: + - !type:HasBudgetCondition + - !type:MaxRuleOccurenceCondition + # Midround rules + - !type:GroupSelector + conditions: + - !type:RoundDurationCondition + min: 300 # minimum 5 minutes + children: + - id: SleeperAgents + weight: 15 + conditions: + - !type:HasBudgetCondition + - !type:MaxRuleOccurenceCondition + - !type:RoundDurationCondition + min: 900 # 15 minutes + - id: DragonSpawn + weight: 15 + conditions: + - !type:HasBudgetCondition + - !type:MaxRuleOccurenceCondition + - !type:RoundDurationCondition + min: 900 # 15 minutes + - id: NinjaSpawn + weight: 20 + conditions: + - !type:HasBudgetCondition + - !type:MaxRuleOccurenceCondition + - !type:RoundDurationCondition + min: 900 # 15 minutes + - id: ParadoxCloneSpawn + weight: 25 + conditions: + - !type:HasBudgetCondition + - !type:MaxRuleOccurenceCondition + max: 2 + - !type:RoundDurationCondition + min: 600 # 10 minutes + - id: ZombieOutbreak + weight: 2.5 + conditions: + - !type:HasBudgetCondition + - !type:MaxRuleOccurenceCondition + - !type:PlayerCountCondition + min: 20 + - !type:RoundDurationCondition + min: 2700 # 45 minutes + - id: LoneOpsSpawn + weight: 5 + conditions: + - !type:HasBudgetCondition + - !type:MaxRuleOccurenceCondition + - !type:PlayerCountCondition + min: 20 + - !type:RoundDurationCondition + min: 2100 # 35 minutes diff --git a/Resources/Prototypes/GameRules/events.yml b/Resources/Prototypes/GameRules/events.yml index 78602f97b9..c9e612c7f5 100644 --- a/Resources/Prototypes/GameRules/events.yml +++ b/Resources/Prototypes/GameRules/events.yml @@ -30,16 +30,41 @@ table: !type:AllSelector # we need to pass a list of rules, since rules have further restrictions to consider via StationEventComp children: - id: ClosetSkeleton - - id: DragonSpawn - id: KingRatMigration + - id: RevenantSpawn + - !type:NestedSelector + tableId: DerelictBorgEventTable + +- type: entityTable + id: ModerateAntagEventsTable + table: !type:AllSelector # we need to pass a list of rules, since rules have further restrictions to consider via StationEventComp + children: + - id: DragonSpawn - id: NinjaSpawn - id: ParadoxCloneSpawn - - id: RevenantSpawn - id: SleeperAgents - id: ZombieOutbreak - id: LoneOpsSpawn - - id: DerelictCyborgSpawn - id: WizardSpawn + - !type:NestedSelector + tableId: DerelictBorgEventTable + +- type: entityTable + id: DerelictBorgEventTable #For Derelict Borg spawns + table: !type:GroupSelector + children: + - !type:GroupSelector # Standard NT Borgs + weight: 85 + children: + - id: DerelictEngineerCyborgSpawn + - id: DerelictGenericCyborgSpawn + - id: DerelictJanitorCyborgSpawn + - id: DerelictMedicalCyborgSpawn + - id: DerelictMiningCyborgSpawn + - !type:GroupSelector # Other Borgs + weight: 15 + children: + - id: DerelictSyndicateAssaultCyborgSpawn - type: entity id: BaseStationEvent @@ -183,6 +208,8 @@ pickPlayer: false mindRoles: - MindRoleDragon + - type: DynamicRuleCost + cost: 75 - type: entity parent: BaseGameRule @@ -233,6 +260,8 @@ nameFormat: name-format-ninja mindRoles: - MindRoleNinja + - type: DynamicRuleCost + cost: 75 - type: entity parent: BaseGameRule @@ -269,6 +298,8 @@ sound: /Audio/Misc/paradox_clone_greeting.ogg mindRoles: - MindRoleParadoxClone + - type: DynamicRuleCost + cost: 50 - type: entity parent: BaseGameRule @@ -520,6 +551,8 @@ - type: InitialInfected mindRoles: - MindRoleInitialInfected + - type: DynamicRuleCost + cost: 200 - type: entity parent: BaseNukeopsRule @@ -529,7 +562,7 @@ earliestStart: 35 weight: 5.5 minimumPlayers: 20 - duration: null # LoneOpsSpawn needs an infinite duration so that it inherits the NukeOpsRule things of an actually appropriate end scrreen (not always "Neutral outcome!") and... ending the game if the station is nuked. + duration: null # LoneOpsSpawn needs an infinite duration so that it inherits the NukeOpsRule things of an actually appropriate end screen (not always "Neutral outcome!") and... ending the game if the station is nuked. - type: RuleGrids - type: LoadMapRule gridPath: /Maps/Shuttles/ShuttleEvent/striker.yml @@ -555,7 +588,9 @@ factions: - Syndicate mindRoles: - - MindRoleNukeops + - MindRoleLoneops + - type: DynamicRuleCost + cost: 75 - type: entity parent: BaseTraitorRule @@ -658,10 +693,10 @@ - type: entity parent: BaseGameRule - id: DerelictCyborgSpawn + id: DerelictEngineerCyborgSpawn components: - type: StationEvent - weight: 5 + weight: 2.5 earliestStart: 15 reoccurrenceDelay: 20 minimumPlayers: 4 @@ -669,10 +704,115 @@ - type: SpaceSpawnRule spawnDistance: 0 - type: AntagSpawner - prototype: PlayerBorgDerelict + prototype: PlayerEngineeringBorgDerelictGhostRole + - type: AntagSelection + definitions: + - spawnerPrototype: SpawnPointGhostDerelictEngineeringCyborg + min: 1 + max: 1 + pickPlayer: false + +- type: entity + parent: BaseGameRule + id: DerelictGenericCyborgSpawn + components: + - type: StationEvent + weight: 2.5 + earliestStart: 15 + reoccurrenceDelay: 20 + minimumPlayers: 4 + duration: null + - type: SpaceSpawnRule + spawnDistance: 0 + - type: AntagSpawner + prototype: PlayerBorgDerelictGhostRole - type: AntagSelection definitions: - spawnerPrototype: SpawnPointGhostDerelictCyborg min: 1 max: 1 pickPlayer: false + +- type: entity + parent: BaseGameRule + id: DerelictJanitorCyborgSpawn + components: + - type: StationEvent + weight: 2.5 + earliestStart: 15 + reoccurrenceDelay: 20 + minimumPlayers: 4 + duration: null + - type: SpaceSpawnRule + spawnDistance: 0 + - type: AntagSpawner + prototype: PlayerJanitorBorgDerelictGhostRole + - type: AntagSelection + definitions: + - spawnerPrototype: SpawnPointGhostDerelictJanitorCyborg + min: 1 + max: 1 + pickPlayer: false + +- type: entity + parent: BaseGameRule + id: DerelictMedicalCyborgSpawn + components: + - type: StationEvent + weight: 2.5 + earliestStart: 15 + reoccurrenceDelay: 20 + minimumPlayers: 4 + duration: null + - type: SpaceSpawnRule + spawnDistance: 0 + - type: AntagSpawner + prototype: PlayerMedicalBorgDerelictGhostRole + - type: AntagSelection + definitions: + - spawnerPrototype: SpawnPointGhostDerelictMedicalCyborg + min: 1 + max: 1 + pickPlayer: false + +- type: entity + parent: BaseGameRule + id: DerelictMiningCyborgSpawn + components: + - type: StationEvent + weight: 2.5 + earliestStart: 15 + reoccurrenceDelay: 20 + minimumPlayers: 4 + duration: null + - type: SpaceSpawnRule + spawnDistance: 0 + - type: AntagSpawner + prototype: PlayerMiningBorgDerelictGhostRole + - type: AntagSelection + definitions: + - spawnerPrototype: SpawnPointGhostDerelictMiningCyborg + min: 1 + max: 1 + pickPlayer: false + +- type: entity + parent: BaseGameRule + id: DerelictSyndicateAssaultCyborgSpawn + components: + - type: StationEvent + weight: 2.5 + earliestStart: 25 + reoccurrenceDelay: 20 + minimumPlayers: 15 + duration: null + - type: SpaceSpawnRule + spawnDistance: 0 + - type: AntagSpawner + prototype: PlayerBorgSyndicateDerelictGhostRole + - type: AntagSelection + definitions: + - spawnerPrototype: SpawnPointGhostDerelictSyndicateAssaultCyborg + min: 1 + max: 1 + pickPlayer: false diff --git a/Resources/Prototypes/GameRules/roundstart.yml b/Resources/Prototypes/GameRules/roundstart.yml index a7c7af7f37..df4d59fd5a 100644 --- a/Resources/Prototypes/GameRules/roundstart.yml +++ b/Resources/Prototypes/GameRules/roundstart.yml @@ -173,6 +173,8 @@ - Syndicate mindRoles: - MindRoleNukeops + - type: DynamicRuleCost + cost: 200 - type: entity abstract: true @@ -188,6 +190,8 @@ maxDifficulty: 5 - type: AntagSelection agentName: traitor-round-end-agent-name + - type: DynamicRuleCost + cost: 100 - type: entity parent: BaseTraitorRule @@ -207,7 +211,7 @@ blacklist: components: - AntagImmune - lateJoinAdditional: true + lateJoinAdditional: false mindRoles: - MindRoleTraitor @@ -278,6 +282,8 @@ - type: HeadRevolutionary mindRoles: - MindRoleHeadRevolutionary + - type: DynamicRuleCost + cost: 200 - type: entity id: Sandbox @@ -341,6 +347,8 @@ nameFormat: name-format-wizard mindRoles: - MindRoleWizard + - type: DynamicRuleCost + cost: 150 - type: entity id: Zombie @@ -373,6 +381,8 @@ - type: InitialInfected mindRoles: - MindRoleInitialInfected + - type: DynamicRuleCost + cost: 200 # This rule makes the chosen players unable to get other antag rules, as a way to prevent metagaming job rolls. # Put this before antags assigned to station jobs, but after non-job antags (NukeOps/Wiz). @@ -400,6 +410,8 @@ tableId: BasicCalmEventsTable - !type:NestedSelector tableId: BasicAntagEventsTable + - !type:NestedSelector + tableId: ModerateAntagEventsTable - !type:NestedSelector tableId: CargoGiftsTable - !type:NestedSelector @@ -407,6 +419,21 @@ - !type:NestedSelector tableId: SpicyPestEventsTable +- type: entityTable + id: DynamicGameRulesTable + table: !type:AllSelector # we need to pass a list of rules, since rules have further restrictions to consider via StationEventComp + children: + - !type:NestedSelector + tableId: BasicCalmEventsTable + - !type:NestedSelector + tableId: BasicAntagEventsTable + - !type:NestedSelector + tableId: CargoGiftsTable + - !type:NestedSelector + tableId: CalmPestEventsTable + - !type:NestedSelector + tableId: SpicyPestEventsTable + - type: entityTable id: SpaceTrafficControlTable table: !type:AllSelector # we need to pass a list of rules, since rules have further restrictions to consider via StationEventComp @@ -426,6 +453,14 @@ scheduledGameRules: !type:NestedSelector tableId: BasicGameRulesTable +- type: entity + id: DynamicStationEventScheduler # this isn't the dynamic mode, but rather the station event scheduler used for dynamic + parent: BaseGameRule + components: + - type: BasicStationEventScheduler + scheduledGameRules: !type:NestedSelector + tableId: DynamicGameRulesTable + - type: entity id: RampingStationEventScheduler parent: BaseGameRule diff --git a/Resources/Prototypes/GameRules/subgamemodes.yml b/Resources/Prototypes/GameRules/subgamemodes.yml index 2213623c28..0dbef6e06b 100644 --- a/Resources/Prototypes/GameRules/subgamemodes.yml +++ b/Resources/Prototypes/GameRules/subgamemodes.yml @@ -34,6 +34,8 @@ - MindRoleThief briefing: sound: "/Audio/Misc/thief_greeting.ogg" + - type: DynamicRuleCost + cost: 75 # Needs testing - type: entity diff --git a/Resources/Prototypes/Maps/packed.yml b/Resources/Prototypes/Maps/packed.yml index 7ea5fbc9d0..7410ce24c5 100644 --- a/Resources/Prototypes/Maps/packed.yml +++ b/Resources/Prototypes/Maps/packed.yml @@ -1,3 +1,4 @@ + - type: gameMap id: Packed mapName: 'Packed' @@ -8,57 +9,57 @@ Packed: stationProto: StandardNanotrasenStation components: - - type: StationNameSetup - mapNameTemplate: '{0} Packed {1}' - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: 'VG' - - type: StationEmergencyShuttle - emergencyShuttlePath: /Maps/Shuttles/emergency_crimson.yml - - type: StationJobs - availableJobs: # 46 jobs total w/o latejoins & interns, 57 jobs total w/ latejoins & interns - #command (7) - Captain: [ 1, 1 ] - HeadOfPersonnel: [ 1, 1 ] - HeadOfSecurity: [ 1, 1 ] - ChiefMedicalOfficer: [ 1, 1 ] - ChiefEngineer: [ 1, 1 ] - ResearchDirector: [ 1, 1 ] - Quartermaster: [ 1, 1 ] - #service (8 - 10) - Bartender: [ 1, 1 ] - Botanist: [ 1, 2 ] - Chef: [ 1, 1 ] - Janitor: [ 1, 2 ] - Chaplain: [ 1, 1 ] - Librarian: [ 1, 1 ] - ServiceWorker: [ 2, 2 ] - #engineering (6) - AtmosphericTechnician: [ 2, 2 ] - StationEngineer: [ 4, 4 ] - TechnicalAssistant: [ 3, 3 ] #intern, not counted - #medical (6) - Chemist: [ 2, 2 ] - MedicalDoctor: [ 3, 3 ] - MedicalIntern: [ 2, 2 ] #intern, not counted - Paramedic: [ 1, 1 ] - #science (4) - Scientist: [ 4, 4 ] - ResearchAssistant: [ 2, 2 ] #intern, not counted - #security (6) - Warden: [ 1, 1 ] - SecurityOfficer: [ 3, 3 ] - Detective: [ 1, 1 ] - SecurityCadet: [ 2, 2 ] #intern, not counted - Lawyer: [ 1, 1 ] - #supply (4) - SalvageSpecialist: [ 2, 2 ] - CargoTechnician: [ 2, 2 ] - #civilian (3+) - Passenger: [ -1, -1 ] #infinite, not counted - Clown: [ 1, 1 ] - Mime: [ 1, 1 ] - Musician: [ 1, 1 ] - #silicon (2) - StationAi: [ 1, 1 ] - Borg: [ 1, 1 ] + - type: StationNameSetup + mapNameTemplate: '{0} Packed {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: 'VG' + - type: StationEmergencyShuttle + emergencyShuttlePath: /Maps/Shuttles/emergency_crimson.yml + - type: StationJobs + availableJobs: # 47 jobs total w/o latejoins & interns, 58 jobs total w/ latejoins & interns + #command (7) + Captain: [ 1, 1 ] + HeadOfPersonnel: [ 1, 1 ] + HeadOfSecurity: [ 1, 1 ] + ChiefMedicalOfficer: [ 1, 1 ] + ChiefEngineer: [ 1, 1 ] + ResearchDirector: [ 1, 1 ] + Quartermaster: [ 1, 1 ] + #service (8 - 10) + Bartender: [ 1, 1 ] + Botanist: [ 1, 2 ] + Chef: [ 1, 1 ] + Janitor: [ 1, 2 ] + Chaplain: [ 1, 1 ] + Librarian: [ 1, 1 ] + ServiceWorker: [ 2, 2 ] + #engineering (6) + AtmosphericTechnician: [ 2, 2 ] + StationEngineer: [ 4, 4 ] + TechnicalAssistant: [ 3, 3 ] #intern, not counted + #medical (6) + Chemist: [ 2, 2 ] + MedicalDoctor: [ 3, 3 ] + MedicalIntern: [ 2, 2 ] #intern, not counted + Paramedic: [ 1, 1 ] + #science (4) + Scientist: [ 4, 4 ] + ResearchAssistant: [ 2, 2 ] #intern, not counted + #security (6) + Warden: [ 1, 1 ] + SecurityOfficer: [ 3, 3 ] + Detective: [ 1, 1 ] + SecurityCadet: [ 2, 2 ] #intern, not counted + Lawyer: [ 1, 1 ] + #supply (4) + SalvageSpecialist: [ 2, 2 ] + CargoTechnician: [ 2, 2 ] + #civilian (3+) + Passenger: [ -1, -1 ] #infinite, not counted + Clown: [ 1, 1 ] + Mime: [ 1, 1 ] + Musician: [ 1, 1 ] + #silicon (3) + StationAi: [ 1, 1 ] + Borg: [ 2, 2 ] diff --git a/Resources/Prototypes/Maps/relic.yml b/Resources/Prototypes/Maps/relic.yml index 1cfa5c66ec..74476455d1 100644 --- a/Resources/Prototypes/Maps/relic.yml +++ b/Resources/Prototypes/Maps/relic.yml @@ -2,14 +2,16 @@ id: Relic mapName: 'Relic' mapPath: /Maps/relic.yml - minPlayers: 10 - maxPlayers: 50 + maxRandomOffset: 0 + randomRotation: false + minPlayers: 15 + maxPlayers: 35 stations: Relic: stationProto: StandardNanotrasenStation components: - type: StationNameSetup - mapNameTemplate: '{0} Relic Station {1}' + mapNameTemplate: '{0} Relic Station SS13' nameGenerator: !type:NanotrasenNameGenerator prefixCreator: 'OG' @@ -19,23 +21,24 @@ shuttlePath: /Maps/Shuttles/arrivals_relic.yml - type: StationCargoShuttle path: /Maps/Shuttles/cargo_relic.yml + - type: GridSpawn + groups: + trade: !type:GridSpawnGroup + minCount: 0 + maxCount: 0 + paths: + - /Maps/Shuttles/trading_outpost.yml - type: StationJobs availableJobs: - #command (7) + #command (6) Captain: [ 1, 1 ] HeadOfPersonnel: [ 1, 1 ] HeadOfSecurity: [ 1, 1 ] ChiefMedicalOfficer: [ 1, 1 ] ChiefEngineer: [ 1, 1 ] ResearchDirector: [ 1, 1 ] - Quartermaster: [ 1, 1 ] - #service (6 - 7) - Bartender: [ 1, 1 ] - Botanist: [ 1, 2 ] - Chef: [ 1, 1 ] - Janitor: [ 1, 1 ] + #service (1) Chaplain: [ 1, 1 ] - Librarian: [ 1, 1 ] #engineering (4) AtmosphericTechnician: [ 2, 2 ] StationEngineer: [ 2, 2 ] @@ -45,8 +48,8 @@ MedicalDoctor: [ 2, 2 ] Paramedic: [ 1, 1 ] MedicalIntern: [ 2, 2 ] #intern, not counted - #science (1 - 3) - Scientist: [ 1, 3 ] + #science (1 - 2) + Scientist: [ 1, 2 ] ResearchAssistant: [ 2, 2 ] #intern, not counted #security (4 - 5) Warden: [ 1, 1 ] @@ -54,10 +57,8 @@ Detective: [ 1, 1 ] SecurityCadet: [ 2, 2 ] #intern, not counted Lawyer: [ 1, 1 ] - #supply (2) - CargoTechnician: [ 2, 2 ] + #supply (0) #civilian (1+) Passenger: [ -1, -1 ] #infinite, not counted - #silicon (3) + #silicon (1) StationAi: [ 1, 1 ] - Borg: [ 2, 2 ] diff --git a/Resources/Prototypes/Objectives/traitor.yml b/Resources/Prototypes/Objectives/traitor.yml index b4a1baa85f..5f3b22c30d 100644 --- a/Resources/Prototypes/Objectives/traitor.yml +++ b/Resources/Prototypes/Objectives/traitor.yml @@ -17,7 +17,7 @@ - type: Objective icon: sprite: Objects/Misc/folders.rsi - state: folder-white + state: folder-colormap - type: MultipleTraitorsRequirement - type: entity diff --git a/Resources/Prototypes/Parallaxes/relic.yml b/Resources/Prototypes/Parallaxes/relic.yml new file mode 100644 index 0000000000..ba72af7ace --- /dev/null +++ b/Resources/Prototypes/Parallaxes/relic.yml @@ -0,0 +1,9 @@ +- type: parallax + id: RelicStation + layers: + - texture: + !type:ImageParallaxTextureSource + path: "/Textures/Parallaxes/oldspace.png" + slowness: 0.0 + scrolling: "-0.25, 0" + scale: "1, 1" diff --git a/Resources/Prototypes/Reagents/biological.yml b/Resources/Prototypes/Reagents/biological.yml index d00c0cb276..4d00ad80b1 100644 --- a/Resources/Prototypes/Reagents/biological.yml +++ b/Resources/Prototypes/Reagents/biological.yml @@ -12,6 +12,7 @@ metamorphicFillBaseName: fill- metamorphicChangeColor: false recognizable: true + standsout: true physicalDesc: reagent-physical-desc-ferrous metabolisms: Drink: @@ -64,6 +65,7 @@ flavor: slimy color: "#2cf274" recognizable: true + standsout: true physicalDesc: reagent-physical-desc-viscous viscosity: 0.25 tileReactions: diff --git a/Resources/Prototypes/Reagents/chemicals.yml b/Resources/Prototypes/Reagents/chemicals.yml index 45c55ce4dd..11945d1dc9 100644 --- a/Resources/Prototypes/Reagents/chemicals.yml +++ b/Resources/Prototypes/Reagents/chemicals.yml @@ -51,6 +51,21 @@ physicalDesc: reagent-physical-desc-powdery color: white +- type: reagent + id: Lye + name: reagent-name-lye + desc: reagent-desc-lye + flavor: alkaline + physicalDesc: reagent-physical-desc-alkaline + color: "#e5420b" + metabolisms: + Poison: + effects: + - !type:HealthChange + damage: + types: + Caustic: 1 + - type: reagent id: SodiumCarbonate name: reagent-name-sodium-carbonate diff --git a/Resources/Prototypes/Reagents/medicine.yml b/Resources/Prototypes/Reagents/medicine.yml index 6ac69c84eb..f0a11706b0 100644 --- a/Resources/Prototypes/Reagents/medicine.yml +++ b/Resources/Prototypes/Reagents/medicine.yml @@ -12,9 +12,9 @@ - !type:GenericStatusEffect key: Stutter component: ScrambledAccent - - !type:Drunk - slurSpeech: false - boozePower: 20 + - !type:ModifyStatusEffect + effectProto: StatusEffectSlurred + time: 20.0 - type: reagent id: Dylovene @@ -104,8 +104,8 @@ metabolisms: Medicine: effects: - - !type:GenericStatusEffect - key: Drunk + - !type:ModifyStatusEffect + effectProto: StatusEffectDrunk time: 6.0 type: Remove - !type:HealthChange @@ -1353,8 +1353,8 @@ key: Jitter time: 2.0 type: Remove - - !type:GenericStatusEffect - key: Drunk + - !type:ModifyStatusEffect + effectProto: StatusEffectDrunk time: 6.0 type: Remove - !type:PopupMessage # we dont have sanity/mood so this will have to do diff --git a/Resources/Prototypes/Recipes/Lathes/Packs/robotics.yml b/Resources/Prototypes/Recipes/Lathes/Packs/robotics.yml index f22cde9c52..2db59977be 100644 --- a/Resources/Prototypes/Recipes/Lathes/Packs/robotics.yml +++ b/Resources/Prototypes/Recipes/Lathes/Packs/robotics.yml @@ -14,6 +14,7 @@ - BorgModuleTool - BorgModuleCable - BorgModuleFireExtinguisher + - BorgModuleInflatable - type: latheRecipePack id: BorgLimbsStatic diff --git a/Resources/Prototypes/Recipes/Lathes/Packs/shared.yml b/Resources/Prototypes/Recipes/Lathes/Packs/shared.yml index 7a6dc32519..34a5fcbe6e 100644 --- a/Resources/Prototypes/Recipes/Lathes/Packs/shared.yml +++ b/Resources/Prototypes/Recipes/Lathes/Packs/shared.yml @@ -38,6 +38,12 @@ - CableMVStack - CableHVStack +- type: latheRecipePack + id: PaperworkStatic + recipes: + - BoxFolderClipboardEmpty + - BoxFolderPlasticClipboardEmpty + ## Dynamic # Things you'd expect sci salv and engi to make use of diff --git a/Resources/Prototypes/Recipes/Lathes/misc.yml b/Resources/Prototypes/Recipes/Lathes/misc.yml index 40d155b1fd..53b5f4a4e7 100644 --- a/Resources/Prototypes/Recipes/Lathes/misc.yml +++ b/Resources/Prototypes/Recipes/Lathes/misc.yml @@ -276,4 +276,19 @@ completetime: 1 materials: Steel: 30 - + +- type: latheRecipe + id: BoxFolderClipboardEmpty + result: BoxFolderClipboardEmpty + completetime: 2 + materials: + Wood: 100 + Steel: 25 + +- type: latheRecipe + id: BoxFolderPlasticClipboardEmpty + result: BoxFolderPlasticClipboardEmpty + completetime: 2 + materials: + Plastic: 100 + Steel: 25 diff --git a/Resources/Prototypes/Recipes/Lathes/robot_modules.yml b/Resources/Prototypes/Recipes/Lathes/robot_modules.yml index 9210529a1d..9465d7b87a 100644 --- a/Resources/Prototypes/Recipes/Lathes/robot_modules.yml +++ b/Resources/Prototypes/Recipes/Lathes/robot_modules.yml @@ -37,6 +37,11 @@ id: BorgModuleFireExtinguisher result: BorgModuleFireExtinguisher +- type: latheRecipe + parent: BaseBorgModuleRecipe + id: BorgModuleInflatable + result: BorgModuleInflatable + # Cargo Modules - type: latheRecipe diff --git a/Resources/Prototypes/Recipes/Reactions/chemicals.yml b/Resources/Prototypes/Recipes/Reactions/chemicals.yml index 959488376c..fef96df5cf 100644 --- a/Resources/Prototypes/Recipes/Reactions/chemicals.yml +++ b/Resources/Prototypes/Recipes/Reactions/chemicals.yml @@ -532,3 +532,13 @@ amount: 1 products: ArtifactGlue: 2 + +- type: reaction + id: Lye + reactants: + Water: + amount: 1 + Ash: + amount: 1 + products: + Lye: 2 diff --git a/Resources/Prototypes/Recipes/Reactions/fun.yml b/Resources/Prototypes/Recipes/Reactions/fun.yml index 87a9682102..35987b6be5 100644 --- a/Resources/Prototypes/Recipes/Reactions/fun.yml +++ b/Resources/Prototypes/Recipes/Reactions/fun.yml @@ -24,34 +24,6 @@ products: BuzzochloricBees: 3 -- type: reaction - id: CreateSoap - impact: Low - quantized: true - reactants: - Fat: - amount: 15 - Saline: - amount: 25 - effects: - - !type:CreateEntityReactionEffect - entity: Soap - -- type: reaction - id: CreateSoapHomemade - impact: Low - quantized: true - reactants: - Fat: - amount: 15 - TableSalt: - amount: 10 - Blood: - amount: 10 - effects: - - !type:CreateEntityReactionEffect - entity: SoapHomemade - - type: reaction id: Meatification impact: Low diff --git a/Resources/Prototypes/Recipes/Reactions/soap.yml b/Resources/Prototypes/Recipes/Reactions/soap.yml new file mode 100644 index 0000000000..d07c582f8b --- /dev/null +++ b/Resources/Prototypes/Recipes/Reactions/soap.yml @@ -0,0 +1,119 @@ +- type: reaction + id: CreateSoapRegular + impact: Low + quantized: true + minTemp: 383 # Water boiling point + 10 Kelvin. We are boiling it + reactants: + Oil: + amount: 10 + Lye: + amount: 15 + TableSalt: + amount: 5 + effects: + - !type:CreateEntityReactionEffect + entity: Soap + +- type: reaction + id: CreateSoapNT + impact: Low + quantized: true + minTemp: 373 # Water boiling point. We are boiling it too, but with higher priority! + reactants: + Oil: + amount: 15 + Lye: + amount: 20 + TableSalt: + amount: 5 + Plasma: + amount: 5 + effects: + - !type:CreateEntityReactionEffect + entity: SoapNT + +- type: reaction + id: CreateSoapDeluxe + impact: Low + quantized: true + minTemp: 373 + reactants: + Oil: + amount: 15 + Lye: + amount: 20 + TableSalt: + amount: 5 + JuiceBerry: + amount: 5 + effects: + - !type:CreateEntityReactionEffect + entity: SoapDeluxe + +- type: reaction + id: CreateSoapBlood + impact: Low + quantized: true + minTemp: 373 + reactants: + Fat: + amount: 10 + Lye: + amount: 20 + TableSalt: + amount: 5 + Blood: + amount: 10 + effects: + - !type:CreateEntityReactionEffect + entity: SoapHomemade + +- type: reaction + id: CreateSoapSyndie + impact: Medium + quantized: true + minTemp: 373 + reactants: + Oil: + amount: 15 + Lye: + amount: 20 + TableSalt: + amount: 5 + Stimulants: + amount: 5 + effects: + - !type:CreateEntityReactionEffect + entity: SoapSyndie + +- type: reaction + id: CreateSoapOmega + impact: Medium + quantized: true + minTemp: 373 + reactants: + Oil: + amount: 5 + Fat: + amount: 5 + Lye: + amount: 10 + TableSalt: + amount: 5 + Honk: + amount: 10 + SpaceLube: + amount: 5 + SpaceDrugs: + amount: 3 + THC: + amount: 2 + Bananadine: + amount: 2 + Omnizine: + amount: 2 + Amatoxin: + amount: 1 + effects: + - !type:CreateEntityReactionEffect + entity: SoapOmega diff --git a/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml b/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml index 12c13c1828..c30839a48c 100644 --- a/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml +++ b/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml @@ -40,7 +40,7 @@ equipment: id: QuartermasterPDA ears: ClothingHeadsetQM - belt: BoxFolderClipboard + belt: BoxFolderClipboardThreePapers pocket1: AppraisalTool storage: back: diff --git a/Resources/Prototypes/Roles/Jobs/CentComm/official.yml b/Resources/Prototypes/Roles/Jobs/CentComm/official.yml index fb4845f17b..49332f0bdb 100644 --- a/Resources/Prototypes/Roles/Jobs/CentComm/official.yml +++ b/Resources/Prototypes/Roles/Jobs/CentComm/official.yml @@ -28,7 +28,7 @@ id: CentcomPDA ears: ClothingHeadsetAltCentCom belt: WeaponPistolN1984 - pocket1: BoxFolderBlack + pocket1: BoxFolderCentComClipboardThreePapers pocket2: PenCentcom diff --git a/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml b/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml index df968a2318..874f826efd 100644 --- a/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml +++ b/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml @@ -66,7 +66,7 @@ id: HoPPDA gloves: ClothingHandsGlovesHop ears: ClothingHeadsetAltCommand - belt: BoxFolderClipboard + belt: BoxFolderClipboardThreePapers eyes: ClothingEyesHudCommand storage: back: diff --git a/Resources/Prototypes/Roles/Jobs/Fun/visitors_startinggear.yml b/Resources/Prototypes/Roles/Jobs/Fun/visitors_startinggear.yml index b7db27a972..8e129e01ed 100644 --- a/Resources/Prototypes/Roles/Jobs/Fun/visitors_startinggear.yml +++ b/Resources/Prototypes/Roles/Jobs/Fun/visitors_startinggear.yml @@ -738,7 +738,7 @@ - type: startingGear id: VisitorParamedic equipment: - jumpsuit: ClothingUniformJumpsuitParamedicNT + jumpsuit: ClothingUniformJumpsuitParamedic shoes: ClothingShoesSwat gloves: ClothingHandsGlovesLatex head: ClothingHeadHatParamedicsoft @@ -1239,7 +1239,7 @@ pocket1: BookSun pocket2: BookRandomStory inhand: - - BoxFolderClipboard + - BoxFolderClipboardThreePapers - type: startingGear id: VisitorMusicianFancyAltA @@ -1509,7 +1509,7 @@ back: ClothingBackpackSatchel ears: ClothingHeadsetService pocket1: MicrophoneInstrument - pocket2: BoxFolderClipboard + pocket2: BoxFolderClipboardThreePapers - type: startingGear id: VisitorReporterAlt @@ -1520,7 +1520,7 @@ back: ClothingBackpackSatchel ears: ClothingHeadsetService pocket1: MicrophoneInstrument - pocket2: BoxFolderClipboard + pocket2: BoxFolderClipboardThreePapers - type: startingGear id: VisitorServiceWorker diff --git a/Resources/Prototypes/Roles/MindRoles/mind_roles.yml b/Resources/Prototypes/Roles/MindRoles/mind_roles.yml index d387903ec4..d56e798fda 100644 --- a/Resources/Prototypes/Roles/MindRoles/mind_roles.yml +++ b/Resources/Prototypes/Roles/MindRoles/mind_roles.yml @@ -197,6 +197,14 @@ - type: MindRole antagPrototype: NukeopsCommander +- type: entity + parent: MindRoleNukeops + id: MindRoleLoneops + name: Loneops Operative Role + components: + - type: MindRole + roleType: SoloAntagonist + # Revolutionaries - type: entity parent: BaseMindRoleAntag diff --git a/Resources/Prototypes/SoundCollections/kitchenspike.yml b/Resources/Prototypes/SoundCollections/kitchenspike.yml new file mode 100644 index 0000000000..e8d8dc79a6 --- /dev/null +++ b/Resources/Prototypes/SoundCollections/kitchenspike.yml @@ -0,0 +1,9 @@ +- type: soundCollection + id: Spike + files: + - /Audio/Effects/Fluids/splat.ogg + +- type: soundCollection + id: SpikeButcher + files: + - /Audio/Weapons/bladeslice.ogg diff --git a/Resources/Prototypes/Stacks/floor_tile_stacks.yml b/Resources/Prototypes/Stacks/floor_tile_stacks.yml index dab0faded2..6e1ccd45bc 100644 --- a/Resources/Prototypes/Stacks/floor_tile_stacks.yml +++ b/Resources/Prototypes/Stacks/floor_tile_stacks.yml @@ -665,6 +665,12 @@ spawn: FloorTileItemXenoSteelCorner maxCount: 30 +- type: stack + id: FloorTileXenoborg + name: stack-xenoborg + spawn: FloorTileItemXenoborg + maxCount: 30 + - type: stack id: FloorTileDarkSquiggly name: stack-dark-squiggly diff --git a/Resources/Prototypes/Tiles/floors.yml b/Resources/Prototypes/Tiles/floors.yml index 6e3a588ab4..7c1f39aa54 100644 --- a/Resources/Prototypes/Tiles/floors.yml +++ b/Resources/Prototypes/Tiles/floors.yml @@ -2063,6 +2063,18 @@ itemDrop: FloorTileItemWoodLarge heatCapacity: 10000 +- type: tile + id: FloorXenoborg + name: tiles-xenoborg-floor + sprite: /Textures/Tiles/exoborg.png + baseTurf: Plating + isSubfloor: false + deconstructTools: [ Prying ] + footstepSounds: + collection: FootstepHull + itemDrop: FloorTileItemXenoborg + heatCapacity: 10000 + - type: tile id: FloorXeno name: tiles-xeno-floor diff --git a/Resources/Prototypes/Traits/disabilities.yml b/Resources/Prototypes/Traits/disabilities.yml index a5c1f54d6b..c5356149f2 100644 --- a/Resources/Prototypes/Traits/disabilities.yml +++ b/Resources/Prototypes/Traits/disabilities.yml @@ -83,3 +83,20 @@ category: Disabilities components: - type: PainNumbness + +- type: trait + id: Hemophilia + name: trait-hemophilia-name + description: trait-hemophilia-desc + category: Disabilities + components: + - type: Hemophilia + +- type: trait + id: ImpairedMobility + name: trait-impaired-mobility-name + description: trait-impaired-mobility-desc + traitGear: OffsetCane + category: Disabilities + components: + - type: ImpairedMobility diff --git a/Resources/Prototypes/borg_types.yml b/Resources/Prototypes/borg_types.yml index 1c49713e26..1d88af8455 100644 --- a/Resources/Prototypes/borg_types.yml +++ b/Resources/Prototypes/borg_types.yml @@ -14,6 +14,7 @@ defaultModules: - BorgModuleTool + - BorgModuleInflatable - BorgModuleArtifact - BorgModuleAnomaly radioChannels: diff --git a/Resources/Prototypes/chameleon.yml b/Resources/Prototypes/chameleon.yml index 6969380621..ed08c979b5 100644 --- a/Resources/Prototypes/chameleon.yml +++ b/Resources/Prototypes/chameleon.yml @@ -1,6 +1,6 @@ # for clothing that can be toggled, like magboots - type: entity - parent: VoiceLock + parent: SelectableLock abstract: true id: BaseChameleon components: diff --git a/Resources/Prototypes/game_presets.yml b/Resources/Prototypes/game_presets.yml index d301988912..2258248165 100644 --- a/Resources/Prototypes/game_presets.yml +++ b/Resources/Prototypes/game_presets.yml @@ -96,6 +96,23 @@ - SpaceTrafficControlFriendlyEventScheduler - BasicRoundstartVariation +- type: gamePreset + id: Dynamic + alias: + - dynamic + - multiantag + - director + name: dynamic-title + showInVote: false # admin-only for now until we fix some bugs + description: dynamic-description + rules: + - DynamicRule + - DummyNonAntag + - DynamicStationEventScheduler + - MeteorSwarmScheduler + - SpaceTrafficControlEventScheduler + - BasicRoundstartVariation + - type: gamePreset id: NOCP14Secret #Disabled alias: diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index 95b261466f..a9b927cdcf 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -801,6 +801,9 @@ - type: Tag id: Ingot +- type: Tag + id: Inflatable + - type: Tag id: InstantDoAfters diff --git a/Resources/Textures/Clothing/Head/Misc/performer-wig.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Misc/performer-wig.rsi/equipped-HELMET.png index 4d5e75107d..0f243264bd 100644 Binary files a/Resources/Textures/Clothing/Head/Misc/performer-wig.rsi/equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Misc/performer-wig.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/atmos_firesuit.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Suits/atmos_firesuit.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..c093278ad3 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/atmos_firesuit.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/atmos_firesuit.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/atmos_firesuit.rsi/meta.json index cdebd4fdca..c5378f202f 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/atmos_firesuit.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/atmos_firesuit.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation https://github.com/tgstation/tgstation/blob/master/icons/mob/clothing/suit.dmi. equipped-OUTERCLOTHING-dog modified from equipped-OUTERCLOTHING by @Aisfae(facebook).", + "copyright": "Taken from tgstation https://github.com/tgstation/tgstation/blob/master/icons/mob/clothing/suit.dmi. equipped-OUTERCLOTHING-dog modified from equipped-OUTERCLOTHING by @Aisfae(facebook). Vox Sprite taken from https://github.com/ParadiseSS13/Paradise/blob/980bbb489d27baa168d30d044d573d017845015b/icons/mob/clothing/species/vox/suit.dmi modified by @areyouconfused(github)", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "equipped-OUTERCLOTHING-dog", "directions": 4 diff --git a/Resources/Textures/Clothing/Shoes/Boots/performer.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Boots/performer.rsi/equipped-FEET.png index 81bf8df7ab..dcd087b4c7 100644 Binary files a/Resources/Textures/Clothing/Shoes/Boots/performer.rsi/equipped-FEET.png and b/Resources/Textures/Clothing/Shoes/Boots/performer.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/performer.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Boots/performer.rsi/icon.png index 7619c7fd2e..dddc656387 100644 Binary files a/Resources/Textures/Clothing/Shoes/Boots/performer.rsi/icon.png and b/Resources/Textures/Clothing/Shoes/Boots/performer.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index c450e31b38..0000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/icon.png deleted file mode 100644 index 6fe32e0e74..0000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/inhand-left.png deleted file mode 100644 index ae15d262d7..0000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/inhand-right.png deleted file mode 100644 index 60bea1b51a..0000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/meta.json deleted file mode 100644 index 8b0bae84ea..0000000000 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Made by Flareguy for Space Station 14, base sprite taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 3ef348699a..0000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi/icon.png deleted file mode 100644 index 6bffc57eaa..0000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi/inhand-left.png deleted file mode 100644 index ae15d262d7..0000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi/inhand-right.png deleted file mode 100644 index 60bea1b51a..0000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi/meta.json deleted file mode 100644 index 8b0bae84ea..0000000000 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Made by Flareguy for Space Station 14, base sprite taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Decals/stencil.rsi/meta.json b/Resources/Textures/Decals/stencil.rsi/meta.json new file mode 100644 index 0000000000..69cebf29d0 --- /dev/null +++ b/Resources/Textures/Decals/stencil.rsi/meta.json @@ -0,0 +1,149 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "made by Alkheemist (GitHub/Discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "stencil0" + }, + { + "name": "stencil1" + }, + { + "name": "stencil2" + }, + { + "name": "stencil3" + }, + { + "name": "stencil4" + }, + { + "name": "stencil5" + }, + { + "name": "stencil6" + }, + { + "name": "stencil7" + }, + { + "name": "stencil8" + }, + { + "name": "stencil9" + }, + { + "name": "stencilA" + }, + { + "name": "stencilB" + }, + { + "name": "stencilC" + }, + { + "name": "stencilD" + }, + { + "name": "stencilE" + }, + { + "name": "stencilF" + }, + { + "name": "stencilG" + }, + { + "name": "stencilH" + }, + { + "name": "stencilI" + }, + { + "name": "stencilJ" + }, + { + "name": "stencilK" + }, + { + "name": "stencilL" + }, + { + "name": "stencilM" + }, + { + "name": "stencilN" + }, + { + "name": "stencilO" + }, + { + "name": "stencilP" + }, + { + "name": "stencilQ" + }, + { + "name": "stencilR" + }, + { + "name": "stencilS" + }, + { + "name": "stencilT" + }, + { + "name": "stencilU" + }, + { + "name": "stencilV" + }, + { + "name": "stencilW" + }, + { + "name": "stencilX" + }, + { + "name": "stencilY" + }, + { + "name": "stencilZ" + }, + { + "name": "stencil_Ampersand" + }, + { + "name": "stencil_Asterix" + }, + { + "name": "stencil_Dash" + }, + { + "name": "stencil_Equals" + }, + { + "name": "stencil_Exclaim" + }, + { + "name": "stencil_Hash" + }, + { + "name": "stencil_Speso" + }, + { + "name": "stencil_Multiocular" + }, + { + "name": "stencil_Plus" + }, + { + "name": "stencil_Question" + } + ] +} diff --git a/Resources/Textures/Decals/stencil.rsi/stencil0.png b/Resources/Textures/Decals/stencil.rsi/stencil0.png new file mode 100644 index 0000000000..5c31392746 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencil0.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencil1.png b/Resources/Textures/Decals/stencil.rsi/stencil1.png new file mode 100644 index 0000000000..aaf94006b4 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencil1.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencil2.png b/Resources/Textures/Decals/stencil.rsi/stencil2.png new file mode 100644 index 0000000000..4c2b20879b Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencil2.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencil3.png b/Resources/Textures/Decals/stencil.rsi/stencil3.png new file mode 100644 index 0000000000..2e32055f76 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencil3.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencil4.png b/Resources/Textures/Decals/stencil.rsi/stencil4.png new file mode 100644 index 0000000000..041dbb45c2 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencil4.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencil5.png b/Resources/Textures/Decals/stencil.rsi/stencil5.png new file mode 100644 index 0000000000..0fac5c690b Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencil5.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencil6.png b/Resources/Textures/Decals/stencil.rsi/stencil6.png new file mode 100644 index 0000000000..46ceaf0d56 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencil6.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencil7.png b/Resources/Textures/Decals/stencil.rsi/stencil7.png new file mode 100644 index 0000000000..54826779ce Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencil7.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencil8.png b/Resources/Textures/Decals/stencil.rsi/stencil8.png new file mode 100644 index 0000000000..7c97b60c89 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencil8.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencil9.png b/Resources/Textures/Decals/stencil.rsi/stencil9.png new file mode 100644 index 0000000000..d0c4a680d2 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencil9.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilA.png b/Resources/Textures/Decals/stencil.rsi/stencilA.png new file mode 100644 index 0000000000..c3a9254826 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilA.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilB.png b/Resources/Textures/Decals/stencil.rsi/stencilB.png new file mode 100644 index 0000000000..fc62e40c95 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilB.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilC.png b/Resources/Textures/Decals/stencil.rsi/stencilC.png new file mode 100644 index 0000000000..e79cf206cc Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilC.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilD.png b/Resources/Textures/Decals/stencil.rsi/stencilD.png new file mode 100644 index 0000000000..649f4043a5 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilD.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilE.png b/Resources/Textures/Decals/stencil.rsi/stencilE.png new file mode 100644 index 0000000000..a387756bbc Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilE.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilF.png b/Resources/Textures/Decals/stencil.rsi/stencilF.png new file mode 100644 index 0000000000..e50436bd47 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilF.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilG.png b/Resources/Textures/Decals/stencil.rsi/stencilG.png new file mode 100644 index 0000000000..3e1fd2acab Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilG.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilH.png b/Resources/Textures/Decals/stencil.rsi/stencilH.png new file mode 100644 index 0000000000..26e8f89348 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilH.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilI.png b/Resources/Textures/Decals/stencil.rsi/stencilI.png new file mode 100644 index 0000000000..3c8bc08bc7 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilI.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilJ.png b/Resources/Textures/Decals/stencil.rsi/stencilJ.png new file mode 100644 index 0000000000..360ffb4fab Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilJ.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilK.png b/Resources/Textures/Decals/stencil.rsi/stencilK.png new file mode 100644 index 0000000000..7c5dcd10a3 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilK.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilL.png b/Resources/Textures/Decals/stencil.rsi/stencilL.png new file mode 100644 index 0000000000..cc578c18b5 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilL.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilM.png b/Resources/Textures/Decals/stencil.rsi/stencilM.png new file mode 100644 index 0000000000..f69505f58b Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilM.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilN.png b/Resources/Textures/Decals/stencil.rsi/stencilN.png new file mode 100644 index 0000000000..0052eeba7c Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilN.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilO.png b/Resources/Textures/Decals/stencil.rsi/stencilO.png new file mode 100644 index 0000000000..d8b11a7d9c Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilO.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilP.png b/Resources/Textures/Decals/stencil.rsi/stencilP.png new file mode 100644 index 0000000000..dd7ef90427 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilP.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilQ.png b/Resources/Textures/Decals/stencil.rsi/stencilQ.png new file mode 100644 index 0000000000..b4af848417 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilQ.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilR.png b/Resources/Textures/Decals/stencil.rsi/stencilR.png new file mode 100644 index 0000000000..bb4f0a2d04 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilR.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilS.png b/Resources/Textures/Decals/stencil.rsi/stencilS.png new file mode 100644 index 0000000000..4a1a69e1b0 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilS.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilT.png b/Resources/Textures/Decals/stencil.rsi/stencilT.png new file mode 100644 index 0000000000..f895a92edd Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilT.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilU.png b/Resources/Textures/Decals/stencil.rsi/stencilU.png new file mode 100644 index 0000000000..2e09e218b9 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilU.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilV.png b/Resources/Textures/Decals/stencil.rsi/stencilV.png new file mode 100644 index 0000000000..572e40bf95 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilV.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilW.png b/Resources/Textures/Decals/stencil.rsi/stencilW.png new file mode 100644 index 0000000000..29cb98300e Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilW.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilX.png b/Resources/Textures/Decals/stencil.rsi/stencilX.png new file mode 100644 index 0000000000..d76ab6de06 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilX.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilY.png b/Resources/Textures/Decals/stencil.rsi/stencilY.png new file mode 100644 index 0000000000..9f5f0ed52f Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilY.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilZ.png b/Resources/Textures/Decals/stencil.rsi/stencilZ.png new file mode 100644 index 0000000000..7c40d838a3 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilZ.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencil_Ampersand.png b/Resources/Textures/Decals/stencil.rsi/stencil_Ampersand.png new file mode 100644 index 0000000000..ac7583bf5f Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencil_Ampersand.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencil_Asterix.png b/Resources/Textures/Decals/stencil.rsi/stencil_Asterix.png new file mode 100644 index 0000000000..37ca93425f Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencil_Asterix.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencil_Dash.png b/Resources/Textures/Decals/stencil.rsi/stencil_Dash.png new file mode 100644 index 0000000000..c77f630a77 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencil_Dash.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencil_Equals.png b/Resources/Textures/Decals/stencil.rsi/stencil_Equals.png new file mode 100644 index 0000000000..caefdf0994 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencil_Equals.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencil_Exclaim.png b/Resources/Textures/Decals/stencil.rsi/stencil_Exclaim.png new file mode 100644 index 0000000000..9b7024bc53 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencil_Exclaim.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencil_Hash.png b/Resources/Textures/Decals/stencil.rsi/stencil_Hash.png new file mode 100644 index 0000000000..1e22e4b779 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencil_Hash.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencil_Multiocular.png b/Resources/Textures/Decals/stencil.rsi/stencil_Multiocular.png new file mode 100644 index 0000000000..284401a188 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencil_Multiocular.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencil_Plus.png b/Resources/Textures/Decals/stencil.rsi/stencil_Plus.png new file mode 100644 index 0000000000..e50358d284 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencil_Plus.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencil_Question.png b/Resources/Textures/Decals/stencil.rsi/stencil_Question.png new file mode 100644 index 0000000000..63fd0ad8f2 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencil_Question.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencil_Speso.png b/Resources/Textures/Decals/stencil.rsi/stencil_Speso.png new file mode 100644 index 0000000000..a6c97f7859 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencil_Speso.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/inflatable-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/inflatable-module.png new file mode 100644 index 0000000000..15e1c86629 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/inflatable-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/meta.json b/Resources/Textures/Interface/Actions/actions_borg.rsi/meta.json index ac631e0294..1766f0a7de 100644 --- a/Resources/Textures/Interface/Actions/actions_borg.rsi/meta.json +++ b/Resources/Textures/Interface/Actions/actions_borg.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from vgstation at commit https://github.com/vgstation-coders/vgstation13/commit/cdbcb1e858b11f083994a7a269ed67ef5b452ce9, Module actions by Scarky0. chem, adv-chem, and adv-mining by mubururu_, xenoborg actions by Samuka-C (github), advclown by ThatGuyUSA", + "copyright": "Taken from vgstation at commit https://github.com/vgstation-coders/vgstation13/commit/cdbcb1e858b11f083994a7a269ed67ef5b452ce9, inflatable module by FungiFellow (GitHub), Module actions by Scarky0. chem, adv-chem, and adv-mining by mubururu_, xenoborg actions by Samuka-C (github), advclown by ThatGuyUSA. c20r and esword by RedBookcase on Github.", "size": { "x": 32, "y": 32 @@ -28,6 +28,9 @@ { "name":"geiger-module" }, + { + "name":"inflatable-module" + }, { "name":"rcd-module" }, @@ -106,12 +109,18 @@ { "name":"syndicate-operative-module" }, + { + "name":"syndicate-desword-module" + }, { "name":"syndicate-esword-module" }, { "name":"syndicate-l6c-module" }, + { + "name":"syndicate-c20r-module" + }, { "name":"syndicate-martyr-module" }, diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-c20r-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-c20r-module.png new file mode 100644 index 0000000000..52c14b2651 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-c20r-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-desword-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-desword-module.png new file mode 100644 index 0000000000..201149cf18 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-desword-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-esword-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-esword-module.png index 201149cf18..944c4ee918 100644 Binary files a/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-esword-module.png and b/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-esword-module.png differ diff --git a/Resources/Textures/Interface/Misc/job_icons.rsi/Mime.png b/Resources/Textures/Interface/Misc/job_icons.rsi/Mime.png index 8f3cf00b81..d896b011f7 100644 Binary files a/Resources/Textures/Interface/Misc/job_icons.rsi/Mime.png and b/Resources/Textures/Interface/Misc/job_icons.rsi/Mime.png differ diff --git a/Resources/Textures/Interface/Misc/job_icons.rsi/Musician.png b/Resources/Textures/Interface/Misc/job_icons.rsi/Musician.png index 072348f050..402ea0ce52 100644 Binary files a/Resources/Textures/Interface/Misc/job_icons.rsi/Musician.png and b/Resources/Textures/Interface/Misc/job_icons.rsi/Musician.png differ diff --git a/Resources/Textures/Interface/Misc/job_icons.rsi/meta.json b/Resources/Textures/Interface/Misc/job_icons.rsi/meta.json index 2578a6c254..521ae60659 100644 --- a/Resources/Textures/Interface/Misc/job_icons.rsi/meta.json +++ b/Resources/Textures/Interface/Misc/job_icons.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/vgstation-coders/vgstation13/blob/e71d6c4fba5a51f99b81c295dcaec4fc2f58fb19/icons/mob/screen1.dmi | Brigmedic icon made by PuroSlavKing (Github) | Zombie icon made by RamZ | Zookeper by netwy (discort) | Rev and Head Rev icon taken from https://tgstation13.org/wiki/HUD and edited by coolmankid12345 (Discord) | Mindshield icon taken from https://github.com/tgstation/tgstation/blob/ce6beb8a4d61235d9a597a7126c407160ed674ea/icons/mob/huds/hud.dmi | Admin recolored from MedicalIntern by TsjipTsjip | StationAi resprite to 8x8 size by lunarcomets | Service Worker resprite by anno_midi (Discord) and spanky-spanky (Github) | service icons darkened by frobnic8 (Discord and Github) | paradoxClone taken from tg station at commit https://github.com/tgstation/tgstation/commit/d0db1ff267557017ae7bde68e6490e70cbb6e42f and modifed by slarticodefast (Github) | Boxer, Chaplain, Janitor, Lawyer, Librarian recoloured by K-Dynamic (github) | Cluwne icon by Professor Renderer (Discord) | QuarterMaster modified by K-Dynamic (github)", + "copyright": "Taken from https://github.com/vgstation-coders/vgstation13/blob/e71d6c4fba5a51f99b81c295dcaec4fc2f58fb19/icons/mob/screen1.dmi | Brigmedic icon made by PuroSlavKing (Github) | Zombie icon made by RamZ | Zookeper by netwy (discort) | Rev and Head Rev icon taken from https://tgstation13.org/wiki/HUD and edited by coolmankid12345 (Discord) | Mindshield icon taken from https://github.com/tgstation/tgstation/blob/ce6beb8a4d61235d9a597a7126c407160ed674ea/icons/mob/huds/hud.dmi | Admin recolored from MedicalIntern by TsjipTsjip | StationAi resprite to 8x8 size by lunarcomets | Service Worker resprite by anno_midi (Discord) and spanky-spanky (Github) | service icons darkened by frobnic8 (Discord and Github) | paradoxClone taken from tg station at commit https://github.com/tgstation/tgstation/commit/d0db1ff267557017ae7bde68e6490e70cbb6e42f and modifed by slarticodefast (Github) | Boxer, Chaplain, Janitor, Lawyer, Librarian recoloured by K-Dynamic (github) | Cluwne icon by Professor Renderer (Discord) | QuarterMaster modified by K-Dynamic (github) | Mime and Musician recolor by DinnerCalzone (github) at https://github.com/impstation/imp-station-14/commit/233161f02bab7f9f9c03f09f39638ea7c200ee24", "size": { "x": 8, "y": 8 diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/baby.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/baby.png new file mode 100644 index 0000000000..9829225fac Binary files /dev/null and b/Resources/Textures/Mobs/Customization/human_hair.rsi/baby.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/cube.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/cube.png new file mode 100644 index 0000000000..eabf49acad Binary files /dev/null and b/Resources/Textures/Mobs/Customization/human_hair.rsi/cube.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/meta.json b/Resources/Textures/Mobs/Customization/human_hair.rsi/meta.json index 454b6870eb..dcacd1d743 100644 --- a/Resources/Textures/Mobs/Customization/human_hair.rsi/meta.json +++ b/Resources/Textures/Mobs/Customization/human_hair.rsi/meta.json @@ -4,7 +4,7 @@ "x": 32, "y": 32 }, - "copyright": "Taken from https://github.com/tgstation/tgstation/blob/05ec94e46349c35e29ca91e5e97d0c88ae26ad44/icons/mob/species/human/human_face.dmi ,resprited by Alekshhh, a modified by potato1234x, uneven and tailed is drawn by Ubaser, doublebun_long by Emisse, longbundled and bob5 sprited by github:DreamlyJack(624946166152298517), pulato.png made by DreamlyJack, b.png and b_alt.png modified and sprited by KingFroozy (github), long_with_bangs shaped and longbow by Futuristic (and Pyvik) for SS14", + "copyright": "Taken from https://github.com/tgstation/tgstation/blob/05ec94e46349c35e29ca91e5e97d0c88ae26ad44/icons/mob/species/human/human_face.dmi ,resprited by Alekshhh, a modified by potato1234x, uneven and tailed is drawn by Ubaser, doublebun_long by Emisse, longbundled and bob5 sprited by github:DreamlyJack(624946166152298517), pulato.png made by DreamlyJack, b.png and b_alt.png modified and sprited by KingFroozy (github), long_with_bangs shaped and longbow by Futuristic (and Pyvik) for SS14, cube and baby by CoolioDudio", "license": "CC-BY-SA-3.0", "states": [ { @@ -35,6 +35,10 @@ "name": "b_alt", "directions": 4 }, + { + "name": "baby", + "directions": 4 + }, { "name": "baldfade", "directions": 4 @@ -243,6 +247,10 @@ "name": "crewcut2", "directions": 4 }, + { + "name": "cube", + "directions": 4 + }, { "name": "curls", "directions": 4 diff --git a/Resources/Textures/Mobs/Pets/Smile/smile_displacement.rsi/head.png b/Resources/Textures/Mobs/Pets/Smile/smile_displacement.rsi/head.png index a579919824..5cc098d50f 100644 Binary files a/Resources/Textures/Mobs/Pets/Smile/smile_displacement.rsi/head.png and b/Resources/Textures/Mobs/Pets/Smile/smile_displacement.rsi/head.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/engineer_derelict.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/engineer_derelict.png new file mode 100644 index 0000000000..7eb8b01ad0 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/engineer_derelict.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/engineer_derelict_crystal.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/engineer_derelict_crystal.png new file mode 100644 index 0000000000..38bae65c83 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/engineer_derelict_crystal.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/janitor_derelict.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/janitor_derelict.png new file mode 100644 index 0000000000..34ae031b79 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/janitor_derelict.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/janitor_moving_derelict.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/janitor_moving_derelict.png new file mode 100644 index 0000000000..ce6b1bc61e Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/janitor_moving_derelict.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/medical_derelict.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/medical_derelict.png new file mode 100644 index 0000000000..8fd1dba350 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/medical_derelict.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/medical_moving_derelict.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/medical_moving_derelict.png new file mode 100644 index 0000000000..4054df6184 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/medical_moving_derelict.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/meta.json b/Resources/Textures/Mobs/Silicon/chassis.rsi/meta.json index 4e56b98d3e..45aa679ee2 100644 --- a/Resources/Textures/Mobs/Silicon/chassis.rsi/meta.json +++ b/Resources/Textures/Mobs/Silicon/chassis.rsi/meta.json @@ -1,659 +1,791 @@ { - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/faf6db214927874c19b8fa8585d26b5d40de1acc, derelict sprites modified by GoldenCan(GitHub), xenoborg sprites, created and modified by Samuka-C (github).", - "states": [ - { - "name": "clown", - "directions": 4 + "version": 1, + "size": { + "x": 32, + "y": 32 }, - { - "name": "clown_e", - "directions": 4 - }, - { - "name": "clown_e_r", - "directions": 4 - }, - { - "name": "clown_l", - "directions": 4 - }, - { - "name": "derelict", - "directions": 4 - }, - { - "name": "derelict_e", - "directions": 4 - }, - { - "name": "derelict_e_r", - "directions": 4 - }, - { - "name": "derelict_icon", - "directions": 1 - }, - { - "name": "derelict_l", - "directions": 4 - }, - { - "name": "engineer", - "directions": 4 - }, - { - "name": "engineer_e", - "directions": 4 - }, - { - "name": "engineer_e_r", - "directions": 4 - }, - { - "name": "engineer_l", - "directions": 4 - }, - { - "name": "janitor", - "directions": 4 - }, - { - "name": "janitor_moving", - "directions": 4, - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "janitor_e", - "directions": 4 - }, - { - "name": "janitor_e_r", - "directions": 4 - }, - { - "name": "janitor_l", - "directions": 4 - }, - { - "name": "medical", - "directions": 4, - "delays": [ - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ] - ] - }, - { - "name": "medical_moving", - "directions": 4, - "delays": [ - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ] - ] - }, - { - "name": "medical_e", - "directions": 4 - }, - { - "name": "medical_e_r", - "directions": 4 - }, - { - "name": "medical_l", - "directions": 4 - }, - { - "name": "miner", - "directions": 4 - }, - { - "name": "miner_moving", - "directions": 4, - "delays": [ - [ - 0.1, - 0.1 - ], - [ - 0.1, - 0.1 - ], - [ - 0.1, - 0.1 - ], - [ - 0.1, - 0.1 - ] - ] - }, - { - "name": "miner_e", - "directions": 4 - }, - { - "name": "miner_e_r", - "directions": 4 - }, - { - "name": "miner_l", - "directions": 4 - }, - { - "name": "robot", - "directions": 4 - }, - { - "name": "robot_e", - "directions": 4 - }, - { - "name": "robot_e_r", - "directions": 4 - }, - { - "name": "robot_l", - "directions": 4 - }, - { - "name": "peace", - "directions": 4 - }, - { - "name": "peace_e", - "directions": 4 - }, - { - "name": "peace_e_r", - "directions": 4 - }, - { - "name": "peace_l", - "directions": 4 - }, - { - "name": "service", - "directions": 4 - }, - { - "name": "service_e", - "directions": 4 - }, - { - "name": "service_e_r", - "directions": 4 - }, - { - "name": "service_l", - "directions": 4 - }, - { - "name": "synd_sec", - "directions": 4 - }, - { - "name": "synd_sec_e", - "directions": 4 - }, - { - "name": "synd_sec_l", - "directions": 4 - }, - { - "name": "synd_medical", - "directions": 4 - }, - { - "name": "synd_medical_l", - "directions": 4, - "delays": [ - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ] - ] - }, - { - "name": "synd_medical_e", - "directions": 4, - "delays": [ - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ] - ] - }, - { - "name": "synd_engi", - "directions": 4 - }, - { - "name": "synd_engi_e", - "directions": 4 - }, - { - "name": "synd_engi_l", - "directions": 4 - }, - { - "name": "xenoborg_heavy", - "directions": 4 - }, - { - "name": "xenoborg_heavy_e", - "directions": 4 - }, - { - "name": "xenoborg_heavy_e_r", - "directions": 4, - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "xenoborg_heavy_l", - "directions": 4 - }, - { - "name": "xenoborg_scout", - "directions": 4 - }, - { - "name": "xenoborg_scout_l", - "directions": 4, - "delays": [ - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ] - ] - }, - { - "name": "xenoborg_scout_e", - "directions": 4, - "delays": [ - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ] - ] - }, - { - "name": "xenoborg_scout_e_r", - "directions": 4, - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "xenoborg_engi", - "directions": 4 - }, - { - "name": "xenoborg_engi_e", - "directions": 4 - }, - { - "name": "xenoborg_engi_e_r", - "directions": 4, - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "xenoborg_engi_l", - "directions": 4 - }, - { - "name": "xenoborg_stealth", - "directions": 4 - }, - { - "name": "xenoborg_stealth_e", - "directions": 4, - "delays": [ - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ] - ] - }, - { - "name": "xenoborg_stealth_e_r", - "directions": 4, - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "xenoborg_stealth_l", - "directions": 4, - "delays": [ - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ] - ] - } - ] + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/faf6db214927874c19b8fa8585d26b5d40de1acc, derelict generic sprites modified by GoldenCan(GitHub), xenoborg sprites, created and modified by Samuka-C (github). Derelict Engineer, Janitor, Miner, Medical, and Assault Borg sprites by _miket on Discord.", + "states": [ + { + "name": "clown", + "directions": 4 + }, + { + "name": "clown_e", + "directions": 4 + }, + { + "name": "clown_e_r", + "directions": 4 + }, + { + "name": "clown_l", + "directions": 4 + }, + { + "name": "derelict", + "directions": 4 + }, + { + "name": "derelict_e", + "directions": 4 + }, + { + "name": "derelict_e_r", + "directions": 4 + }, + { + "name": "derelict_icon", + "directions": 1 + }, + { + "name": "derelict_l", + "directions": 4 + }, + { + "name": "engineer", + "directions": 4 + }, + { + "name": "engineer_e", + "directions": 4 + }, + { + "name": "engineer_e_r", + "directions": 4 + }, + { + "name": "engineer_l", + "directions": 4 + }, + { + "name": "engineer_derelict", + "directions": 4 + }, + { + "name": "engineer_derelict_crystal", + "directions": 4 + }, + { + "name": "janitor", + "directions": 4 + }, + { + "name": "janitor_moving", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "janitor_e", + "directions": 4 + }, + { + "name": "janitor_e_r", + "directions": 4 + }, + { + "name": "janitor_l", + "directions": 4 + }, + { + "name": "janitor_derelict", + "directions": 4 + }, + { + "name": "janitor_moving_derelict", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "medical", + "directions": 4, + "delays": [ + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ] + ] + }, + { + "name": "medical_moving", + "directions": 4, + "delays": [ + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ] + ] + }, + { + "name": "medical_e", + "directions": 4 + }, + { + "name": "medical_e_r", + "directions": 4 + }, + { + "name": "medical_l", + "directions": 4 + }, + { + "name": "medical_derelict", + "directions": 4, + "delays": [ + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ] + ] + }, + { + "name": "medical_moving_derelict", + "directions": 4, + "delays": [ + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ] + ] + }, + { + "name": "miner", + "directions": 4 + }, + { + "name": "miner_moving", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "miner_e", + "directions": 4 + }, + { + "name": "miner_e_r", + "directions": 4 + }, + { + "name": "miner_l", + "directions": 4 + }, + { + "name": "miner_derelict", + "directions": 4 + }, + { + "name": "miner_moving_derelict", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "robot", + "directions": 4 + }, + { + "name": "robot_e", + "directions": 4 + }, + { + "name": "robot_e_r", + "directions": 4 + }, + { + "name": "robot_l", + "directions": 4 + }, + { + "name": "peace", + "directions": 4 + }, + { + "name": "peace_e", + "directions": 4 + }, + { + "name": "peace_e_r", + "directions": 4 + }, + { + "name": "peace_l", + "directions": 4 + }, + { + "name": "service", + "directions": 4 + }, + { + "name": "service_e", + "directions": 4 + }, + { + "name": "service_e_r", + "directions": 4 + }, + { + "name": "service_l", + "directions": 4 + }, + { + "name": "synd_sec", + "directions": 4 + }, + { + "name": "synd_sec_e", + "directions": 4 + }, + { + "name": "synd_sec_l", + "directions": 4 + }, + { + "name": "synd_sec_derelict", + "directions": 4 + }, + { + "name": "synd_sec_derelict_e", + "directions": 4 + }, + { + "name": "synd_sec_derelict_l", + "directions": 4 + }, + { + "name": "synd_medical", + "directions": 4 + }, + { + "name": "synd_medical_l", + "directions": 4, + "delays": [ + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ] + ] + }, + { + "name": "synd_medical_e", + "directions": 4, + "delays": [ + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ] + ] + }, + { + "name": "synd_engi", + "directions": 4 + }, + { + "name": "synd_engi_e", + "directions": 4 + }, + { + "name": "synd_engi_l", + "directions": 4 + }, + { + "name": "xenoborg_heavy", + "directions": 4 + }, + { + "name": "xenoborg_heavy_e", + "directions": 4 + }, + { + "name": "xenoborg_heavy_e_r", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "xenoborg_heavy_l", + "directions": 4 + }, + { + "name": "xenoborg_scout", + "directions": 4 + }, + { + "name": "xenoborg_scout_l", + "directions": 4, + "delays": [ + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ] + ] + }, + { + "name": "xenoborg_scout_e", + "directions": 4, + "delays": [ + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ] + ] + }, + { + "name": "xenoborg_scout_e_r", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "xenoborg_engi", + "directions": 4 + }, + { + "name": "xenoborg_engi_e", + "directions": 4 + }, + { + "name": "xenoborg_engi_e_r", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "xenoborg_engi_l", + "directions": 4 + }, + { + "name": "xenoborg_stealth", + "directions": 4 + }, + { + "name": "xenoborg_stealth_e", + "directions": 4, + "delays": [ + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ] + ] + }, + { + "name": "xenoborg_stealth_e_r", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "xenoborg_stealth_l", + "directions": 4, + "delays": [ + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ] + ] + } + ] } diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/miner_derelict.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/miner_derelict.png new file mode 100644 index 0000000000..d9d812c761 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/miner_derelict.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/miner_moving_derelict.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/miner_moving_derelict.png new file mode 100644 index 0000000000..05cd74494b Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/miner_moving_derelict.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/synd_sec_derelict.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/synd_sec_derelict.png new file mode 100644 index 0000000000..9b42b90f6e Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/synd_sec_derelict.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/synd_sec_derelict_e.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/synd_sec_derelict_e.png new file mode 100644 index 0000000000..a846febc06 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/synd_sec_derelict_e.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/synd_sec_derelict_l.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/synd_sec_derelict_l.png new file mode 100644 index 0000000000..b479c411a7 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/synd_sec_derelict_l.png differ diff --git a/Resources/Textures/Objects/Fun/Foam/foam_crossbow.rsi/meta.json b/Resources/Textures/Objects/Fun/Foam/foam_crossbow.rsi/meta.json index b245d7e77d..79a6ec3509 100644 --- a/Resources/Textures/Objects/Fun/Foam/foam_crossbow.rsi/meta.json +++ b/Resources/Textures/Objects/Fun/Foam/foam_crossbow.rsi/meta.json @@ -10,9 +10,6 @@ { "name": "icon" }, - { - "name": "foamdart" - }, { "name": "foambox" }, diff --git a/Resources/Textures/Objects/Fun/Foam/foam_crossbow.rsi/foamdart.png b/Resources/Textures/Objects/Fun/Foam/foam_dart.rsi/foamdart.png similarity index 100% rename from Resources/Textures/Objects/Fun/Foam/foam_crossbow.rsi/foamdart.png rename to Resources/Textures/Objects/Fun/Foam/foam_dart.rsi/foamdart.png diff --git a/Resources/Textures/Objects/Fun/Foam/foam_dart.rsi/meta.json b/Resources/Textures/Objects/Fun/Foam/foam_dart.rsi/meta.json new file mode 100644 index 0000000000..a7e64d408b --- /dev/null +++ b/Resources/Textures/Objects/Fun/Foam/foam_dart.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "foamdart" + } + ] +} diff --git a/Resources/Textures/Objects/Misc/id_cards.rsi/idmime.png b/Resources/Textures/Objects/Misc/id_cards.rsi/idmime.png index b917612dae..fee6d2b010 100644 Binary files a/Resources/Textures/Objects/Misc/id_cards.rsi/idmime.png and b/Resources/Textures/Objects/Misc/id_cards.rsi/idmime.png differ diff --git a/Resources/Textures/Objects/Misc/id_cards.rsi/idmusician.png b/Resources/Textures/Objects/Misc/id_cards.rsi/idmusician.png index b51dfaaab8..9a82d447da 100644 Binary files a/Resources/Textures/Objects/Misc/id_cards.rsi/idmusician.png and b/Resources/Textures/Objects/Misc/id_cards.rsi/idmusician.png differ diff --git a/Resources/Textures/Objects/Misc/id_cards.rsi/meta.json b/Resources/Textures/Objects/Misc/id_cards.rsi/meta.json index 2c402c0282..e33cd304e1 100644 --- a/Resources/Textures/Objects/Misc/id_cards.rsi/meta.json +++ b/Resources/Textures/Objects/Misc/id_cards.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/d917f4c2a088419d5c3aec7656b7ff8cebd1822e idcluwne made by brainfood1183 (github) for ss14, idbrigmedic made by PuroSlavKing (Github), pirate made by brainfood1183 (github), idadmin made by Arimah (github), idvisitor by IProduceWidgets (Github), idintern-service by spanky-spanky (Github) | service icons darkened by frobnic8 (Discord and Github), wizard and idwizard by ScarKy0 | idboxer and idlawyer recoloured by K-Dynamic (github) | idquartermaster modified by K-Dynamic (github)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/d917f4c2a088419d5c3aec7656b7ff8cebd1822e idcluwne made by brainfood1183 (github) for ss14, idbrigmedic made by PuroSlavKing (Github), pirate made by brainfood1183 (github), idadmin made by Arimah (github), idvisitor by IProduceWidgets (Github), idintern-service by spanky-spanky (Github) | service icons darkened by frobnic8 (Discord and Github), wizard and idwizard by ScarKy0 | idboxer and idlawyer recoloured by K-Dynamic (github) | idquartermaster modified by K-Dynamic (github) | idmime and idmusician recolor by DinnerCalzone (github) at https://github.com/impstation/imp-station-14/commit/233161f02bab7f9f9c03f09f39638ea7c200ee24", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/clipboard.png b/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/clipboard.png new file mode 100644 index 0000000000..6267c74c6b Binary files /dev/null and b/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/clipboard.png differ diff --git a/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/clipboard_over.png b/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/clipboard_over.png new file mode 100644 index 0000000000..f5baed50ef Binary files /dev/null and b/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/clipboard_over.png differ diff --git a/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/clipboard_paper.png b/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/clipboard_paper.png new file mode 100644 index 0000000000..d58b42b709 Binary files /dev/null and b/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/clipboard_paper.png differ diff --git a/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/clipboard_pen.png b/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/clipboard_pen.png new file mode 100644 index 0000000000..e7b506c75e Binary files /dev/null and b/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/clipboard_pen.png differ diff --git a/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/equipped-BELT.png b/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/equipped-BELT.png new file mode 100644 index 0000000000..8eb5e0edf4 Binary files /dev/null and b/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/inhand-left.png b/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/inhand-left.png new file mode 100644 index 0000000000..2507245107 Binary files /dev/null and b/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/inhand-right.png b/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/inhand-right.png new file mode 100644 index 0000000000..e9e0078037 Binary files /dev/null and b/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/meta.json b/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/meta.json new file mode 100644 index 0000000000..117961963d --- /dev/null +++ b/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/meta.json @@ -0,0 +1,35 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Clipboard sprites are by WJohn (Github) for tgstation, taken from https://github.com/tgstation/tgstation/commit/3cc10b1785bff95e861d722b5164189951761921. Inhand sprites by nmajask (Github) for SS14. Aforementioned sprites modified again by Hitlinemoss. clipboard_paper is a modified version of paper from bureaucracy.rsi.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "clipboard" + }, + { + "name": "clipboard_over" + }, + { + "name": "clipboard_paper" + }, + { + "name": "clipboard_pen" + }, + { + "name": "equipped-BELT", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Specific/Hydroponics/mimana.rsi/meta.json b/Resources/Textures/Objects/Specific/Hydroponics/mimana.rsi/meta.json index 9bc2def611..ed601a6e35 100644 --- a/Resources/Textures/Objects/Specific/Hydroponics/mimana.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Hydroponics/mimana.rsi/meta.json @@ -10,14 +10,6 @@ { "name": "dead" }, - { - "name": "equipped-HELMET", - "directions": 4 - }, - { - "name": "equipped-HELMET-hamster", - "directions": 4 - }, { "name": "harvest" }, @@ -33,6 +25,14 @@ { "name": "peel3" }, + { + "name": "peel-equipped-HELMET", + "directions": 4 + }, + { + "name": "peel-equipped-HELMET-hamster", + "directions": 4 + }, { "name": "peel-inhand-left", "directions": 4 diff --git a/Resources/Textures/Objects/Specific/Hydroponics/mimana.rsi/equipped-HELMET-hamster.png b/Resources/Textures/Objects/Specific/Hydroponics/mimana.rsi/peel-equipped-HELMET-hamster.png similarity index 100% rename from Resources/Textures/Objects/Specific/Hydroponics/mimana.rsi/equipped-HELMET-hamster.png rename to Resources/Textures/Objects/Specific/Hydroponics/mimana.rsi/peel-equipped-HELMET-hamster.png diff --git a/Resources/Textures/Objects/Specific/Hydroponics/mimana.rsi/equipped-HELMET.png b/Resources/Textures/Objects/Specific/Hydroponics/mimana.rsi/peel-equipped-HELMET.png similarity index 100% rename from Resources/Textures/Objects/Specific/Hydroponics/mimana.rsi/equipped-HELMET.png rename to Resources/Textures/Objects/Specific/Hydroponics/mimana.rsi/peel-equipped-HELMET.png diff --git a/Resources/Textures/Objects/Specific/Medical/medical.rsi/meta.json b/Resources/Textures/Objects/Specific/Medical/medical.rsi/meta.json index 5c32c08d7d..6fb3857023 100644 --- a/Resources/Textures/Objects/Specific/Medical/medical.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Medical/medical.rsi/meta.json @@ -1,9 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/commit/740ff31a81313086cf16761f3677cf1e2ab46c93 and Taken from tgstation at https://github.com/tgstation/tgstation/blob/623290915c2292b56da11048deb62d758e1e3fb4/icons/obj/bloodpack.dmi, Blood pack redone by Ubaser", - "copyright": "Taken from https://github.com/tgstation/tgstation/blob/a3568da5634e756d0849480104afda402c6f1c3c/icons/obj/medical/stack_medical.dmi", - "copyright": "Tourniquet Sprite by PoorMansDreams, in-hand sprites of tourniquet, gauze, and bloodpack made by SeamLesss (github)", + "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/commit/740ff31a81313086cf16761f3677cf1e2ab46c93 and Taken from tgstation at https://github.com/tgstation/tgstation/blob/623290915c2292b56da11048deb62d758e1e3fb4/icons/obj/bloodpack.dmi, Blood pack redone by Ubaser. Taken from https://github.com/tgstation/tgstation/blob/a3568da5634e756d0849480104afda402c6f1c3c/icons/obj/medical/stack_medical.dmi. Tourniquet Sprite by PoorMansDreams, in-hand sprites of tourniquet, gauze, and bloodpack made by SeamLesss (github).", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-inflatable.png b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-inflatable.png new file mode 100644 index 0000000000..8a6a2fa6ec Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-inflatable.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/meta.json b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/meta.json index ae64caaa15..9229815601 100644 --- a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC0-1.0", - "copyright": "Created by EmoGarbage404 (github) for Space Station 14. icon-construction.png created by deltanedas (github). syndicateborgbomb.png created by Mangohydra (github). layered inhands by mubururu_ (github), icon-chem.png & icon-mining-adv.png created by mubururu_ (github), Xenoborg modules sprites by Samuka-C (github)", + "copyright": "Created by EmoGarbage404 (github) for Space Station 14. icon-construction.png created by deltanedas (github). syndicateborgbomb.png created by Mangohydra (github). icon-chem.png & icon-mining-adv.png created by mubururu_ (github) icon-inflatable.png made by FungiFellow (GitHub), Xenoborg modules sprites by Samuka-C (github)", "size": { "x": 32, "y": 32 @@ -28,6 +28,9 @@ { "name": "icon-cables" }, + { + "name": "icon-inflatable" + }, { "name": "icon-chemist" }, @@ -226,4 +229,5 @@ "directions": 4 } ] + } diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/meta.json b/Resources/Textures/Objects/Tiles/tile.rsi/meta.json index 749093b344..2b01db5ab5 100644 --- a/Resources/Textures/Objects/Tiles/tile.rsi/meta.json +++ b/Resources/Textures/Objects/Tiles/tile.rsi/meta.json @@ -579,6 +579,9 @@ { "name": "xeno-techmaint" }, + { + "name": "xenoborg-floor" + }, { "name": "dark-squiggly" }, diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/xenoborg-floor.png b/Resources/Textures/Objects/Tiles/tile.rsi/xenoborg-floor.png new file mode 100644 index 0000000000..65ef33aab3 Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/xenoborg-floor.png differ diff --git a/Resources/Textures/Parallaxes/oldspace.png b/Resources/Textures/Parallaxes/oldspace.png new file mode 100644 index 0000000000..7960ffaf44 Binary files /dev/null and b/Resources/Textures/Parallaxes/oldspace.png differ diff --git a/Resources/Textures/Parallaxes/oldspace.png.yml b/Resources/Textures/Parallaxes/oldspace.png.yml new file mode 100644 index 0000000000..a2cfb0a1fe --- /dev/null +++ b/Resources/Textures/Parallaxes/oldspace.png.yml @@ -0,0 +1 @@ +preload: false diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/assembly.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/assembly.png new file mode 100644 index 0000000000..9629d9f2a9 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/assembly.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/bolted_unlit.png new file mode 100644 index 0000000000..844bd201f1 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/bolted_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/closed.png new file mode 100644 index 0000000000..06c3cf5c6c Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/closed_unlit.png new file mode 100644 index 0000000000..7c80bc210c Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/closing.png new file mode 100644 index 0000000000..8c45050ba3 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/closing_unlit.png new file mode 100644 index 0000000000..51ae8ad362 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/closing_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/deny_unlit.png new file mode 100644 index 0000000000..dfe4d406ed Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/deny_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/emergency_unlit.png new file mode 100644 index 0000000000..31f7a5f9f0 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/emergency_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/meta.json new file mode 100644 index 0000000000..5e40ab7363 --- /dev/null +++ b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/meta.json @@ -0,0 +1,146 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from CEV-Eris at commit https://github.com/discordia-space/CEV-Eris/commit/14517938186858388656a6aee14bf47af9e9649f - then modified by Samuka-C (github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "assembly" + }, + { + "name": "bolted_unlit" + }, + { + "name": "closed" + }, + { + "name": "closed_unlit" + }, + { + "name": "closing", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "closing_unlit", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "deny_unlit", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "open" + }, + { + "name": "opening", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "opening_unlit", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "panel_closing", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "panel_open" + }, + { + "name": "panel_opening", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "welded" + }, + { + "name": "emergency_unlit", + "delays": [ + [ + 0.4, + 0.4 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/open.png new file mode 100644 index 0000000000..a47d6aa446 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/opening.png new file mode 100644 index 0000000000..a1584d3a28 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/opening_unlit.png new file mode 100644 index 0000000000..51ae8ad362 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/opening_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/panel_closing.png new file mode 100644 index 0000000000..6afe206992 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/panel_closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/panel_open.png new file mode 100644 index 0000000000..d7d4122c08 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/panel_open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/panel_opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/panel_opening.png new file mode 100644 index 0000000000..e6c87d740e Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/panel_opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/welded.png new file mode 100644 index 0000000000..eed2758c79 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/assembly.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/assembly.png new file mode 100644 index 0000000000..fd765e671e Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/assembly.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/bolted_unlit.png new file mode 100644 index 0000000000..afcc4809e5 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/bolted_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/closed.png new file mode 100644 index 0000000000..38a47b34a1 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/closed_unlit.png new file mode 100644 index 0000000000..7df73f082c Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/closing.png new file mode 100644 index 0000000000..a41c0818b1 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/closing_unlit.png new file mode 100644 index 0000000000..f7700a0618 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/closing_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/deny_unlit.png new file mode 100644 index 0000000000..f43850467a Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/deny_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/emergency_unlit.png new file mode 100644 index 0000000000..655a67a95c Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/emergency_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/meta.json new file mode 100644 index 0000000000..cd619f7948 --- /dev/null +++ b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/meta.json @@ -0,0 +1,198 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by Samuka-C (github).", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "assembly" + }, + { + "name": "bolted_unlit" + }, + { + "name": "closed" + }, + { + "name": "closed_unlit" + }, + { + "name": "closing", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "closing_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "deny_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "open", + "delays": [ + [ + 1 + ] + ] + }, + { + "name": "opening", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "opening_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "panel_closing", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "panel_open", + "delays": [ + [ + 1 + ] + ] + }, + { + "name": "panel_opening", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_broken", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_damaged", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 1.7 + ] + ] + }, + { + "name": "sparks_open", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "welded" + }, + { + "name": "emergency_unlit", + "delays": [ + [ + 0.4, + 0.4 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/open.png new file mode 100644 index 0000000000..3f21f58c83 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/opening.png new file mode 100644 index 0000000000..07ae75706b Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/opening_unlit.png new file mode 100644 index 0000000000..1a3175e34d Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/opening_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/panel_closing.png new file mode 100644 index 0000000000..10a8b14073 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/panel_closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/panel_open.png new file mode 100644 index 0000000000..3b98c91e74 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/panel_open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/panel_opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/panel_opening.png new file mode 100644 index 0000000000..09382ff473 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/panel_opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/sparks.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/sparks.png new file mode 100644 index 0000000000..dd67e88a31 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/sparks.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/sparks_broken.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/sparks_broken.png new file mode 100644 index 0000000000..c41fa18ca1 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/sparks_broken.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/sparks_damaged.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/sparks_damaged.png new file mode 100644 index 0000000000..f16a028dee Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/sparks_damaged.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/sparks_open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/sparks_open.png new file mode 100644 index 0000000000..40d559f7a3 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/sparks_open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/welded.png new file mode 100644 index 0000000000..08a09d48e3 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Machines/computers.rsi/meta.json b/Resources/Textures/Structures/Machines/computers.rsi/meta.json index 65cba1211e..28b6b7fb79 100644 --- a/Resources/Textures/Structures/Machines/computers.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/computers.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/bd6873fd4dd6a61d7e46f1d75cd4d90f64c40894. comm_syndie made by Veritius, based on comm. generic_panel_open made by Errant, commit https://github.com/space-wizards/space-station-14/pull/32273, comms_wizard and wizard_key by ScarKy0, request- variants transfer made by EmoGarbage404 (github)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/bd6873fd4dd6a61d7e46f1d75cd4d90f64c40894. comm_syndie made by Veritius, based on comm. generic_panel_open made by Errant, commit https://github.com/space-wizards/space-station-14/pull/32273, comms_wizard and wizard_key by ScarKy0, request- variants transfer made by EmoGarbage404 (github), xenorobot by Samuka-C (github)", "size": { "x": 32, "y": 32 @@ -2027,6 +2027,10 @@ "name": "service_keys", "directions": 4 }, + { + "name": "xenorobot", + "directions": 4 + }, { "name": "wizard_key", "directions": 4 diff --git a/Resources/Textures/Structures/Machines/computers.rsi/xenorobot.png b/Resources/Textures/Structures/Machines/computers.rsi/xenorobot.png new file mode 100644 index 0000000000..15004ef024 Binary files /dev/null and b/Resources/Textures/Structures/Machines/computers.rsi/xenorobot.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/cage.rsi/base.png b/Resources/Textures/Structures/Storage/Crates/cage.rsi/base.png index 0abb868d11..70e12e5d30 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/cage.rsi/base.png and b/Resources/Textures/Structures/Storage/Crates/cage.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/cage.rsi/closed.png b/Resources/Textures/Structures/Storage/Crates/cage.rsi/closed.png index c2fd667d3e..bb0552b440 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/cage.rsi/closed.png and b/Resources/Textures/Structures/Storage/Crates/cage.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Walls/xenoborg.rsi/full.png b/Resources/Textures/Structures/Walls/xenoborg.rsi/full.png new file mode 100644 index 0000000000..d85d8587c3 Binary files /dev/null and b/Resources/Textures/Structures/Walls/xenoborg.rsi/full.png differ diff --git a/Resources/Textures/Structures/Walls/xenoborg.rsi/meta.json b/Resources/Textures/Structures/Walls/xenoborg.rsi/meta.json new file mode 100644 index 0000000000..fdebe0d8d6 --- /dev/null +++ b/Resources/Textures/Structures/Walls/xenoborg.rsi/meta.json @@ -0,0 +1,46 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by Samuka-C (github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "full" + }, + { + "name": "xenoborg0", + "directions": 4 + }, + { + "name": "xenoborg1", + "directions": 4 + }, + { + "name": "xenoborg2", + "directions": 4 + }, + { + "name": "xenoborg3", + "directions": 4 + }, + { + "name": "xenoborg4", + "directions": 4 + }, + { + "name": "xenoborg5", + "directions": 4 + }, + { + "name": "xenoborg6", + "directions": 4 + }, + { + "name": "xenoborg7", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg0.png b/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg0.png new file mode 100644 index 0000000000..fd6951dda9 Binary files /dev/null and b/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg0.png differ diff --git a/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg1.png b/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg1.png new file mode 100644 index 0000000000..d5ecd6b84e Binary files /dev/null and b/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg1.png differ diff --git a/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg2.png b/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg2.png new file mode 100644 index 0000000000..fd6951dda9 Binary files /dev/null and b/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg2.png differ diff --git a/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg3.png b/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg3.png new file mode 100644 index 0000000000..d5ecd6b84e Binary files /dev/null and b/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg3.png differ diff --git a/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg4.png b/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg4.png new file mode 100644 index 0000000000..f4913af758 Binary files /dev/null and b/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg4.png differ diff --git a/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg5.png b/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg5.png new file mode 100644 index 0000000000..4e1df9aa57 Binary files /dev/null and b/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg5.png differ diff --git a/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg6.png b/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg6.png new file mode 100644 index 0000000000..f4913af758 Binary files /dev/null and b/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg6.png differ diff --git a/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg7.png b/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg7.png new file mode 100644 index 0000000000..231c5fda37 Binary files /dev/null and b/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg7.png differ diff --git a/Resources/Textures/Structures/Walls/xenoborg_diagonal.rsi/meta.json b/Resources/Textures/Structures/Walls/xenoborg_diagonal.rsi/meta.json new file mode 100644 index 0000000000..f680988301 --- /dev/null +++ b/Resources/Textures/Structures/Walls/xenoborg_diagonal.rsi/meta.json @@ -0,0 +1,19 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by Samuka-C (github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "state0", + "directions": 4 + }, + { + "name": "state1", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Structures/Walls/xenoborg_diagonal.rsi/state0.png b/Resources/Textures/Structures/Walls/xenoborg_diagonal.rsi/state0.png new file mode 100644 index 0000000000..b83968aa6b Binary files /dev/null and b/Resources/Textures/Structures/Walls/xenoborg_diagonal.rsi/state0.png differ diff --git a/Resources/Textures/Structures/Walls/xenoborg_diagonal.rsi/state1.png b/Resources/Textures/Structures/Walls/xenoborg_diagonal.rsi/state1.png new file mode 100644 index 0000000000..60832b5cd0 Binary files /dev/null and b/Resources/Textures/Structures/Walls/xenoborg_diagonal.rsi/state1.png differ diff --git a/Resources/Textures/Structures/Windows/xenoborg.rsi/full.png b/Resources/Textures/Structures/Windows/xenoborg.rsi/full.png new file mode 100644 index 0000000000..d643cbe5a2 Binary files /dev/null and b/Resources/Textures/Structures/Windows/xenoborg.rsi/full.png differ diff --git a/Resources/Textures/Structures/Windows/xenoborg.rsi/meta.json b/Resources/Textures/Structures/Windows/xenoborg.rsi/meta.json new file mode 100644 index 0000000000..80f4c3f703 --- /dev/null +++ b/Resources/Textures/Structures/Windows/xenoborg.rsi/meta.json @@ -0,0 +1,46 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by Samuka-C (github).", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "full" + }, + { + "name": "xenoborg0", + "directions": 4 + }, + { + "name": "xenoborg1", + "directions": 4 + }, + { + "name": "xenoborg2", + "directions": 4 + }, + { + "name": "xenoborg3", + "directions": 4 + }, + { + "name": "xenoborg4", + "directions": 4 + }, + { + "name": "xenoborg5", + "directions": 4 + }, + { + "name": "xenoborg6", + "directions": 4 + }, + { + "name": "xenoborg7", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg0.png b/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg0.png new file mode 100644 index 0000000000..7d733f13a4 Binary files /dev/null and b/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg0.png differ diff --git a/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg1.png b/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg1.png new file mode 100644 index 0000000000..2bab1d9405 Binary files /dev/null and b/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg1.png differ diff --git a/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg2.png b/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg2.png new file mode 100644 index 0000000000..7d733f13a4 Binary files /dev/null and b/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg2.png differ diff --git a/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg3.png b/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg3.png new file mode 100644 index 0000000000..2bab1d9405 Binary files /dev/null and b/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg3.png differ diff --git a/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg4.png b/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg4.png new file mode 100644 index 0000000000..96aa56b31b Binary files /dev/null and b/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg4.png differ diff --git a/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg5.png b/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg5.png new file mode 100644 index 0000000000..f0d2702c5a Binary files /dev/null and b/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg5.png differ diff --git a/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg6.png b/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg6.png new file mode 100644 index 0000000000..96aa56b31b Binary files /dev/null and b/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg6.png differ diff --git a/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg7.png b/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg7.png new file mode 100644 index 0000000000..b23b2ff64f Binary files /dev/null and b/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg7.png differ diff --git a/Resources/Textures/Tiles/attributions.yml b/Resources/Textures/Tiles/attributions.yml index 4999508701..e1318a223e 100644 --- a/Resources/Textures/Tiles/attributions.yml +++ b/Resources/Textures/Tiles/attributions.yml @@ -155,3 +155,8 @@ license: "CC0-1.0" copyright: "Created by SeaWyrm" source: "https://github.com/space-wizards/space-station-14/pull/38007" + +- files: ["exoborg.png"] + license: "CC0-1.0" + copyright: "Created by Samuka-C (github) for space-station-14." + source: "https://github.com/space-wizards/space-station-14/pull/37068" diff --git a/Resources/Textures/Tiles/exoborg.png b/Resources/Textures/Tiles/exoborg.png new file mode 100644 index 0000000000..6f086e185c Binary files /dev/null and b/Resources/Textures/Tiles/exoborg.png differ diff --git a/Resources/migration.yml b/Resources/migration.yml index ae7640e95a..723f828e02 100644 --- a/Resources/migration.yml +++ b/Resources/migration.yml @@ -1184,3 +1184,7 @@ ClothingNeckHeadphones: ClothingMultipleHeadphones # 2025-08-01 FoodDonutJellySlugcat: FoodDonutJellyScurret + +# 2025-08-11 +ClothingUniformJumpsuitChiefEngineerNT: ClothingUniformJumpsuitChiefEngineer +ClothingUniformJumpsuitParamedicNT: ClothingUniformJumpsuitParamedic